diff --git a/airbyte-integrations/bases/base-normalization/.gitignore b/airbyte-integrations/bases/base-normalization/.gitignore index 87cf48895caf2c..fb2c9c2deb269f 100644 --- a/airbyte-integrations/bases/base-normalization/.gitignore +++ b/airbyte-integrations/bases/base-normalization/.gitignore @@ -1,4 +1,10 @@ build/ logs/ dbt-project-template/models/generated/ +dbt-project-template/test_output.log dbt_modules/ +secrets/ + +integration_tests/normalization_test_output/* +!integration_tests/normalization_test_output/*/*/models/generated +!integration_tests/normalization_test_output/*/*/final diff --git a/airbyte-integrations/bases/base-normalization/Dockerfile b/airbyte-integrations/bases/base-normalization/Dockerfile index 5f7b2330a4a8d6..0af257db8e6ed5 100644 --- a/airbyte-integrations/bases/base-normalization/Dockerfile +++ b/airbyte-integrations/bases/base-normalization/Dockerfile @@ -19,5 +19,5 @@ WORKDIR /airbyte ENTRYPOINT ["/airbyte/entrypoint.sh"] -LABEL io.airbyte.version=0.1.24 +LABEL io.airbyte.version=0.1.25 LABEL io.airbyte.name=airbyte/normalization diff --git a/airbyte-integrations/bases/base-normalization/README.md b/airbyte-integrations/bases/base-normalization/README.md new file mode 100644 index 00000000000000..03839e1abadd96 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/README.md @@ -0,0 +1,203 @@ +# Normalization + +Related documentation on normalization is available here: + +- [architecture / Basic Normalization](../../../docs/architecture/basic-normalization.md) +* [tutorials / Custom DBT normalization](../../../docs/tutorials/connecting-el-with-t-using-dbt.md) + +# Testing normalization + +Below are short descriptions of the kind of tests that may be affected by changes to the normalization code. + +## Unit Tests + +Unit tests are automatically included when building the normalization project. +But you could invoke them explicitly by running the following commands for example: + +with Gradle: + + ./gradlew :airbyte-integrations:bases:base-normalization:unitTest + +or directly with pytest: + + pytest airbyte-integrations/bases/base-normalization/unit_tests + +Unit tests are targeted at the main code generation functionality of normalization. +They should verify different logic rules on how to convert an input catalog.json (JSON Schema) file into +dbt files. + +#### test_transform_config.py: + +This class is testing the transform config functionality that converts a destination_config.json into the adequate profiles.yml file for dbt to use +see [related dbt docs on profiles.yml](https://docs.getdbt.com/reference/profiles.yml) for more context on what it actually is. + +#### test_stream_processor.py: + +These unit tests functions check how each stream is converted to dbt models files. +For example, one big focus area is around how table names are chosen. +(especially since some destination like postgres have a very low limit to identifiers length of 64 characters) +In case of nested objects/arrays in a stream, names can be dragged on to even longer names... + +So you can find rules of how to truncate and concatenate part of the table names together in here. +Depending on the catalog context and what identifiers have been already used in the past, some naming +may also be affected and requires to choose new identifications to avoid collisions. + +Additional helper functions dealing with cursor fields, primary keys and other code generation parts are also being tested here. + +#### test_destination_name_transformer.py: + +These Unit tests checks implementation of specific rules of SQL identifier naming conventions for each destination. +The specifications rules of each destinations are detailed in the corresponding docs, especially on the +allowed characters, if quotes are needed or not, and the length limitations: + +- [bigquery](../../../docs/integrations/destinations/bigquery.md) +- [postgres](../../../docs/integrations/destinations/postgres.md) +- [redshift](../../../docs/integrations/destinations/redshift.md) +- [snowflake](../../../docs/integrations/destinations/snowflake.md) + +Rules about truncations, for example for both of these strings which are too long for the postgres 64 limit: +- `Aaaa_Bbbb_Cccc_Dddd_Eeee_Ffff_Gggg_Hhhh_Iiii` +- `Aaaa_Bbbb_Cccc_Dddd_a_very_long_name_Ffff_Gggg_Hhhh_Iiii` + +Deciding on how to truncate (in the middle) are being verified in these tests. +In this instance, both strings ends up as: + +- `Aaaa_Bbbb_Cccc_Dddd___e_Ffff_Gggg_Hhhh_Iiii` + +The truncate operation gets rid of characters in the middle of the string to preserve the start +and end characters as it may contain more useful information in table naming. However the final +truncated name can still potentially cause collisions in table names... + +Note that dealing with such collisions is not part of `destination_name_transformer` but of the +`stream_processor` since one is focused on destination conventions and the other on putting together +identifier names from streams and catalogs. + +## Integration Tests + +With Gradle: + + ./gradlew :airbyte-integrations:bases:base-normalization:integrationTest + +or directly with pytest: + + pytest airbyte-integrations/bases/base-normalization/integration_tests + +or can also be invoked on github, thanks to the slash commands posted as comments: + + /test connector=bases/base-normalization + +### Integration Tests Definitions: + +Some test suites can be selected to be versioned control in Airbyte git repository (or not). +This is useful to see direct impacts of code changes on downstream files generated or compiled +by normalization and dbt (directly in PR too). (_Simply refer to your test suite name in the +`git_versioned_tests` variable in the `base-normalization/integration_tests/test_normalization.py` file_) + +We would typically choose small and meaningful test suites to include in git while others more complex tests +can be left out. They would still be run in a temporary directory and thrown away at the end of the tests. + +They are defined, each one of them, in a separate directory in the resource folder. +For example, below, we would have 2 different tests "suites" with this hierarchy: + + base-normalization/integration_tests/resources/ + ├── test_suite1/ + │ ├── data_input/ + │ │ ├── catalog.json + │ │ └── messages.txt + │ ├── dbt_data_tests/ + │ │ ├── file1.sql + │ │ └── file2.sql + │ ├── dbt_schema_tests/ + │ │ ├── file1.yml + │ │ └── file2.yml + │ └── README.md + └── test_suite2/ + ├── data_input/ + │ ├── catalog.json + │ └── messages.txt + ├── dbt_data_tests/ + ├── dbt_schema_tests/ + └── README.md + +#### README.md: + +Each test suite should have an optional `README.md` to include further details and descriptions of what the test is trying to verify and +how it is specifically built. + +### Integration Test Data Input: + +#### data_input/catalog.json: + +The catalog.json is the main input for normalization from which the dbt models files are being +generated from as it describes in JSON Schema format what the data structure is. + +#### data_input/messages.txt: + +The `messages.txt` are serialized Airbyte JSON records that should be sent to the destination as if they were +transmitted by a source. In this integration test, the files is read and "cat" through to the docker image of +each destination connectors to populate `_airbyte_raw_tables`. These tables are finally used as input +data for dbt to run from. + +### Integration Test Execution Flow: + +These integration tests are run against all destinations that dbt can be executed on. +So, for each target destination, the steps run by the tests are: + +1. Prepare the test execution workspace folder (copy skeleton from `dbt-project-template/`) +2. Generate a dbt `profiles.yml` file to connect to the target destination +3. Populate raw tables by running the target destination connectors, reading and uploading the + `messages.txt` file as data input. +4. Run Normalization step to generate dbt models files from `catalog.json` input file. +5. Execute dbt cli command: `dbt run` from the test workspace folder to compile generated models files + - from `models/generated/` folder + - into `../build/(compiled|run)/airbyte_utils/models/generated/` folder + - The final "run" SQL files are also copied (for archiving) to `final/` folder by the test script. +6. Deploy the `schema_tests` and `data_tests` files into the test workspace folder. +7. Execute dbt cli command: `dbt tests` from the test workspace folder to run verifications and checks with dbt. +8. Optional checks (nothing for the moment) + +### Integration Test Checks: + +#### dbt schema tests: + +dbt allows out of the box to configure some tests as properties for an existing model (or source, seed, or snapshot). +This can be done in yaml format as described in the following documentation pages: + +- [dbt schema-tests](https://docs.getdbt.com/docs/building-a-dbt-project/tests#schema-tests) +- [custom schema test](https://docs.getdbt.com/docs/guides/writing-custom-schema-tests) + +We are leveraging these capabilities in these integration tests to verify some relationships in our +generated tables on the destinations. + +#### dbt data tests: + +Additionally, dbt also supports "data tests" which are specified as SQL queries. +A data test is a select statement that returns 0 records when the test is successful. + +- [dbt data-tests](https://docs.getdbt.com/docs/building-a-dbt-project/tests#data-tests) + +#### Notes using dbt seeds: + +Because some functionalities are not stable enough on dbt side, it is difficult to properly use +`dbt seed` commands to populate a set of expected data tables at the moment. Hopefully, this can be +more easily be done in the future... + +Related issues to watch on dbt progress to improve this aspects: +- https://github.com/fishtown-analytics/dbt/issues/2959#issuecomment-747509782 +- https://medium.com/hashmapinc/unit-testing-on-dbt-models-using-a-static-test-dataset-in-snowflake-dfd35549b5e2 + +A nice improvement would be to add csv/json seed files as expected output data from tables. +The integration tests would verify that the content of such tables in the destination would match +these seed files or fail. + +## Standard Destination Tests + +Generally, to invoke standard destination tests, you run with gradle using: + + ./gradlew :airbyte-integrations:connectors:destination-:integrationTest + +For more details and options, you can also refer to the [testing connectors docs](../../../docs/contributing-to-airbyte/building-new-connector/testing-connectors.md). + +## Acceptance Tests + +Please refer to the [developing docs](../../../docs/contributing-to-airbyte/developing-locally.md) on how to run Acceptance Tests. diff --git a/airbyte-integrations/bases/base-normalization/build.gradle b/airbyte-integrations/bases/base-normalization/build.gradle index dd630584533056..b9945695c3dfe5 100644 --- a/airbyte-integrations/bases/base-normalization/build.gradle +++ b/airbyte-integrations/bases/base-normalization/build.gradle @@ -15,3 +15,15 @@ installReqs.dependsOn(":airbyte-integrations:bases:airbyte-protocol:installReqs" project.task('integrationTest') integrationTest.dependsOn(build) + +task("customIntegrationTestPython", type: PythonTask, dependsOn: installTestReqs){ + module = "pytest" + command = "-s integration_tests" + + dependsOn ':airbyte-integrations:connectors:destination-bigquery:airbyteDocker' + dependsOn ':airbyte-integrations:connectors:destination-postgres:airbyteDocker' + dependsOn ':airbyte-integrations:connectors:destination-redshift:airbyteDocker' + dependsOn ':airbyte-integrations:connectors:destination-snowflake:airbyteDocker' +} + +integrationTest.dependsOn("customIntegrationTestPython") diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql new file mode 100644 index 00000000000000..7821cd4ad7be97 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql @@ -0,0 +1,23 @@ + + + create or replace table `dataline-integration-testing`.test_normalization.`dedup_exchange_rate` + + + OPTIONS() + as ( + +-- Final base SQL model +select + id, + currency, + date, + HKD, + NZD, + USD, + _airbyte_emitted_at, + _airbyte_dedup_exchange_rate_hashid +from `dataline-integration-testing`.test_normalization.`dedup_exchange_rate_scd` +-- dedup_exchange_rate from `dataline-integration-testing`.test_normalization._airbyte_raw_dedup_exchange_rate +where _airbyte_active_row = True + ); + \ No newline at end of file diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql new file mode 100644 index 00000000000000..23b0a7f60b1585 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql @@ -0,0 +1,36 @@ + + + create or replace table `dataline-integration-testing`.test_normalization.`dedup_exchange_rate_scd` + + + OPTIONS() + as ( + +-- SQL model to build a Type 2 Slowly Changing Dimension (SCD) table for each record identified by their primary key +select + id, + currency, + date, + HKD, + NZD, + USD, + date as _airbyte_start_at, + lag(date) over ( + partition by id, currency, cast(NZD as + string +) + order by date desc, _airbyte_emitted_at desc + ) as _airbyte_end_at, + lag(date) over ( + partition by id, currency, cast(NZD as + string +) + order by date desc, _airbyte_emitted_at desc + ) is null as _airbyte_active_row, + _airbyte_emitted_at, + _airbyte_dedup_exchange_rate_hashid +from `dataline-integration-testing`._airbyte_test_normalization.`dedup_exchange_rate_ab4` +-- dedup_exchange_rate from `dataline-integration-testing`.test_normalization._airbyte_raw_dedup_exchange_rate +where _airbyte_row_num = 1 + ); + \ No newline at end of file diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql new file mode 100644 index 00000000000000..f36f3ff9be029d --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql @@ -0,0 +1,22 @@ + + + create or replace table `dataline-integration-testing`.test_normalization.`exchange_rate` + + + OPTIONS() + as ( + +-- Final base SQL model +select + id, + currency, + date, + HKD, + NZD, + USD, + _airbyte_emitted_at, + _airbyte_exchange_rate_hashid +from `dataline-integration-testing`._airbyte_test_normalization.`exchange_rate_ab3` +-- exchange_rate from `dataline-integration-testing`.test_normalization._airbyte_raw_exchange_rate + ); + \ No newline at end of file diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab1.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab1.sql new file mode 100644 index 00000000000000..039e01aa01abed --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab1.sql @@ -0,0 +1,17 @@ + + + create or replace view `dataline-integration-testing`._airbyte_test_normalization.`dedup_exchange_rate_ab1` + OPTIONS() + as +-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema +select + json_extract_scalar(_airbyte_data, "$.id") as id, + json_extract_scalar(_airbyte_data, "$.currency") as currency, + json_extract_scalar(_airbyte_data, "$.date") as date, + json_extract_scalar(_airbyte_data, "$.HKD") as HKD, + json_extract_scalar(_airbyte_data, "$.NZD") as NZD, + json_extract_scalar(_airbyte_data, "$.USD") as USD, + _airbyte_emitted_at +from `dataline-integration-testing`.test_normalization._airbyte_raw_dedup_exchange_rate +-- dedup_exchange_rate; + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab2.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab2.sql new file mode 100644 index 00000000000000..68aeec56583584 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab2.sql @@ -0,0 +1,29 @@ + + + create or replace view `dataline-integration-testing`._airbyte_test_normalization.`dedup_exchange_rate_ab2` + OPTIONS() + as +-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type +select + cast(id as + int64 +) as id, + cast(currency as + string +) as currency, + cast(date as + string +) as date, + cast(HKD as + float64 +) as HKD, + cast(NZD as + float64 +) as NZD, + cast(USD as + float64 +) as USD, + _airbyte_emitted_at +from `dataline-integration-testing`._airbyte_test_normalization.`dedup_exchange_rate_ab1` +-- dedup_exchange_rate; + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab3.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab3.sql new file mode 100644 index 00000000000000..415c93d0ad9eb8 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab3.sql @@ -0,0 +1,26 @@ + + + create or replace view `dataline-integration-testing`._airbyte_test_normalization.`dedup_exchange_rate_ab3` + OPTIONS() + as +-- SQL model to build a hash column based on the values of this record +select + *, + to_hex(md5(cast(concat(coalesce(cast(id as + string +), ''), '-', coalesce(cast(currency as + string +), ''), '-', coalesce(cast(date as + string +), ''), '-', coalesce(cast(HKD as + string +), ''), '-', coalesce(cast(NZD as + string +), ''), '-', coalesce(cast(USD as + string +), '')) as + string +))) as _airbyte_dedup_exchange_rate_hashid +from `dataline-integration-testing`._airbyte_test_normalization.`dedup_exchange_rate_ab2` +-- dedup_exchange_rate; + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab4.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab4.sql new file mode 100644 index 00000000000000..5f1888a5871abe --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab4.sql @@ -0,0 +1,15 @@ + + + create or replace view `dataline-integration-testing`._airbyte_test_normalization.`dedup_exchange_rate_ab4` + OPTIONS() + as +-- SQL model to prepare for deduplicating records based on the hash record column +select + *, + row_number() over ( + partition by _airbyte_dedup_exchange_rate_hashid + order by _airbyte_emitted_at asc + ) as _airbyte_row_num +from `dataline-integration-testing`._airbyte_test_normalization.`dedup_exchange_rate_ab3` +-- dedup_exchange_rate from `dataline-integration-testing`.test_normalization._airbyte_raw_dedup_exchange_rate; + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab1.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab1.sql new file mode 100644 index 00000000000000..85b3c3a958bbec --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab1.sql @@ -0,0 +1,17 @@ + + + create or replace view `dataline-integration-testing`._airbyte_test_normalization.`exchange_rate_ab1` + OPTIONS() + as +-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema +select + json_extract_scalar(_airbyte_data, "$.id") as id, + json_extract_scalar(_airbyte_data, "$.currency") as currency, + json_extract_scalar(_airbyte_data, "$.date") as date, + json_extract_scalar(_airbyte_data, "$.HKD") as HKD, + json_extract_scalar(_airbyte_data, "$.NZD") as NZD, + json_extract_scalar(_airbyte_data, "$.USD") as USD, + _airbyte_emitted_at +from `dataline-integration-testing`.test_normalization._airbyte_raw_exchange_rate +-- exchange_rate; + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab2.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab2.sql new file mode 100644 index 00000000000000..327d70802e59c7 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab2.sql @@ -0,0 +1,29 @@ + + + create or replace view `dataline-integration-testing`._airbyte_test_normalization.`exchange_rate_ab2` + OPTIONS() + as +-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type +select + cast(id as + int64 +) as id, + cast(currency as + string +) as currency, + cast(date as + string +) as date, + cast(HKD as + float64 +) as HKD, + cast(NZD as + float64 +) as NZD, + cast(USD as + float64 +) as USD, + _airbyte_emitted_at +from `dataline-integration-testing`._airbyte_test_normalization.`exchange_rate_ab1` +-- exchange_rate; + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab3.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab3.sql new file mode 100644 index 00000000000000..a2f29bad49b86a --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab3.sql @@ -0,0 +1,26 @@ + + + create or replace view `dataline-integration-testing`._airbyte_test_normalization.`exchange_rate_ab3` + OPTIONS() + as +-- SQL model to build a hash column based on the values of this record +select + *, + to_hex(md5(cast(concat(coalesce(cast(id as + string +), ''), '-', coalesce(cast(currency as + string +), ''), '-', coalesce(cast(date as + string +), ''), '-', coalesce(cast(HKD as + string +), ''), '-', coalesce(cast(NZD as + string +), ''), '-', coalesce(cast(USD as + string +), '')) as + string +))) as _airbyte_exchange_rate_hashid +from `dataline-integration-testing`._airbyte_test_normalization.`exchange_rate_ab2` +-- exchange_rate; + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/dbt_schema_tests/schema_test.yml b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/dbt_schema_tests/schema_test.yml new file mode 100644 index 00000000000000..0efe4bcd49df09 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/dbt_schema_tests/schema_test.yml @@ -0,0 +1,33 @@ +version: 2 + +models: + - name: test_normalization_exchange_rate + tests: + - dbt_utils.equality: + description: check_streams_are_equal + In this integration test, we are sending the same records to both streams + exchange_rate and dedup_exchange_rate. + The SCD table of dedup_exchange_rate in append_dedup mode should therefore mirror + the final table with append or overwrite mode from exchange_rate. + compare_model: ref('test_normalization_dedup_exchange_rate_scd') + compare_columns: + - id + - currency + - date + - HKD + - NZD + - USD + - dbt_utils.equal_rowcount: + description: check_raw_and_normalized_rowcounts + Raw and normalized tables should be equal. + compare_model: source('test_normalization', '_airbyte_raw_exchange_rate') + + - name: test_normalization_dedup_exchange_rate + tests: + - dbt_utils.unique_combination_of_columns: + description: check_deduplication_by_primary_key + The final table for this stream should have unique composite primary key values. + combination_of_columns: + - id + - currency + - NZD diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql new file mode 100644 index 00000000000000..7dcb03f918f0c1 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql @@ -0,0 +1,15 @@ +{{ config(alias="dedup_exchange_rate", schema="test_normalization", tags=["top-level"]) }} +-- Final base SQL model +select + id, + currency, + date, + HKD, + NZD, + USD, + _airbyte_emitted_at, + _airbyte_dedup_exchange_rate_hashid +from {{ ref('test_normalization_dedup_exchange_rate_scd') }} +-- dedup_exchange_rate from {{ source('test_normalization', '_airbyte_raw_dedup_exchange_rate') }} +where _airbyte_active_row = True + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql new file mode 100644 index 00000000000000..b6bfda1997b90a --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql @@ -0,0 +1,24 @@ +{{ config(alias="dedup_exchange_rate_scd", schema="test_normalization", tags=["top-level"]) }} +-- SQL model to build a Type 2 Slowly Changing Dimension (SCD) table for each record identified by their primary key +select + id, + currency, + date, + HKD, + NZD, + USD, + date as _airbyte_start_at, + lag(date) over ( + partition by id, currency, cast(NZD as {{ dbt_utils.type_string() }}) + order by date desc, _airbyte_emitted_at desc + ) as _airbyte_end_at, + lag(date) over ( + partition by id, currency, cast(NZD as {{ dbt_utils.type_string() }}) + order by date desc, _airbyte_emitted_at desc + ) is null as _airbyte_active_row, + _airbyte_emitted_at, + _airbyte_dedup_exchange_rate_hashid +from {{ ref('_airbyte_test_normalization_dedup_exchange_rate_ab4') }} +-- dedup_exchange_rate from {{ source('test_normalization', '_airbyte_raw_dedup_exchange_rate') }} +where _airbyte_row_num = 1 + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql new file mode 100644 index 00000000000000..4f892ddc8daf76 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql @@ -0,0 +1,14 @@ +{{ config(alias="exchange_rate", schema="test_normalization", tags=["top-level"]) }} +-- Final base SQL model +select + id, + currency, + date, + HKD, + NZD, + USD, + _airbyte_emitted_at, + _airbyte_exchange_rate_hashid +from {{ ref('_airbyte_test_normalization_exchange_rate_ab3') }} +-- exchange_rate from {{ source('test_normalization', '_airbyte_raw_exchange_rate') }} + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab1.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab1.sql new file mode 100644 index 00000000000000..ac673200bc967a --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab1.sql @@ -0,0 +1,13 @@ +{{ config(alias="dedup_exchange_rate_ab1", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema +select + {{ json_extract_scalar('_airbyte_data', ['id']) }} as id, + {{ json_extract_scalar('_airbyte_data', ['currency']) }} as currency, + {{ json_extract_scalar('_airbyte_data', ['date']) }} as date, + {{ json_extract_scalar('_airbyte_data', ['HKD']) }} as HKD, + {{ json_extract_scalar('_airbyte_data', ['NZD']) }} as NZD, + {{ json_extract_scalar('_airbyte_data', ['USD']) }} as USD, + _airbyte_emitted_at +from {{ source('test_normalization', '_airbyte_raw_dedup_exchange_rate') }} +-- dedup_exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab2.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab2.sql new file mode 100644 index 00000000000000..ce6e902d2f9400 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab2.sql @@ -0,0 +1,13 @@ +{{ config(alias="dedup_exchange_rate_ab2", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type +select + cast(id as {{ dbt_utils.type_bigint() }}) as id, + cast(currency as {{ dbt_utils.type_string() }}) as currency, + cast(date as {{ dbt_utils.type_string() }}) as date, + cast(HKD as {{ dbt_utils.type_float() }}) as HKD, + cast(NZD as {{ dbt_utils.type_float() }}) as NZD, + cast(USD as {{ dbt_utils.type_float() }}) as USD, + _airbyte_emitted_at +from {{ ref('_airbyte_test_normalization_dedup_exchange_rate_ab1') }} +-- dedup_exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab3.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab3.sql new file mode 100644 index 00000000000000..a523a4a53161f2 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab3.sql @@ -0,0 +1,15 @@ +{{ config(alias="dedup_exchange_rate_ab3", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to build a hash column based on the values of this record +select + *, + {{ dbt_utils.surrogate_key([ + 'id', + 'currency', + 'date', + 'HKD', + 'NZD', + 'USD', + ]) }} as _airbyte_dedup_exchange_rate_hashid +from {{ ref('_airbyte_test_normalization_dedup_exchange_rate_ab2') }} +-- dedup_exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab4.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab4.sql new file mode 100644 index 00000000000000..a6177eb64c6d15 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab4.sql @@ -0,0 +1,11 @@ +{{ config(alias="dedup_exchange_rate_ab4", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to prepare for deduplicating records based on the hash record column +select + *, + row_number() over ( + partition by _airbyte_dedup_exchange_rate_hashid + order by _airbyte_emitted_at asc + ) as _airbyte_row_num +from {{ ref('_airbyte_test_normalization_dedup_exchange_rate_ab3') }} +-- dedup_exchange_rate from {{ source('test_normalization', '_airbyte_raw_dedup_exchange_rate') }} + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab1.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab1.sql new file mode 100644 index 00000000000000..88dd2211c7e88d --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab1.sql @@ -0,0 +1,13 @@ +{{ config(alias="exchange_rate_ab1", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema +select + {{ json_extract_scalar('_airbyte_data', ['id']) }} as id, + {{ json_extract_scalar('_airbyte_data', ['currency']) }} as currency, + {{ json_extract_scalar('_airbyte_data', ['date']) }} as date, + {{ json_extract_scalar('_airbyte_data', ['HKD']) }} as HKD, + {{ json_extract_scalar('_airbyte_data', ['NZD']) }} as NZD, + {{ json_extract_scalar('_airbyte_data', ['USD']) }} as USD, + _airbyte_emitted_at +from {{ source('test_normalization', '_airbyte_raw_exchange_rate') }} +-- exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab2.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab2.sql new file mode 100644 index 00000000000000..31e451cb7b0467 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab2.sql @@ -0,0 +1,13 @@ +{{ config(alias="exchange_rate_ab2", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type +select + cast(id as {{ dbt_utils.type_bigint() }}) as id, + cast(currency as {{ dbt_utils.type_string() }}) as currency, + cast(date as {{ dbt_utils.type_string() }}) as date, + cast(HKD as {{ dbt_utils.type_float() }}) as HKD, + cast(NZD as {{ dbt_utils.type_float() }}) as NZD, + cast(USD as {{ dbt_utils.type_float() }}) as USD, + _airbyte_emitted_at +from {{ ref('_airbyte_test_normalization_exchange_rate_ab1') }} +-- exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab3.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab3.sql new file mode 100644 index 00000000000000..aa5d6a72ed08a4 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab3.sql @@ -0,0 +1,15 @@ +{{ config(alias="exchange_rate_ab3", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to build a hash column based on the values of this record +select + *, + {{ dbt_utils.surrogate_key([ + 'id', + 'currency', + 'date', + 'HKD', + 'NZD', + 'USD', + ]) }} as _airbyte_exchange_rate_hashid +from {{ ref('_airbyte_test_normalization_exchange_rate_ab2') }} +-- exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/sources.yml b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/sources.yml new file mode 100644 index 00000000000000..ef3fe7e2dfecc9 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/bigquery/test_primary_key_streams/models/generated/sources.yml @@ -0,0 +1,10 @@ +version: 2 +sources: +- name: test_normalization + quoting: + database: true + schema: false + identifier: false + tables: + - name: _airbyte_raw_dedup_exchange_rate + - name: _airbyte_raw_exchange_rate diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql new file mode 100644 index 00000000000000..e3b82be9fc9995 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql @@ -0,0 +1,19 @@ + + + create table "postgres".test_normalization."test_normalization_dedup_exchange_rate__dbt_tmp" + as ( + +-- Final base SQL model +select + "id", + currency, + "date", + hkd, + nzd, + usd, + _airbyte_emitted_at, + _airbyte_dedup_exchange_rate_hashid +from "postgres".test_normalization."dedup_exchange_rate_scd" +-- dedup_exchange_rate from "postgres".test_normalization._airbyte_raw_dedup_exchange_rate +where _airbyte_active_row = True + ); \ No newline at end of file diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql new file mode 100644 index 00000000000000..19f86a47f946f9 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql @@ -0,0 +1,32 @@ + + + create table "postgres".test_normalization."test_normalization_dedup_exchange_rate_scd__dbt_tmp" + as ( + +-- SQL model to build a Type 2 Slowly Changing Dimension (SCD) table for each record identified by their primary key +select + "id", + currency, + "date", + hkd, + nzd, + usd, + "date" as _airbyte_start_at, + lag("date") over ( + partition by "id", currency, cast(nzd as + varchar +) + order by "date" desc, _airbyte_emitted_at desc + ) as _airbyte_end_at, + lag("date") over ( + partition by "id", currency, cast(nzd as + varchar +) + order by "date" desc, _airbyte_emitted_at desc + ) is null as _airbyte_active_row, + _airbyte_emitted_at, + _airbyte_dedup_exchange_rate_hashid +from "postgres"._airbyte_test_normalization."dedup_exchange_rate_ab4" +-- dedup_exchange_rate from "postgres".test_normalization._airbyte_raw_dedup_exchange_rate +where _airbyte_row_num = 1 + ); \ No newline at end of file diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql new file mode 100644 index 00000000000000..aa9243595136c3 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql @@ -0,0 +1,18 @@ + + + create table "postgres".test_normalization."test_normalization_exchange_rate__dbt_tmp" + as ( + +-- Final base SQL model +select + "id", + currency, + "date", + hkd, + nzd, + usd, + _airbyte_emitted_at, + _airbyte_exchange_rate_hashid +from "postgres"._airbyte_test_normalization."exchange_rate_ab3" +-- exchange_rate from "postgres".test_normalization._airbyte_raw_exchange_rate + ); \ No newline at end of file diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab1.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab1.sql new file mode 100644 index 00000000000000..b3203128fd91fd --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab1.sql @@ -0,0 +1,15 @@ + + create view "postgres"._airbyte_test_normalization."_airbyte_test_normal__dup_exchange_rate_ab1__dbt_tmp" as ( + +-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema +select + jsonb_extract_path_text(_airbyte_data, 'id') as "id", + jsonb_extract_path_text(_airbyte_data, 'currency') as currency, + jsonb_extract_path_text(_airbyte_data, 'date') as "date", + jsonb_extract_path_text(_airbyte_data, 'HKD') as hkd, + jsonb_extract_path_text(_airbyte_data, 'NZD') as nzd, + jsonb_extract_path_text(_airbyte_data, 'USD') as usd, + _airbyte_emitted_at +from "postgres".test_normalization._airbyte_raw_dedup_exchange_rate +-- dedup_exchange_rate + ); diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab2.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab2.sql new file mode 100644 index 00000000000000..b7a06318ba7379 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab2.sql @@ -0,0 +1,27 @@ + + create view "postgres"._airbyte_test_normalization."_airbyte_test_normal__dup_exchange_rate_ab2__dbt_tmp" as ( + +-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type +select + cast("id" as + bigint +) as "id", + cast(currency as + varchar +) as currency, + cast("date" as + varchar +) as "date", + cast(hkd as + float +) as hkd, + cast(nzd as + float +) as nzd, + cast(usd as + float +) as usd, + _airbyte_emitted_at +from "postgres"._airbyte_test_normalization."dedup_exchange_rate_ab1" +-- dedup_exchange_rate + ); diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab3.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab3.sql new file mode 100644 index 00000000000000..87c9ef281bc9a8 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab3.sql @@ -0,0 +1,28 @@ + + create view "postgres"._airbyte_test_normalization."_airbyte_test_normal__dup_exchange_rate_ab3__dbt_tmp" as ( + +-- SQL model to build a hash column based on the values of this record +select + *, + md5(cast( + + coalesce(cast("id" as + varchar +), '') || '-' || coalesce(cast(currency as + varchar +), '') || '-' || coalesce(cast("date" as + varchar +), '') || '-' || coalesce(cast(hkd as + varchar +), '') || '-' || coalesce(cast(nzd as + varchar +), '') || '-' || coalesce(cast(usd as + varchar +), '') + + as + varchar +)) as _airbyte_dedup_exchange_rate_hashid +from "postgres"._airbyte_test_normalization."dedup_exchange_rate_ab2" +-- dedup_exchange_rate + ); diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab4.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab4.sql new file mode 100644 index 00000000000000..315623e0ab98df --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab4.sql @@ -0,0 +1,13 @@ + + create view "postgres"._airbyte_test_normalization."_airbyte_test_normal__dup_exchange_rate_ab4__dbt_tmp" as ( + +-- SQL model to prepare for deduplicating records based on the hash record column +select + *, + row_number() over ( + partition by _airbyte_dedup_exchange_rate_hashid + order by _airbyte_emitted_at asc + ) as _airbyte_row_num +from "postgres"._airbyte_test_normalization."dedup_exchange_rate_ab3" +-- dedup_exchange_rate from "postgres".test_normalization._airbyte_raw_dedup_exchange_rate + ); diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab1.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab1.sql new file mode 100644 index 00000000000000..bf9a9ff8db1bbc --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab1.sql @@ -0,0 +1,15 @@ + + create view "postgres"._airbyte_test_normalization."_airbyte_test_normal__ion_exchange_rate_ab1__dbt_tmp" as ( + +-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema +select + jsonb_extract_path_text(_airbyte_data, 'id') as "id", + jsonb_extract_path_text(_airbyte_data, 'currency') as currency, + jsonb_extract_path_text(_airbyte_data, 'date') as "date", + jsonb_extract_path_text(_airbyte_data, 'HKD') as hkd, + jsonb_extract_path_text(_airbyte_data, 'NZD') as nzd, + jsonb_extract_path_text(_airbyte_data, 'USD') as usd, + _airbyte_emitted_at +from "postgres".test_normalization._airbyte_raw_exchange_rate +-- exchange_rate + ); diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab2.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab2.sql new file mode 100644 index 00000000000000..7922545badd346 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab2.sql @@ -0,0 +1,27 @@ + + create view "postgres"._airbyte_test_normalization."_airbyte_test_normal__ion_exchange_rate_ab2__dbt_tmp" as ( + +-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type +select + cast("id" as + bigint +) as "id", + cast(currency as + varchar +) as currency, + cast("date" as + varchar +) as "date", + cast(hkd as + float +) as hkd, + cast(nzd as + float +) as nzd, + cast(usd as + float +) as usd, + _airbyte_emitted_at +from "postgres"._airbyte_test_normalization."exchange_rate_ab1" +-- exchange_rate + ); diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab3.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab3.sql new file mode 100644 index 00000000000000..6c66c826139e94 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab3.sql @@ -0,0 +1,28 @@ + + create view "postgres"._airbyte_test_normalization."_airbyte_test_normal__ion_exchange_rate_ab3__dbt_tmp" as ( + +-- SQL model to build a hash column based on the values of this record +select + *, + md5(cast( + + coalesce(cast("id" as + varchar +), '') || '-' || coalesce(cast(currency as + varchar +), '') || '-' || coalesce(cast("date" as + varchar +), '') || '-' || coalesce(cast(hkd as + varchar +), '') || '-' || coalesce(cast(nzd as + varchar +), '') || '-' || coalesce(cast(usd as + varchar +), '') + + as + varchar +)) as _airbyte_exchange_rate_hashid +from "postgres"._airbyte_test_normalization."exchange_rate_ab2" +-- exchange_rate + ); diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/dbt_schema_tests/schema_test.yml b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/dbt_schema_tests/schema_test.yml new file mode 100644 index 00000000000000..0efe4bcd49df09 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/dbt_schema_tests/schema_test.yml @@ -0,0 +1,33 @@ +version: 2 + +models: + - name: test_normalization_exchange_rate + tests: + - dbt_utils.equality: + description: check_streams_are_equal + In this integration test, we are sending the same records to both streams + exchange_rate and dedup_exchange_rate. + The SCD table of dedup_exchange_rate in append_dedup mode should therefore mirror + the final table with append or overwrite mode from exchange_rate. + compare_model: ref('test_normalization_dedup_exchange_rate_scd') + compare_columns: + - id + - currency + - date + - HKD + - NZD + - USD + - dbt_utils.equal_rowcount: + description: check_raw_and_normalized_rowcounts + Raw and normalized tables should be equal. + compare_model: source('test_normalization', '_airbyte_raw_exchange_rate') + + - name: test_normalization_dedup_exchange_rate + tests: + - dbt_utils.unique_combination_of_columns: + description: check_deduplication_by_primary_key + The final table for this stream should have unique composite primary key values. + combination_of_columns: + - id + - currency + - NZD diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql new file mode 100644 index 00000000000000..4656ffc7caeacb --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql @@ -0,0 +1,15 @@ +{{ config(alias="dedup_exchange_rate", schema="test_normalization", tags=["top-level"]) }} +-- Final base SQL model +select + {{ adapter.quote('id') }}, + currency, + {{ adapter.quote('date') }}, + hkd, + nzd, + usd, + _airbyte_emitted_at, + _airbyte_dedup_exchange_rate_hashid +from {{ ref('test_normalization_dedup_exchange_rate_scd') }} +-- dedup_exchange_rate from {{ source('test_normalization', '_airbyte_raw_dedup_exchange_rate') }} +where _airbyte_active_row = True + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql new file mode 100644 index 00000000000000..5d7b570fcf584f --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql @@ -0,0 +1,24 @@ +{{ config(alias="dedup_exchange_rate_scd", schema="test_normalization", tags=["top-level"]) }} +-- SQL model to build a Type 2 Slowly Changing Dimension (SCD) table for each record identified by their primary key +select + {{ adapter.quote('id') }}, + currency, + {{ adapter.quote('date') }}, + hkd, + nzd, + usd, + {{ adapter.quote('date') }} as _airbyte_start_at, + lag({{ adapter.quote('date') }}) over ( + partition by {{ adapter.quote('id') }}, currency, cast(nzd as {{ dbt_utils.type_string() }}) + order by {{ adapter.quote('date') }} desc, _airbyte_emitted_at desc + ) as _airbyte_end_at, + lag({{ adapter.quote('date') }}) over ( + partition by {{ adapter.quote('id') }}, currency, cast(nzd as {{ dbt_utils.type_string() }}) + order by {{ adapter.quote('date') }} desc, _airbyte_emitted_at desc + ) is null as _airbyte_active_row, + _airbyte_emitted_at, + _airbyte_dedup_exchange_rate_hashid +from {{ ref('_airbyte_test_normal__dup_exchange_rate_ab4') }} +-- dedup_exchange_rate from {{ source('test_normalization', '_airbyte_raw_dedup_exchange_rate') }} +where _airbyte_row_num = 1 + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql new file mode 100644 index 00000000000000..300fe2f2b2d39e --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql @@ -0,0 +1,14 @@ +{{ config(alias="exchange_rate", schema="test_normalization", tags=["top-level"]) }} +-- Final base SQL model +select + {{ adapter.quote('id') }}, + currency, + {{ adapter.quote('date') }}, + hkd, + nzd, + usd, + _airbyte_emitted_at, + _airbyte_exchange_rate_hashid +from {{ ref('_airbyte_test_normal__ion_exchange_rate_ab3') }} +-- exchange_rate from {{ source('test_normalization', '_airbyte_raw_exchange_rate') }} + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab1.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab1.sql new file mode 100644 index 00000000000000..a7b11a1fb3dee1 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab1.sql @@ -0,0 +1,13 @@ +{{ config(alias="dedup_exchange_rate_ab1", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema +select + {{ json_extract_scalar('_airbyte_data', ['id']) }} as {{ adapter.quote('id') }}, + {{ json_extract_scalar('_airbyte_data', ['currency']) }} as currency, + {{ json_extract_scalar('_airbyte_data', ['date']) }} as {{ adapter.quote('date') }}, + {{ json_extract_scalar('_airbyte_data', ['HKD']) }} as hkd, + {{ json_extract_scalar('_airbyte_data', ['NZD']) }} as nzd, + {{ json_extract_scalar('_airbyte_data', ['USD']) }} as usd, + _airbyte_emitted_at +from {{ source('test_normalization', '_airbyte_raw_dedup_exchange_rate') }} +-- dedup_exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab2.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab2.sql new file mode 100644 index 00000000000000..82df1a7ee31014 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab2.sql @@ -0,0 +1,13 @@ +{{ config(alias="dedup_exchange_rate_ab2", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type +select + cast({{ adapter.quote('id') }} as {{ dbt_utils.type_bigint() }}) as {{ adapter.quote('id') }}, + cast(currency as {{ dbt_utils.type_string() }}) as currency, + cast({{ adapter.quote('date') }} as {{ dbt_utils.type_string() }}) as {{ adapter.quote('date') }}, + cast(hkd as {{ dbt_utils.type_float() }}) as hkd, + cast(nzd as {{ dbt_utils.type_float() }}) as nzd, + cast(usd as {{ dbt_utils.type_float() }}) as usd, + _airbyte_emitted_at +from {{ ref('_airbyte_test_normal__dup_exchange_rate_ab1') }} +-- dedup_exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab3.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab3.sql new file mode 100644 index 00000000000000..3df6c091314b84 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab3.sql @@ -0,0 +1,15 @@ +{{ config(alias="dedup_exchange_rate_ab3", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to build a hash column based on the values of this record +select + *, + {{ dbt_utils.surrogate_key([ + adapter.quote('id'), + 'currency', + adapter.quote('date'), + 'hkd', + 'nzd', + 'usd', + ]) }} as _airbyte_dedup_exchange_rate_hashid +from {{ ref('_airbyte_test_normal__dup_exchange_rate_ab2') }} +-- dedup_exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab4.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab4.sql new file mode 100644 index 00000000000000..ccf2794e19f3d4 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__dup_exchange_rate_ab4.sql @@ -0,0 +1,11 @@ +{{ config(alias="dedup_exchange_rate_ab4", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to prepare for deduplicating records based on the hash record column +select + *, + row_number() over ( + partition by _airbyte_dedup_exchange_rate_hashid + order by _airbyte_emitted_at asc + ) as _airbyte_row_num +from {{ ref('_airbyte_test_normal__dup_exchange_rate_ab3') }} +-- dedup_exchange_rate from {{ source('test_normalization', '_airbyte_raw_dedup_exchange_rate') }} + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab1.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab1.sql new file mode 100644 index 00000000000000..b095ba86da022b --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab1.sql @@ -0,0 +1,13 @@ +{{ config(alias="exchange_rate_ab1", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema +select + {{ json_extract_scalar('_airbyte_data', ['id']) }} as {{ adapter.quote('id') }}, + {{ json_extract_scalar('_airbyte_data', ['currency']) }} as currency, + {{ json_extract_scalar('_airbyte_data', ['date']) }} as {{ adapter.quote('date') }}, + {{ json_extract_scalar('_airbyte_data', ['HKD']) }} as hkd, + {{ json_extract_scalar('_airbyte_data', ['NZD']) }} as nzd, + {{ json_extract_scalar('_airbyte_data', ['USD']) }} as usd, + _airbyte_emitted_at +from {{ source('test_normalization', '_airbyte_raw_exchange_rate') }} +-- exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab2.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab2.sql new file mode 100644 index 00000000000000..7067c9af184066 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab2.sql @@ -0,0 +1,13 @@ +{{ config(alias="exchange_rate_ab2", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type +select + cast({{ adapter.quote('id') }} as {{ dbt_utils.type_bigint() }}) as {{ adapter.quote('id') }}, + cast(currency as {{ dbt_utils.type_string() }}) as currency, + cast({{ adapter.quote('date') }} as {{ dbt_utils.type_string() }}) as {{ adapter.quote('date') }}, + cast(hkd as {{ dbt_utils.type_float() }}) as hkd, + cast(nzd as {{ dbt_utils.type_float() }}) as nzd, + cast(usd as {{ dbt_utils.type_float() }}) as usd, + _airbyte_emitted_at +from {{ ref('_airbyte_test_normal__ion_exchange_rate_ab1') }} +-- exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab3.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab3.sql new file mode 100644 index 00000000000000..6c173e6ca7f35c --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normal__ion_exchange_rate_ab3.sql @@ -0,0 +1,15 @@ +{{ config(alias="exchange_rate_ab3", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to build a hash column based on the values of this record +select + *, + {{ dbt_utils.surrogate_key([ + adapter.quote('id'), + 'currency', + adapter.quote('date'), + 'hkd', + 'nzd', + 'usd', + ]) }} as _airbyte_exchange_rate_hashid +from {{ ref('_airbyte_test_normal__ion_exchange_rate_ab2') }} +-- exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/sources.yml b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/sources.yml new file mode 100644 index 00000000000000..ef3fe7e2dfecc9 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/models/generated/sources.yml @@ -0,0 +1,10 @@ +version: 2 +sources: +- name: test_normalization + quoting: + database: true + schema: false + identifier: false + tables: + - name: _airbyte_raw_dedup_exchange_rate + - name: _airbyte_raw_exchange_rate diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql new file mode 100644 index 00000000000000..1c15672ffa91ca --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql @@ -0,0 +1,22 @@ + + + create table + "integrationtests".test_normalization."test_normalization_dedup_exchange_rate__dbt_tmp" + + + as ( + +-- Final base SQL model +select + id, + currency, + date, + hkd, + nzd, + usd, + _airbyte_emitted_at, + _airbyte_dedup_exchange_rate_hashid +from "integrationtests".test_normalization."dedup_exchange_rate_scd" +-- dedup_exchange_rate from "integrationtests".test_normalization._airbyte_raw_dedup_exchange_rate +where _airbyte_active_row = True + ); \ No newline at end of file diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql new file mode 100644 index 00000000000000..2c4e5e0a978a98 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql @@ -0,0 +1,31 @@ + + + create table + "integrationtests".test_normalization."test_normalization_dedup_exchange_rate_scd__dbt_tmp" + + + as ( + +-- SQL model to build a Type 2 Slowly Changing Dimension (SCD) table for each record identified by their primary key +select + id, + currency, + date, + hkd, + nzd, + usd, + date as _airbyte_start_at, + lag(date) over ( + partition by id, currency, cast(nzd as varchar) + order by date desc, _airbyte_emitted_at desc + ) as _airbyte_end_at, + lag(date) over ( + partition by id, currency, cast(nzd as varchar) + order by date desc, _airbyte_emitted_at desc + ) is null as _airbyte_active_row, + _airbyte_emitted_at, + _airbyte_dedup_exchange_rate_hashid +from "integrationtests"._airbyte_test_normalization."dedup_exchange_rate_ab4" +-- dedup_exchange_rate from "integrationtests".test_normalization._airbyte_raw_dedup_exchange_rate +where _airbyte_row_num = 1 + ); \ No newline at end of file diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql new file mode 100644 index 00000000000000..0aafd7ed20c3bc --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql @@ -0,0 +1,21 @@ + + + create table + "integrationtests".test_normalization."test_normalization_exchange_rate__dbt_tmp" + + + as ( + +-- Final base SQL model +select + id, + currency, + date, + hkd, + nzd, + usd, + _airbyte_emitted_at, + _airbyte_exchange_rate_hashid +from "integrationtests"._airbyte_test_normalization."exchange_rate_ab3" +-- exchange_rate from "integrationtests".test_normalization._airbyte_raw_exchange_rate + ); \ No newline at end of file diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab1.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab1.sql new file mode 100644 index 00000000000000..e205cacc9c3bde --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab1.sql @@ -0,0 +1,16 @@ + + + create view "integrationtests"._airbyte_test_normalization."_airbyte_test_normalization_dedup_exchange_rate_ab1__dbt_tmp" as ( + +-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema +select + case when json_extract_path_text(_airbyte_data, 'id') != '' then json_extract_path_text(_airbyte_data, 'id') end as id, + case when json_extract_path_text(_airbyte_data, 'currency') != '' then json_extract_path_text(_airbyte_data, 'currency') end as currency, + case when json_extract_path_text(_airbyte_data, 'date') != '' then json_extract_path_text(_airbyte_data, 'date') end as date, + case when json_extract_path_text(_airbyte_data, 'HKD') != '' then json_extract_path_text(_airbyte_data, 'HKD') end as hkd, + case when json_extract_path_text(_airbyte_data, 'NZD') != '' then json_extract_path_text(_airbyte_data, 'NZD') end as nzd, + case when json_extract_path_text(_airbyte_data, 'USD') != '' then json_extract_path_text(_airbyte_data, 'USD') end as usd, + _airbyte_emitted_at +from "integrationtests".test_normalization._airbyte_raw_dedup_exchange_rate +-- dedup_exchange_rate + ) ; diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab2.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab2.sql new file mode 100644 index 00000000000000..a0c516f354b6e4 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab2.sql @@ -0,0 +1,24 @@ + + + create view "integrationtests"._airbyte_test_normalization."_airbyte_test_normalization_dedup_exchange_rate_ab2__dbt_tmp" as ( + +-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type +select + cast(id as + bigint +) as id, + cast(currency as varchar) as currency, + cast(date as varchar) as date, + cast(hkd as + float +) as hkd, + cast(nzd as + float +) as nzd, + cast(usd as + float +) as usd, + _airbyte_emitted_at +from "integrationtests"._airbyte_test_normalization."dedup_exchange_rate_ab1" +-- dedup_exchange_rate + ) ; diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab3.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab3.sql new file mode 100644 index 00000000000000..6da31c3dc7915f --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab3.sql @@ -0,0 +1,15 @@ + + + create view "integrationtests"._airbyte_test_normalization."_airbyte_test_normalization_dedup_exchange_rate_ab3__dbt_tmp" as ( + +-- SQL model to build a hash column based on the values of this record +select + *, + md5(cast( + + coalesce(cast(id as varchar), '') || '-' || coalesce(cast(currency as varchar), '') || '-' || coalesce(cast(date as varchar), '') || '-' || coalesce(cast(hkd as varchar), '') || '-' || coalesce(cast(nzd as varchar), '') || '-' || coalesce(cast(usd as varchar), '') + + as varchar)) as _airbyte_dedup_exchange_rate_hashid +from "integrationtests"._airbyte_test_normalization."dedup_exchange_rate_ab2" +-- dedup_exchange_rate + ) ; diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab4.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab4.sql new file mode 100644 index 00000000000000..22a0daa560cbe4 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab4.sql @@ -0,0 +1,14 @@ + + + create view "integrationtests"._airbyte_test_normalization."_airbyte_test_normalization_dedup_exchange_rate_ab4__dbt_tmp" as ( + +-- SQL model to prepare for deduplicating records based on the hash record column +select + *, + row_number() over ( + partition by _airbyte_dedup_exchange_rate_hashid + order by _airbyte_emitted_at asc + ) as _airbyte_row_num +from "integrationtests"._airbyte_test_normalization."dedup_exchange_rate_ab3" +-- dedup_exchange_rate from "integrationtests".test_normalization._airbyte_raw_dedup_exchange_rate + ) ; diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab1.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab1.sql new file mode 100644 index 00000000000000..6906bef29e9a84 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab1.sql @@ -0,0 +1,16 @@ + + + create view "integrationtests"._airbyte_test_normalization."_airbyte_test_normalization_exchange_rate_ab1__dbt_tmp" as ( + +-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema +select + case when json_extract_path_text(_airbyte_data, 'id') != '' then json_extract_path_text(_airbyte_data, 'id') end as id, + case when json_extract_path_text(_airbyte_data, 'currency') != '' then json_extract_path_text(_airbyte_data, 'currency') end as currency, + case when json_extract_path_text(_airbyte_data, 'date') != '' then json_extract_path_text(_airbyte_data, 'date') end as date, + case when json_extract_path_text(_airbyte_data, 'HKD') != '' then json_extract_path_text(_airbyte_data, 'HKD') end as hkd, + case when json_extract_path_text(_airbyte_data, 'NZD') != '' then json_extract_path_text(_airbyte_data, 'NZD') end as nzd, + case when json_extract_path_text(_airbyte_data, 'USD') != '' then json_extract_path_text(_airbyte_data, 'USD') end as usd, + _airbyte_emitted_at +from "integrationtests".test_normalization._airbyte_raw_exchange_rate +-- exchange_rate + ) ; diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab2.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab2.sql new file mode 100644 index 00000000000000..94cef02e5e859f --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab2.sql @@ -0,0 +1,24 @@ + + + create view "integrationtests"._airbyte_test_normalization."_airbyte_test_normalization_exchange_rate_ab2__dbt_tmp" as ( + +-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type +select + cast(id as + bigint +) as id, + cast(currency as varchar) as currency, + cast(date as varchar) as date, + cast(hkd as + float +) as hkd, + cast(nzd as + float +) as nzd, + cast(usd as + float +) as usd, + _airbyte_emitted_at +from "integrationtests"._airbyte_test_normalization."exchange_rate_ab1" +-- exchange_rate + ) ; diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab3.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab3.sql new file mode 100644 index 00000000000000..5af2df9bbe67a9 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/final/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab3.sql @@ -0,0 +1,15 @@ + + + create view "integrationtests"._airbyte_test_normalization."_airbyte_test_normalization_exchange_rate_ab3__dbt_tmp" as ( + +-- SQL model to build a hash column based on the values of this record +select + *, + md5(cast( + + coalesce(cast(id as varchar), '') || '-' || coalesce(cast(currency as varchar), '') || '-' || coalesce(cast(date as varchar), '') || '-' || coalesce(cast(hkd as varchar), '') || '-' || coalesce(cast(nzd as varchar), '') || '-' || coalesce(cast(usd as varchar), '') + + as varchar)) as _airbyte_exchange_rate_hashid +from "integrationtests"._airbyte_test_normalization."exchange_rate_ab2" +-- exchange_rate + ) ; diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/dbt_schema_tests/schema_test.yml b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/dbt_schema_tests/schema_test.yml new file mode 100644 index 00000000000000..0efe4bcd49df09 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/dbt_schema_tests/schema_test.yml @@ -0,0 +1,33 @@ +version: 2 + +models: + - name: test_normalization_exchange_rate + tests: + - dbt_utils.equality: + description: check_streams_are_equal + In this integration test, we are sending the same records to both streams + exchange_rate and dedup_exchange_rate. + The SCD table of dedup_exchange_rate in append_dedup mode should therefore mirror + the final table with append or overwrite mode from exchange_rate. + compare_model: ref('test_normalization_dedup_exchange_rate_scd') + compare_columns: + - id + - currency + - date + - HKD + - NZD + - USD + - dbt_utils.equal_rowcount: + description: check_raw_and_normalized_rowcounts + Raw and normalized tables should be equal. + compare_model: source('test_normalization', '_airbyte_raw_exchange_rate') + + - name: test_normalization_dedup_exchange_rate + tests: + - dbt_utils.unique_combination_of_columns: + description: check_deduplication_by_primary_key + The final table for this stream should have unique composite primary key values. + combination_of_columns: + - id + - currency + - NZD diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql new file mode 100644 index 00000000000000..5cc9141e2e0d6c --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate.sql @@ -0,0 +1,15 @@ +{{ config(alias="dedup_exchange_rate", schema="test_normalization", tags=["top-level"]) }} +-- Final base SQL model +select + id, + currency, + date, + hkd, + nzd, + usd, + _airbyte_emitted_at, + _airbyte_dedup_exchange_rate_hashid +from {{ ref('test_normalization_dedup_exchange_rate_scd') }} +-- dedup_exchange_rate from {{ source('test_normalization', '_airbyte_raw_dedup_exchange_rate') }} +where _airbyte_active_row = True + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql new file mode 100644 index 00000000000000..22801e6889ec4b --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_dedup_exchange_rate_scd.sql @@ -0,0 +1,24 @@ +{{ config(alias="dedup_exchange_rate_scd", schema="test_normalization", tags=["top-level"]) }} +-- SQL model to build a Type 2 Slowly Changing Dimension (SCD) table for each record identified by their primary key +select + id, + currency, + date, + hkd, + nzd, + usd, + date as _airbyte_start_at, + lag(date) over ( + partition by id, currency, cast(nzd as {{ dbt_utils.type_string() }}) + order by date desc, _airbyte_emitted_at desc + ) as _airbyte_end_at, + lag(date) over ( + partition by id, currency, cast(nzd as {{ dbt_utils.type_string() }}) + order by date desc, _airbyte_emitted_at desc + ) is null as _airbyte_active_row, + _airbyte_emitted_at, + _airbyte_dedup_exchange_rate_hashid +from {{ ref('_airbyte_test_normalization_dedup_exchange_rate_ab4') }} +-- dedup_exchange_rate from {{ source('test_normalization', '_airbyte_raw_dedup_exchange_rate') }} +where _airbyte_row_num = 1 + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql new file mode 100644 index 00000000000000..50334887a863ff --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_tables/test_normalization/test_normalization_exchange_rate.sql @@ -0,0 +1,14 @@ +{{ config(alias="exchange_rate", schema="test_normalization", tags=["top-level"]) }} +-- Final base SQL model +select + id, + currency, + date, + hkd, + nzd, + usd, + _airbyte_emitted_at, + _airbyte_exchange_rate_hashid +from {{ ref('_airbyte_test_normalization_exchange_rate_ab3') }} +-- exchange_rate from {{ source('test_normalization', '_airbyte_raw_exchange_rate') }} + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab1.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab1.sql new file mode 100644 index 00000000000000..99cb3d432fa7ba --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab1.sql @@ -0,0 +1,13 @@ +{{ config(alias="dedup_exchange_rate_ab1", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema +select + {{ json_extract_scalar('_airbyte_data', ['id']) }} as id, + {{ json_extract_scalar('_airbyte_data', ['currency']) }} as currency, + {{ json_extract_scalar('_airbyte_data', ['date']) }} as date, + {{ json_extract_scalar('_airbyte_data', ['HKD']) }} as hkd, + {{ json_extract_scalar('_airbyte_data', ['NZD']) }} as nzd, + {{ json_extract_scalar('_airbyte_data', ['USD']) }} as usd, + _airbyte_emitted_at +from {{ source('test_normalization', '_airbyte_raw_dedup_exchange_rate') }} +-- dedup_exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab2.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab2.sql new file mode 100644 index 00000000000000..5df4dd6ef64798 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab2.sql @@ -0,0 +1,13 @@ +{{ config(alias="dedup_exchange_rate_ab2", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type +select + cast(id as {{ dbt_utils.type_bigint() }}) as id, + cast(currency as {{ dbt_utils.type_string() }}) as currency, + cast(date as {{ dbt_utils.type_string() }}) as date, + cast(hkd as {{ dbt_utils.type_float() }}) as hkd, + cast(nzd as {{ dbt_utils.type_float() }}) as nzd, + cast(usd as {{ dbt_utils.type_float() }}) as usd, + _airbyte_emitted_at +from {{ ref('_airbyte_test_normalization_dedup_exchange_rate_ab1') }} +-- dedup_exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab3.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab3.sql new file mode 100644 index 00000000000000..341fa2558c7a29 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab3.sql @@ -0,0 +1,15 @@ +{{ config(alias="dedup_exchange_rate_ab3", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to build a hash column based on the values of this record +select + *, + {{ dbt_utils.surrogate_key([ + 'id', + 'currency', + 'date', + 'hkd', + 'nzd', + 'usd', + ]) }} as _airbyte_dedup_exchange_rate_hashid +from {{ ref('_airbyte_test_normalization_dedup_exchange_rate_ab2') }} +-- dedup_exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab4.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab4.sql new file mode 100644 index 00000000000000..a6177eb64c6d15 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_dedup_exchange_rate_ab4.sql @@ -0,0 +1,11 @@ +{{ config(alias="dedup_exchange_rate_ab4", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to prepare for deduplicating records based on the hash record column +select + *, + row_number() over ( + partition by _airbyte_dedup_exchange_rate_hashid + order by _airbyte_emitted_at asc + ) as _airbyte_row_num +from {{ ref('_airbyte_test_normalization_dedup_exchange_rate_ab3') }} +-- dedup_exchange_rate from {{ source('test_normalization', '_airbyte_raw_dedup_exchange_rate') }} + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab1.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab1.sql new file mode 100644 index 00000000000000..0ada88ded31147 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab1.sql @@ -0,0 +1,13 @@ +{{ config(alias="exchange_rate_ab1", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema +select + {{ json_extract_scalar('_airbyte_data', ['id']) }} as id, + {{ json_extract_scalar('_airbyte_data', ['currency']) }} as currency, + {{ json_extract_scalar('_airbyte_data', ['date']) }} as date, + {{ json_extract_scalar('_airbyte_data', ['HKD']) }} as hkd, + {{ json_extract_scalar('_airbyte_data', ['NZD']) }} as nzd, + {{ json_extract_scalar('_airbyte_data', ['USD']) }} as usd, + _airbyte_emitted_at +from {{ source('test_normalization', '_airbyte_raw_exchange_rate') }} +-- exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab2.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab2.sql new file mode 100644 index 00000000000000..77dace98091f43 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab2.sql @@ -0,0 +1,13 @@ +{{ config(alias="exchange_rate_ab2", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type +select + cast(id as {{ dbt_utils.type_bigint() }}) as id, + cast(currency as {{ dbt_utils.type_string() }}) as currency, + cast(date as {{ dbt_utils.type_string() }}) as date, + cast(hkd as {{ dbt_utils.type_float() }}) as hkd, + cast(nzd as {{ dbt_utils.type_float() }}) as nzd, + cast(usd as {{ dbt_utils.type_float() }}) as usd, + _airbyte_emitted_at +from {{ ref('_airbyte_test_normalization_exchange_rate_ab1') }} +-- exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab3.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab3.sql new file mode 100644 index 00000000000000..e0cbf08925425b --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/airbyte_views/test_normalization/_airbyte_test_normalization_exchange_rate_ab3.sql @@ -0,0 +1,15 @@ +{{ config(alias="exchange_rate_ab3", schema="_airbyte_test_normalization", tags=["top-level-intermediate"]) }} +-- SQL model to build a hash column based on the values of this record +select + *, + {{ dbt_utils.surrogate_key([ + 'id', + 'currency', + 'date', + 'hkd', + 'nzd', + 'usd', + ]) }} as _airbyte_exchange_rate_hashid +from {{ ref('_airbyte_test_normalization_exchange_rate_ab2') }} +-- exchange_rate + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/sources.yml b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/sources.yml new file mode 100644 index 00000000000000..ef3fe7e2dfecc9 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/redshift/test_primary_key_streams/models/generated/sources.yml @@ -0,0 +1,10 @@ +version: 2 +sources: +- name: test_normalization + quoting: + database: true + schema: false + identifier: false + tables: + - name: _airbyte_raw_dedup_exchange_rate + - name: _airbyte_raw_exchange_rate diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE.sql new file mode 100644 index 00000000000000..a92e25d409e93d --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE.sql @@ -0,0 +1,19 @@ + + + create or replace transient table "AIRBYTE_DATABASE".TEST_NORMALIZATION."DEDUP_EXCHANGE_RATE" as + ( +-- Final base SQL model +select + ID, + CURRENCY, + DATE, + HKD, + NZD, + USD, + _airbyte_emitted_at, + _AIRBYTE_DEDUP_EXCHANGE_RATE_HASHID +from "AIRBYTE_DATABASE".TEST_NORMALIZATION."DEDUP_EXCHANGE_RATE_SCD" +-- DEDUP_EXCHANGE_RATE from "AIRBYTE_DATABASE".TEST_NORMALIZATION._AIRBYTE_RAW_DEDUP_EXCHANGE_RATE +where _airbyte_active_row = True + ); + \ No newline at end of file diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_SCD.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_SCD.sql new file mode 100644 index 00000000000000..bc53eba67084fb --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_SCD.sql @@ -0,0 +1,32 @@ + + + create or replace transient table "AIRBYTE_DATABASE".TEST_NORMALIZATION."DEDUP_EXCHANGE_RATE_SCD" as + ( +-- SQL model to build a Type 2 Slowly Changing Dimension (SCD) table for each record identified by their primary key +select + ID, + CURRENCY, + DATE, + HKD, + NZD, + USD, + DATE as _airbyte_start_at, + lag(DATE) over ( + partition by ID, CURRENCY, cast(NZD as + varchar +) + order by DATE desc, _airbyte_emitted_at desc + ) as _airbyte_end_at, + lag(DATE) over ( + partition by ID, CURRENCY, cast(NZD as + varchar +) + order by DATE desc, _airbyte_emitted_at desc + ) is null as _airbyte_active_row, + _airbyte_emitted_at, + _AIRBYTE_DEDUP_EXCHANGE_RATE_HASHID +from "AIRBYTE_DATABASE"._AIRBYTE_TEST_NORMALIZATION."DEDUP_EXCHANGE_RATE_AB4" +-- DEDUP_EXCHANGE_RATE from "AIRBYTE_DATABASE".TEST_NORMALIZATION._AIRBYTE_RAW_DEDUP_EXCHANGE_RATE +where _airbyte_row_num = 1 + ); + \ No newline at end of file diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_EXCHANGE_RATE.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_EXCHANGE_RATE.sql new file mode 100644 index 00000000000000..940886b0804310 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_EXCHANGE_RATE.sql @@ -0,0 +1,18 @@ + + + create or replace transient table "AIRBYTE_DATABASE".TEST_NORMALIZATION."EXCHANGE_RATE" as + ( +-- Final base SQL model +select + ID, + CURRENCY, + DATE, + HKD, + NZD, + USD, + _airbyte_emitted_at, + _AIRBYTE_EXCHANGE_RATE_HASHID +from "AIRBYTE_DATABASE"._AIRBYTE_TEST_NORMALIZATION."EXCHANGE_RATE_AB3" +-- EXCHANGE_RATE from "AIRBYTE_DATABASE".TEST_NORMALIZATION._AIRBYTE_RAW_EXCHANGE_RATE + ); + \ No newline at end of file diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB1.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB1.sql new file mode 100644 index 00000000000000..8ce53b68d1bc49 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB1.sql @@ -0,0 +1,15 @@ + + create or replace view "AIRBYTE_DATABASE"._AIRBYTE_TEST_NORMALIZATION."DEDUP_EXCHANGE_RATE_AB1" as ( + +-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema +select + to_varchar(get_path(parse_json(_airbyte_data), '"id"')) as ID, + to_varchar(get_path(parse_json(_airbyte_data), '"currency"')) as CURRENCY, + to_varchar(get_path(parse_json(_airbyte_data), '"date"')) as DATE, + to_varchar(get_path(parse_json(_airbyte_data), '"HKD"')) as HKD, + to_varchar(get_path(parse_json(_airbyte_data), '"NZD"')) as NZD, + to_varchar(get_path(parse_json(_airbyte_data), '"USD"')) as USD, + _airbyte_emitted_at +from "AIRBYTE_DATABASE".TEST_NORMALIZATION._AIRBYTE_RAW_DEDUP_EXCHANGE_RATE +-- DEDUP_EXCHANGE_RATE + ); diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB2.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB2.sql new file mode 100644 index 00000000000000..8f51811b216b0e --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB2.sql @@ -0,0 +1,27 @@ + + create or replace view "AIRBYTE_DATABASE"._AIRBYTE_TEST_NORMALIZATION."DEDUP_EXCHANGE_RATE_AB2" as ( + +-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type +select + cast(ID as + bigint +) as ID, + cast(CURRENCY as + varchar +) as CURRENCY, + cast(DATE as + varchar +) as DATE, + cast(HKD as + float +) as HKD, + cast(NZD as + float +) as NZD, + cast(USD as + float +) as USD, + _airbyte_emitted_at +from "AIRBYTE_DATABASE"._AIRBYTE_TEST_NORMALIZATION."DEDUP_EXCHANGE_RATE_AB1" +-- DEDUP_EXCHANGE_RATE + ); diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB3.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB3.sql new file mode 100644 index 00000000000000..0e66d2c841ac5c --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB3.sql @@ -0,0 +1,28 @@ + + create or replace view "AIRBYTE_DATABASE"._AIRBYTE_TEST_NORMALIZATION."DEDUP_EXCHANGE_RATE_AB3" as ( + +-- SQL model to build a hash column based on the values of this record +select + *, + md5(cast( + + coalesce(cast(ID as + varchar +), '') || '-' || coalesce(cast(CURRENCY as + varchar +), '') || '-' || coalesce(cast(DATE as + varchar +), '') || '-' || coalesce(cast(HKD as + varchar +), '') || '-' || coalesce(cast(NZD as + varchar +), '') || '-' || coalesce(cast(USD as + varchar +), '') + + as + varchar +)) as _AIRBYTE_DEDUP_EXCHANGE_RATE_HASHID +from "AIRBYTE_DATABASE"._AIRBYTE_TEST_NORMALIZATION."DEDUP_EXCHANGE_RATE_AB2" +-- DEDUP_EXCHANGE_RATE + ); diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB4.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB4.sql new file mode 100644 index 00000000000000..2a37d2225993af --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB4.sql @@ -0,0 +1,13 @@ + + create or replace view "AIRBYTE_DATABASE"._AIRBYTE_TEST_NORMALIZATION."DEDUP_EXCHANGE_RATE_AB4" as ( + +-- SQL model to prepare for deduplicating records based on the hash record column +select + *, + row_number() over ( + partition by _AIRBYTE_DEDUP_EXCHANGE_RATE_HASHID + order by _airbyte_emitted_at asc + ) as _airbyte_row_num +from "AIRBYTE_DATABASE"._AIRBYTE_TEST_NORMALIZATION."DEDUP_EXCHANGE_RATE_AB3" +-- DEDUP_EXCHANGE_RATE from "AIRBYTE_DATABASE".TEST_NORMALIZATION._AIRBYTE_RAW_DEDUP_EXCHANGE_RATE + ); diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB1.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB1.sql new file mode 100644 index 00000000000000..c6a9237f6a3720 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB1.sql @@ -0,0 +1,15 @@ + + create or replace view "AIRBYTE_DATABASE"._AIRBYTE_TEST_NORMALIZATION."EXCHANGE_RATE_AB1" as ( + +-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema +select + to_varchar(get_path(parse_json(_airbyte_data), '"id"')) as ID, + to_varchar(get_path(parse_json(_airbyte_data), '"currency"')) as CURRENCY, + to_varchar(get_path(parse_json(_airbyte_data), '"date"')) as DATE, + to_varchar(get_path(parse_json(_airbyte_data), '"HKD"')) as HKD, + to_varchar(get_path(parse_json(_airbyte_data), '"NZD"')) as NZD, + to_varchar(get_path(parse_json(_airbyte_data), '"USD"')) as USD, + _airbyte_emitted_at +from "AIRBYTE_DATABASE".TEST_NORMALIZATION._AIRBYTE_RAW_EXCHANGE_RATE +-- EXCHANGE_RATE + ); diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB2.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB2.sql new file mode 100644 index 00000000000000..803895c503eb85 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB2.sql @@ -0,0 +1,27 @@ + + create or replace view "AIRBYTE_DATABASE"._AIRBYTE_TEST_NORMALIZATION."EXCHANGE_RATE_AB2" as ( + +-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type +select + cast(ID as + bigint +) as ID, + cast(CURRENCY as + varchar +) as CURRENCY, + cast(DATE as + varchar +) as DATE, + cast(HKD as + float +) as HKD, + cast(NZD as + float +) as NZD, + cast(USD as + float +) as USD, + _airbyte_emitted_at +from "AIRBYTE_DATABASE"._AIRBYTE_TEST_NORMALIZATION."EXCHANGE_RATE_AB1" +-- EXCHANGE_RATE + ); diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB3.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB3.sql new file mode 100644 index 00000000000000..656e61ccce48e9 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/final/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB3.sql @@ -0,0 +1,28 @@ + + create or replace view "AIRBYTE_DATABASE"._AIRBYTE_TEST_NORMALIZATION."EXCHANGE_RATE_AB3" as ( + +-- SQL model to build a hash column based on the values of this record +select + *, + md5(cast( + + coalesce(cast(ID as + varchar +), '') || '-' || coalesce(cast(CURRENCY as + varchar +), '') || '-' || coalesce(cast(DATE as + varchar +), '') || '-' || coalesce(cast(HKD as + varchar +), '') || '-' || coalesce(cast(NZD as + varchar +), '') || '-' || coalesce(cast(USD as + varchar +), '') + + as + varchar +)) as _AIRBYTE_EXCHANGE_RATE_HASHID +from "AIRBYTE_DATABASE"._AIRBYTE_TEST_NORMALIZATION."EXCHANGE_RATE_AB2" +-- EXCHANGE_RATE + ); diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/dbt_schema_tests/schema_test.yml b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/dbt_schema_tests/schema_test.yml new file mode 100644 index 00000000000000..c7647cdfed5e54 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/dbt_schema_tests/schema_test.yml @@ -0,0 +1,33 @@ +version: 2 + +models: + - name: TEST_NORMALIZATION_EXCHANGE_RATE + tests: + - dbt_utils.equality: + description: check_streams_are_equal + In this integration test, we are sending the same records to both streams + exchange_rate and dedup_exchange_rate. + The SCD table of dedup_exchange_rate in append_dedup mode should therefore mirror + the final table with append or overwrite mode from exchange_rate. + compare_model: ref('TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_SCD') + compare_columns: + - id + - currency + - date + - HKD + - NZD + - USD + - dbt_utils.equal_rowcount: + description: check_raw_and_normalized_rowcounts + Raw and normalized tables should be equal. + compare_model: source('TEST_NORMALIZATION', '_AIRBYTE_RAW_EXCHANGE_RATE') + + - name: TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE + tests: + - dbt_utils.unique_combination_of_columns: + description: check_deduplication_by_primary_key + The final table for this stream should have unique composite primary key values. + combination_of_columns: + - id + - currency + - NZD diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE.sql new file mode 100644 index 00000000000000..01c61478bdefa0 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE.sql @@ -0,0 +1,15 @@ +{{ config(alias="DEDUP_EXCHANGE_RATE", schema="TEST_NORMALIZATION", tags=["top-level"]) }} +-- Final base SQL model +select + ID, + CURRENCY, + DATE, + HKD, + NZD, + USD, + _airbyte_emitted_at, + _AIRBYTE_DEDUP_EXCHANGE_RATE_HASHID +from {{ ref('TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_SCD') }} +-- DEDUP_EXCHANGE_RATE from {{ source('TEST_NORMALIZATION', '_AIRBYTE_RAW_DEDUP_EXCHANGE_RATE') }} +where _airbyte_active_row = True + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_SCD.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_SCD.sql new file mode 100644 index 00000000000000..7079a913100f2d --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_SCD.sql @@ -0,0 +1,24 @@ +{{ config(alias="DEDUP_EXCHANGE_RATE_SCD", schema="TEST_NORMALIZATION", tags=["top-level"]) }} +-- SQL model to build a Type 2 Slowly Changing Dimension (SCD) table for each record identified by their primary key +select + ID, + CURRENCY, + DATE, + HKD, + NZD, + USD, + DATE as _airbyte_start_at, + lag(DATE) over ( + partition by ID, CURRENCY, cast(NZD as {{ dbt_utils.type_string() }}) + order by DATE desc, _airbyte_emitted_at desc + ) as _airbyte_end_at, + lag(DATE) over ( + partition by ID, CURRENCY, cast(NZD as {{ dbt_utils.type_string() }}) + order by DATE desc, _airbyte_emitted_at desc + ) is null as _airbyte_active_row, + _airbyte_emitted_at, + _AIRBYTE_DEDUP_EXCHANGE_RATE_HASHID +from {{ ref('_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB4') }} +-- DEDUP_EXCHANGE_RATE from {{ source('TEST_NORMALIZATION', '_AIRBYTE_RAW_DEDUP_EXCHANGE_RATE') }} +where _airbyte_row_num = 1 + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_EXCHANGE_RATE.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_EXCHANGE_RATE.sql new file mode 100644 index 00000000000000..300d1926708aa8 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_tables/TEST_NORMALIZATION/TEST_NORMALIZATION_EXCHANGE_RATE.sql @@ -0,0 +1,14 @@ +{{ config(alias="EXCHANGE_RATE", schema="TEST_NORMALIZATION", tags=["top-level"]) }} +-- Final base SQL model +select + ID, + CURRENCY, + DATE, + HKD, + NZD, + USD, + _airbyte_emitted_at, + _AIRBYTE_EXCHANGE_RATE_HASHID +from {{ ref('_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB3') }} +-- EXCHANGE_RATE from {{ source('TEST_NORMALIZATION', '_AIRBYTE_RAW_EXCHANGE_RATE') }} + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB1.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB1.sql new file mode 100644 index 00000000000000..3d3bd5bd29233f --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB1.sql @@ -0,0 +1,13 @@ +{{ config(alias="DEDUP_EXCHANGE_RATE_AB1", schema="_AIRBYTE_TEST_NORMALIZATION", tags=["top-level-intermediate"]) }} +-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema +select + {{ json_extract_scalar('_airbyte_data', ['id']) }} as ID, + {{ json_extract_scalar('_airbyte_data', ['currency']) }} as CURRENCY, + {{ json_extract_scalar('_airbyte_data', ['date']) }} as DATE, + {{ json_extract_scalar('_airbyte_data', ['HKD']) }} as HKD, + {{ json_extract_scalar('_airbyte_data', ['NZD']) }} as NZD, + {{ json_extract_scalar('_airbyte_data', ['USD']) }} as USD, + _airbyte_emitted_at +from {{ source('TEST_NORMALIZATION', '_AIRBYTE_RAW_DEDUP_EXCHANGE_RATE') }} +-- DEDUP_EXCHANGE_RATE + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB2.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB2.sql new file mode 100644 index 00000000000000..fba0ab095b4e62 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB2.sql @@ -0,0 +1,13 @@ +{{ config(alias="DEDUP_EXCHANGE_RATE_AB2", schema="_AIRBYTE_TEST_NORMALIZATION", tags=["top-level-intermediate"]) }} +-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type +select + cast(ID as {{ dbt_utils.type_bigint() }}) as ID, + cast(CURRENCY as {{ dbt_utils.type_string() }}) as CURRENCY, + cast(DATE as {{ dbt_utils.type_string() }}) as DATE, + cast(HKD as {{ dbt_utils.type_float() }}) as HKD, + cast(NZD as {{ dbt_utils.type_float() }}) as NZD, + cast(USD as {{ dbt_utils.type_float() }}) as USD, + _airbyte_emitted_at +from {{ ref('_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB1') }} +-- DEDUP_EXCHANGE_RATE + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB3.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB3.sql new file mode 100644 index 00000000000000..d18f1f5ee60c46 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB3.sql @@ -0,0 +1,15 @@ +{{ config(alias="DEDUP_EXCHANGE_RATE_AB3", schema="_AIRBYTE_TEST_NORMALIZATION", tags=["top-level-intermediate"]) }} +-- SQL model to build a hash column based on the values of this record +select + *, + {{ dbt_utils.surrogate_key([ + 'ID', + 'CURRENCY', + 'DATE', + 'HKD', + 'NZD', + 'USD', + ]) }} as _AIRBYTE_DEDUP_EXCHANGE_RATE_HASHID +from {{ ref('_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB2') }} +-- DEDUP_EXCHANGE_RATE + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB4.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB4.sql new file mode 100644 index 00000000000000..1ff4cb78fc9b95 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB4.sql @@ -0,0 +1,11 @@ +{{ config(alias="DEDUP_EXCHANGE_RATE_AB4", schema="_AIRBYTE_TEST_NORMALIZATION", tags=["top-level-intermediate"]) }} +-- SQL model to prepare for deduplicating records based on the hash record column +select + *, + row_number() over ( + partition by _AIRBYTE_DEDUP_EXCHANGE_RATE_HASHID + order by _airbyte_emitted_at asc + ) as _airbyte_row_num +from {{ ref('_AIRBYTE_TEST_NORMALIZATION_DEDUP_EXCHANGE_RATE_AB3') }} +-- DEDUP_EXCHANGE_RATE from {{ source('TEST_NORMALIZATION', '_AIRBYTE_RAW_DEDUP_EXCHANGE_RATE') }} + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB1.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB1.sql new file mode 100644 index 00000000000000..e3971bdfbb63e4 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB1.sql @@ -0,0 +1,13 @@ +{{ config(alias="EXCHANGE_RATE_AB1", schema="_AIRBYTE_TEST_NORMALIZATION", tags=["top-level-intermediate"]) }} +-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema +select + {{ json_extract_scalar('_airbyte_data', ['id']) }} as ID, + {{ json_extract_scalar('_airbyte_data', ['currency']) }} as CURRENCY, + {{ json_extract_scalar('_airbyte_data', ['date']) }} as DATE, + {{ json_extract_scalar('_airbyte_data', ['HKD']) }} as HKD, + {{ json_extract_scalar('_airbyte_data', ['NZD']) }} as NZD, + {{ json_extract_scalar('_airbyte_data', ['USD']) }} as USD, + _airbyte_emitted_at +from {{ source('TEST_NORMALIZATION', '_AIRBYTE_RAW_EXCHANGE_RATE') }} +-- EXCHANGE_RATE + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB2.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB2.sql new file mode 100644 index 00000000000000..1db4712315bc86 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB2.sql @@ -0,0 +1,13 @@ +{{ config(alias="EXCHANGE_RATE_AB2", schema="_AIRBYTE_TEST_NORMALIZATION", tags=["top-level-intermediate"]) }} +-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type +select + cast(ID as {{ dbt_utils.type_bigint() }}) as ID, + cast(CURRENCY as {{ dbt_utils.type_string() }}) as CURRENCY, + cast(DATE as {{ dbt_utils.type_string() }}) as DATE, + cast(HKD as {{ dbt_utils.type_float() }}) as HKD, + cast(NZD as {{ dbt_utils.type_float() }}) as NZD, + cast(USD as {{ dbt_utils.type_float() }}) as USD, + _airbyte_emitted_at +from {{ ref('_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB1') }} +-- EXCHANGE_RATE + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB3.sql b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB3.sql new file mode 100644 index 00000000000000..c940068f591fe0 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/airbyte_views/TEST_NORMALIZATION/_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB3.sql @@ -0,0 +1,15 @@ +{{ config(alias="EXCHANGE_RATE_AB3", schema="_AIRBYTE_TEST_NORMALIZATION", tags=["top-level-intermediate"]) }} +-- SQL model to build a hash column based on the values of this record +select + *, + {{ dbt_utils.surrogate_key([ + 'ID', + 'CURRENCY', + 'DATE', + 'HKD', + 'NZD', + 'USD', + ]) }} as _AIRBYTE_EXCHANGE_RATE_HASHID +from {{ ref('_AIRBYTE_TEST_NORMALIZATION_EXCHANGE_RATE_AB2') }} +-- EXCHANGE_RATE + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/sources.yml b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/sources.yml new file mode 100644 index 00000000000000..69ac087346078d --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/snowflake/test_primary_key_streams/models/generated/sources.yml @@ -0,0 +1,10 @@ +version: 2 +sources: +- name: TEST_NORMALIZATION + quoting: + database: true + schema: false + identifier: false + tables: + - name: _AIRBYTE_RAW_DEDUP_EXCHANGE_RATE + - name: _AIRBYTE_RAW_EXCHANGE_RATE diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/resources/test_primary_key_streams/README.md b/airbyte-integrations/bases/base-normalization/integration_tests/resources/test_primary_key_streams/README.md new file mode 100644 index 00000000000000..8d0096bfa6fd4a --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/resources/test_primary_key_streams/README.md @@ -0,0 +1,12 @@ +# test_primary_key_streams + +This test suite is focusing on testing a stream of data similar to `source-exchangerates` using two different +`destination_sync_modes`: +- `incremental` + `overwrite` +- `incremental` + `append_dedup` + +To do so, we've setup two streams in the catalog.json and are using the exact same record messages data in both. + +Note that we are also making sure that one of the column used as primary key is of type `float` as this could be +an edge case using it as partition key on certain destinations. + diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/resources/test_primary_key_streams/data_input/catalog.json b/airbyte-integrations/bases/base-normalization/integration_tests/resources/test_primary_key_streams/data_input/catalog.json new file mode 100644 index 00000000000000..66f8351edc9557 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/resources/test_primary_key_streams/data_input/catalog.json @@ -0,0 +1,73 @@ +{ + "streams": [ + { + "stream": { + "name": "exchange_rate", + "json_schema": { + "type": ["null", "object"], + "properties": { + "id": { + "type": "integer" + }, + "currency": { + "type": "string" + }, + "date": { + "type": "string" + }, + "HKD": { + "type": "number" + }, + "NZD": { + "type": "number" + }, + "USD": { + "type": "number" + } + } + }, + "supported_sync_modes": ["incremental"], + "source_defined_cursor": true, + "default_cursor_field": [] + }, + "sync_mode": "incremental", + "cursor_field": [], + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "dedup_exchange_rate", + "json_schema": { + "type": ["null", "object"], + "properties": { + "id": { + "type": "integer" + }, + "currency": { + "type": "string" + }, + "date": { + "type": "string" + }, + "HKD": { + "type": "number" + }, + "NZD": { + "type": "number" + }, + "USD": { + "type": "number" + } + } + }, + "supported_sync_modes": ["incremental"], + "source_defined_cursor": true, + "default_cursor_field": [] + }, + "sync_mode": "incremental", + "cursor_field": ["date"], + "destination_sync_mode": "append_dedup", + "primary_key": [["id"], ["currency"], ["NZD"]] + } + ] +} diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/resources/test_primary_key_streams/data_input/messages.txt b/airbyte-integrations/bases/base-normalization/integration_tests/resources/test_primary_key_streams/data_input/messages.txt new file mode 100644 index 00000000000000..65f7f006890f5b --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/resources/test_primary_key_streams/data_input/messages.txt @@ -0,0 +1,15 @@ +{"type": "RECORD", "record": {"stream": "exchange_rate", "emitted_at": 1602637589000, "data": { "id": 1, "currency": "USD", "date": "2020-08-29T00:00:00Z", "NZD": 1.14, "HKD": 2.13}}} +{"type": "RECORD", "record": {"stream": "exchange_rate", "emitted_at": 1602637689100, "data": { "id": 1, "currency": "USD", "date": "2020-08-30T00:00:00Z", "NZD": 1.14, "HKD": 7.15}}} +{"type": "RECORD", "record": {"stream": "exchange_rate", "emitted_at": 1602637789200, "data": { "id": 2, "currency": "EUR", "date": "2020-08-31T00:00:00Z", "NZD": 3.89, "HKD": 7.12, "USD": 10.16}}} +{"type": "RECORD", "record": {"stream": "exchange_rate", "emitted_at": 1602637889300, "data": { "id": 2, "currency": "EUR", "date": "2020-08-31T00:00:00Z", "NZD": 1.14, "HKD": 7.99, "USD": 10.99}}} +{"type": "RECORD", "record": {"stream": "exchange_rate", "emitted_at": 1602637989400, "data": { "id": 2, "currency": "EUR", "date": "2020-09-01T00:00:00Z", "NZD": 2.43, "HKD": 8, "USD": 10.16}}} +{"type": "RECORD", "record": {"stream": "exchange_rate", "emitted_at": 1602637990700, "data": { "id": 1, "currency": "USD", "date": "2020-09-01T00:00:00Z", "NZD": 1.14, "HKD": 10.5}}} +{"type": "RECORD", "record": {"stream": "exchange_rate", "emitted_at": 1602637990800, "data": { "id": 2, "currency": "EUR", "date": "2020-09-01T00:00:00Z", "NZD": 2.43, "HKD": 5.4}}} + +{"type": "RECORD", "record": {"stream": "dedup_exchange_rate", "emitted_at": 1602637589000, "data": { "id": 1, "currency": "USD", "date": "2020-08-29T00:00:00Z", "NZD": 1.14, "HKD": 2.13}}} +{"type": "RECORD", "record": {"stream": "dedup_exchange_rate", "emitted_at": 1602637689100, "data": { "id": 1, "currency": "USD", "date": "2020-08-30T00:00:00Z", "NZD": 1.14, "HKD": 7.15}}} +{"type": "RECORD", "record": {"stream": "dedup_exchange_rate", "emitted_at": 1602637789200, "data": { "id": 2, "currency": "EUR", "date": "2020-08-31T00:00:00Z", "NZD": 3.89, "HKD": 7.12, "USD": 10.16}}} +{"type": "RECORD", "record": {"stream": "dedup_exchange_rate", "emitted_at": 1602637889300, "data": { "id": 2, "currency": "EUR", "date": "2020-08-31T00:00:00Z", "NZD": 1.14, "HKD": 7.99, "USD": 10.99}}} +{"type": "RECORD", "record": {"stream": "dedup_exchange_rate", "emitted_at": 1602637989400, "data": { "id": 2, "currency": "EUR", "date": "2020-09-01T00:00:00Z", "NZD": 2.43, "HKD": 8, "USD": 10.16}}} +{"type": "RECORD", "record": {"stream": "dedup_exchange_rate", "emitted_at": 1602637990700, "data": { "id": 1, "currency": "USD", "date": "2020-09-01T00:00:00Z", "NZD": 1.14, "HKD": 10.5}}} +{"type": "RECORD", "record": {"stream": "dedup_exchange_rate", "emitted_at": 1602637990800, "data": { "id": 2, "currency": "EUR", "date": "2020-09-01T00:00:00Z", "NZD": 2.43, "HKD": 5.4}}} diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/resources/test_primary_key_streams/dbt_data_tests/test_check_row_counts.sql b/airbyte-integrations/bases/base-normalization/integration_tests/resources/test_primary_key_streams/dbt_data_tests/test_check_row_counts.sql new file mode 100644 index 00000000000000..6cf69397d7c5d5 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/resources/test_primary_key_streams/dbt_data_tests/test_check_row_counts.sql @@ -0,0 +1,21 @@ +with table_row_counts as ( + select distinct count(*) as row_count, 7 as expected_count + from {{ source('test_normalization', '_airbyte_raw_exchange_rate') }} +union all + select distinct count(*) as row_count, 7 as expected_count + from {{ ref('test_normalization_exchange_rate') }} + +union all + + select distinct count(*) as row_count, 7 as expected_count + from {{ source('test_normalization', '_airbyte_raw_dedup_exchange_rate') }} +union all + select distinct count(*) as row_count, 7 as expected_count + from {{ ref('test_normalization_dedup_exchange_rate_scd') }} +union all + select distinct count(*) as row_count, 4 as expected_count + from {{ ref('test_normalization_dedup_exchange_rate') }} +) +select * +from table_row_counts +where row_count != expected_count diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/resources/test_primary_key_streams/dbt_schema_tests/schema_test.yml b/airbyte-integrations/bases/base-normalization/integration_tests/resources/test_primary_key_streams/dbt_schema_tests/schema_test.yml new file mode 100644 index 00000000000000..0efe4bcd49df09 --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/resources/test_primary_key_streams/dbt_schema_tests/schema_test.yml @@ -0,0 +1,33 @@ +version: 2 + +models: + - name: test_normalization_exchange_rate + tests: + - dbt_utils.equality: + description: check_streams_are_equal + In this integration test, we are sending the same records to both streams + exchange_rate and dedup_exchange_rate. + The SCD table of dedup_exchange_rate in append_dedup mode should therefore mirror + the final table with append or overwrite mode from exchange_rate. + compare_model: ref('test_normalization_dedup_exchange_rate_scd') + compare_columns: + - id + - currency + - date + - HKD + - NZD + - USD + - dbt_utils.equal_rowcount: + description: check_raw_and_normalized_rowcounts + Raw and normalized tables should be equal. + compare_model: source('test_normalization', '_airbyte_raw_exchange_rate') + + - name: test_normalization_dedup_exchange_rate + tests: + - dbt_utils.unique_combination_of_columns: + description: check_deduplication_by_primary_key + The final table for this stream should have unique composite primary key values. + combination_of_columns: + - id + - currency + - NZD diff --git a/airbyte-integrations/bases/base-normalization/integration_tests/test_normalization.py b/airbyte-integrations/bases/base-normalization/integration_tests/test_normalization.py new file mode 100644 index 00000000000000..e8c8489392e33d --- /dev/null +++ b/airbyte-integrations/bases/base-normalization/integration_tests/test_normalization.py @@ -0,0 +1,450 @@ +# MIT License +# +# Copyright (c) 2020 Airbyte +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + + +""" +MIT License + +Copyright (c) 2020 Airbyte + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +""" + + +import json +import os +import pathlib +import random +import re +import shutil +import socket +import string +import subprocess +import sys +import tempfile +import threading +from typing import Any, Dict, List + +import pytest +from normalization.destination_type import DestinationType +from normalization.transform_catalog.catalog_processor import CatalogProcessor +from normalization.transform_config.transform import TransformConfig + +temporary_folders = set() +target_schema = "test_normalization" +container_name = "test_normalization_db_" + "".join(random.choice(string.ascii_lowercase) for i in range(3)) + +# dbt models and final sql outputs from the following git versioned tests will be written in a folder included in +# airbyte git repository. +git_versioned_tests = ["test_primary_key_streams"] + + +@pytest.fixture(scope="package", autouse=True) +def before_all_tests(request): + change_current_test_dir(request) + setup_postgres_db() + os.environ["PATH"] = os.path.abspath("../.venv/bin/") + ":" + os.environ["PATH"] + print("Installing dbt dependencies packages\nExecuting: cd ../dbt-project-template/\nExecuting: dbt deps") + subprocess.call(["dbt", "deps"], cwd="../dbt-project-template/", env=os.environ) + yield + tear_down_postgres_db() + for folder in temporary_folders: + print(f"Deleting temporary test folder {folder}") + shutil.rmtree(folder, ignore_errors=True) + + +@pytest.fixture +def setup_test_path(request): + change_current_test_dir(request) + print(f"Running from: {pathlib.Path().absolute()}") + print(f"Current PATH is: {os.environ['PATH']}") + yield + os.chdir(request.config.invocation_dir) + + +@pytest.mark.parametrize( + "test_resource_name", + set( + git_versioned_tests + + [ + # Non-versioned tests outputs below will be written to /tmp folders instead + ] + ), +) +@pytest.mark.parametrize( + "integration_type", + [ + "Postgres", + "BigQuery", + "Snowflake", + "Redshift", + ], +) +def test_normalization(integration_type: str, test_resource_name: str, setup_test_path): + print("Testing normalization") + destination_type = DestinationType.from_string(integration_type) + # Create the test folder with dbt project and appropriate destination settings to run integration tests from + test_root_dir = setup_test_dir(integration_type, test_resource_name) + destination_config = generate_profile_yaml_file(destination_type, test_root_dir) + # Use destination connector to create _airbyte_raw_* tables to use as input for the test + assert setup_input_raw_data(integration_type, test_resource_name, test_root_dir, destination_config) + # Normalization step + generate_dbt_models(destination_type, test_resource_name, test_root_dir) + dbt_run(test_root_dir) + # Run checks on Tests results + dbt_test(destination_type, test_resource_name, test_root_dir) + check_outputs(destination_type, test_resource_name, test_root_dir) + + +def setup_postgres_db(): + print("Starting localhost postgres container for tests") + port = find_free_port() + config = { + "host": "localhost", + "username": "integration-tests", + "password": "integration-tests", + "port": port, + "database": "postgres", + "schema": target_schema, + } + commands = [ + "docker", + "run", + "--rm", + "--name", + f"{container_name}", + "-e", + f"POSTGRES_USER={config['username']}", + "-e", + f"POSTGRES_PASSWORD={config['password']}", + "-p", + f"{config['port']}:5432", + "-d", + "postgres", + ] + print("Executing: ", " ".join(commands)) + subprocess.call(commands) + if not os.path.exists("../secrets"): + os.makedirs("../secrets") + with open("../secrets/postgres.json", "w") as fh: + fh.write(json.dumps(config)) + + +def find_free_port(): + """ + Find an unused port to create a database listening on localhost to run destination-postgres + """ + s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + s.bind(("", 0)) + addr = s.getsockname() + s.close() + return addr[1] + + +def tear_down_postgres_db(): + print("Stopping localhost postgres container for tests") + try: + subprocess.call(["docker", "kill", f"{container_name}"]) + os.remove("../secrets/postgres.json") + except Exception as e: + print(f"WARN: Exception while shutting down postgres db: {e}") + + +def change_current_test_dir(request): + # This makes the test run whether it is executed from the tests folder (with pytest/gradle) or from the base-normalization folder (through pycharm) + integration_tests_dir = os.path.join(request.fspath.dirname, "integration_tests") + if os.path.exists(integration_tests_dir): + os.chdir(integration_tests_dir) + else: + os.chdir(request.fspath.dirname) + + +def setup_test_dir(integration_type: str, test_resource_name: str) -> str: + """ + We prepare a clean folder to run the tests from. + + if the test_resource_name is part of git_versioned_tests, then dbt models and final sql outputs + will be written to a folder included in airbyte git repository. + + Non-versioned tests will be written in /tmp folders instead. + + The purpose is to keep track of a small set of downstream changes on selected integration tests cases. + - generated dbt models created by normalization script from an input destination_catalog.json + - final output sql files created by dbt CLI from the generated dbt models (dbt models are sql files with jinja templating, + these are interpreted and compiled into the native SQL dialect of the final destination engine) + """ + if test_resource_name in git_versioned_tests: + test_root_dir = f"{pathlib.Path().absolute()}/normalization_test_output/{integration_type.lower()}" + else: + test_root_dir = tempfile.mkdtemp(dir="/tmp/", prefix="normalization_test_", suffix=f"_{integration_type.lower()}") + temporary_folders.add(test_root_dir) + shutil.rmtree(test_root_dir, ignore_errors=True) + os.makedirs(test_root_dir) + test_root_dir = f"{test_root_dir}/{test_resource_name}" + print(f"Setting up test folder {test_root_dir}") + shutil.copytree("../dbt-project-template", test_root_dir) + # Prefer 'view' to 'ephemeral' for tests so it's easier to debug with dbt + copy_replace( + "../dbt-project-template/dbt_project.yml", os.path.join(test_root_dir, "dbt_project.yml"), pattern="ephemeral", replace_value="view" + ) + return test_root_dir + + +def generate_profile_yaml_file(destination_type: DestinationType, test_root_dir: str) -> Dict[str, Any]: + """ + Each destination requires different settings to connect to. This step generates the adequate profiles.yml + as described here: https://docs.getdbt.com/reference/profiles.yml + """ + config_generator = TransformConfig() + profiles_config = config_generator.read_json_config(f"../secrets/{destination_type.value.lower()}.json") + # Adapt credential file to look like destination config.json + if destination_type.value == DestinationType.BIGQUERY.value: + profiles_config["credentials_json"] = json.dumps(profiles_config) + profiles_config["dataset_id"] = target_schema + else: + profiles_config["schema"] = target_schema + profiles_yaml = config_generator.transform(destination_type, profiles_config) + config_generator.write_yaml_config(test_root_dir, profiles_yaml) + return profiles_config + + +def setup_input_raw_data(integration_type: str, test_resource_name: str, test_root_dir: str, destination_config: Dict[str, Any]) -> bool: + """ + We run docker images of destinations to upload test data stored in the messages.txt file for each test case. + This should populate the associated "raw" tables from which normalization is reading from when running dbt CLI. + """ + catalog_file = os.path.join("resources", test_resource_name, "data_input", "catalog.json") + message_file = os.path.join("resources", test_resource_name, "data_input", "messages.txt") + copy_replace( + catalog_file, + os.path.join(test_root_dir, "reset_catalog.json"), + pattern='"destination_sync_mode": ".*"', + replace_value='"destination_sync_mode": "overwrite"', + ) + copy_replace(catalog_file, os.path.join(test_root_dir, "destination_catalog.json")) + config_file = os.path.join(test_root_dir, "destination_config.json") + with open(config_file, "w") as f: + f.write(json.dumps(destination_config)) + commands = [ + "docker", + "run", + "--rm", + "--init", + "-v", + f"{test_root_dir}:/data", + "--network", + "host", + "-i", + f"airbyte/destination-{integration_type.lower()}:dev", + "write", + "--config", + "/data/destination_config.json", + "--catalog", + ] + # Force a reset in destination raw tables + assert run_destination_process("", test_root_dir, commands + ["/data/reset_catalog.json"]) + # Run a sync to create raw tables in destinations + return run_destination_process(message_file, test_root_dir, commands + ["/data/destination_catalog.json"]) + + +def run_destination_process(message_file: str, test_root_dir: str, commands: List[str]): + print("Executing: ", " ".join(commands)) + with open(os.path.join(test_root_dir, "destination_output.log"), "ab") as f: + process = subprocess.Popen(commands, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + + def writer(): + if os.path.exists(message_file): + with open(message_file, "rb") as input_data: + while True: + line = input_data.readline() + if not line: + break + process.stdin.write(line) + process.stdin.close() + + thread = threading.Thread(target=writer) + thread.start() + for line in iter(process.stdout.readline, b""): + f.write(line) + sys.stdout.write(line.decode("utf-8")) + thread.join() + process.wait() + return process.returncode == 0 + + +def generate_dbt_models(destination_type: DestinationType, test_resource_name: str, test_root_dir: str): + """ + This is the normalization step generating dbt models files from the destination_catalog.json taken as input. + """ + catalog_processor = CatalogProcessor(os.path.join(test_root_dir, "models", "generated"), destination_type) + catalog_processor.process(os.path.join("resources", test_resource_name, "data_input", "catalog.json"), "_airbyte_data", target_schema) + + +def dbt_run(test_root_dir: str): + """ + Run the dbt CLI to perform transformations on the test raw data in the destination + """ + # Perform sanity check on dbt project settings + assert run_check_command(["dbt", "debug", "--profiles-dir=.", "--project-dir=."], test_root_dir) + # Compile dbt models files into destination sql dialect, then run the transformation queries + assert run_check_command(["dbt", "run", "--profiles-dir=.", "--project-dir=."], test_root_dir) + # Copy final SQL files to persist them in git + final_sql_files = os.path.join(test_root_dir, "final") + shutil.rmtree(final_sql_files, ignore_errors=True) + shutil.copytree(os.path.join(test_root_dir, "..", "build", "run", "airbyte_utils", "models", "generated"), final_sql_files) + + +def dbt_test(destination_type: DestinationType, test_resource_name: str, test_root_dir: str): + """ + dbt provides a way to run dbt tests as described here: https://docs.getdbt.com/docs/building-a-dbt-project/tests + - Schema tests are added in .yml files from the schema_tests directory + - see additional macros for testing here: https://github.com/fishtown-analytics/dbt-utils#schema-tests + - Data tests are added in .sql files from the data_tests directory and should return 0 records to be successful + + We use this mechanism to verify the output of our integration tests. + """ + copy_test_files( + os.path.join("resources", test_resource_name, "dbt_schema_tests"), + os.path.join(test_root_dir, "models/dbt_schema_tests"), + destination_type, + ) + copy_test_files(os.path.join("resources", test_resource_name, "dbt_data_tests"), os.path.join(test_root_dir, "tests"), destination_type) + assert run_check_command(["dbt", "test", "--profiles-dir=.", "--project-dir=."], test_root_dir) + + +def run_check_command(commands: List[str], cwd: str) -> bool: + """ + Run dbt subprocess while checking and counting for "ERROR" or "FAIL" printed in its outputs + """ + error_count = 0 + print("Executing: ", " ".join(commands)) + with open(os.path.join(cwd, "dbt_output.log"), "ab") as f: + process = subprocess.Popen(commands, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=os.environ) + for line in iter(process.stdout.readline, b""): + f.write(line) + str_line = line.decode("utf-8") + sys.stdout.write(str_line) + if ("ERROR" in str_line or "FAIL" in str_line) and "Done." not in str_line and "PASS=" not in str_line: + # count lines mentionning ERROR (but ignore the one from dbt run summary) + error_count += 1 + process.wait() + print(f"{' '.join(commands)}\n\tterminated with return code {process.returncode} with {error_count} 'ERROR' mention(s).") + if error_count > 0: + return False + return process.returncode == 0 + + +def check_outputs(destination_type: DestinationType, test_resource_name: str, test_root_dir: str): + """ + Implement other types of checks on the output directory (grepping, diffing files etc?) + """ + print("Checking test outputs") + + +def copy_replace(src, dst, pattern=None, replace_value=None): + """ + Copies a file from src to dst replacing pattern by replace_value + Parameters + ---------- + src : string + Path to the source filename to copy from + dst : string + Path to the output filename to copy to + pattern + list of Patterns to replace inside the src file + replace_value + list of Values to replace by in the dst file + """ + file1 = open(src, "r") if isinstance(src, str) else src + file2 = open(dst, "w") if isinstance(dst, str) else dst + pattern = [pattern] if isinstance(pattern, str) else pattern + replace_value = [replace_value] if isinstance(replace_value, str) else replace_value + if replace_value and pattern: + if len(replace_value) != len(pattern): + raise Exception("Invalid parameters: pattern and replace_value" " have different sizes.") + rules = [(re.compile(regex, re.IGNORECASE), value) for regex, value in zip(pattern, replace_value)] + else: + rules = [] + for line in file1: + if rules: + for rule in rules: + line = re.sub(rule[0], rule[1], line) + file2.write(line) + if isinstance(src, str): + file1.close() + if isinstance(dst, str): + file2.close() + + +def copy_test_files(src: str, dst: str, destination_type: DestinationType): + """ + Copy file while hacking snowflake identifiers that needs to be uppercased... + (so we can share these dbt tests files accross destinations) + """ + if os.path.exists(src): + if destination_type.value == DestinationType.SNOWFLAKE.value: + shutil.copytree(src, dst, copy_function=copy_snowflake) + else: + shutil.copytree(src, dst) + + +def copy_snowflake(src, dst): + print(src, "->", dst) + copy_replace( + src, + dst, + pattern=[ + r"(- name:) *(.*)", + r"(ref\(')(.*)('\))", + r"(source\(')(.*)('\))", + ], + replace_value=[ + to_snowflake_identifier, + to_snowflake_identifier, + to_snowflake_identifier, + ], + ) + + +def to_snowflake_identifier(input: re.Match) -> str: + if len(input.groups()) == 2: + return f"{input.group(1)} {input.group(2).upper()}" + elif len(input.groups()) == 3: + return f"{input.group(1)}{input.group(2).upper()}{input.group(3)}" + else: + raise Exception(f"Unexpected number of groups in {input}") diff --git a/airbyte-integrations/bases/base-normalization/normalization/transform_catalog/catalog_processor.py b/airbyte-integrations/bases/base-normalization/normalization/transform_catalog/catalog_processor.py index c2c7c044a2b083..25613d9fe955e4 100644 --- a/airbyte-integrations/bases/base-normalization/normalization/transform_catalog/catalog_processor.py +++ b/airbyte-integrations/bases/base-normalization/normalization/transform_catalog/catalog_processor.py @@ -178,10 +178,11 @@ def write_yaml_sources_file(self, schema_to_source_tables: Dict[str, Set[str]]): Generate the sources.yaml file as described in https://docs.getdbt.com/docs/building-a-dbt-project/using-sources/ """ schemas = [] - for schema in schema_to_source_tables: + for entry in sorted(schema_to_source_tables.items(), key=lambda kv: kv[0]): + schema = entry[0] quoted_schema = self.name_transformer.needs_quotes(schema) tables = [] - for source in schema_to_source_tables[schema]: + for source in sorted(schema_to_source_tables[schema]): if quoted_schema: tables.append({"name": source, "quoting": {"identifier": True}}) else: @@ -200,7 +201,7 @@ def write_yaml_sources_file(self, schema_to_source_tables: Dict[str, Set[str]]): source_config = {"version": 2, "sources": schemas} source_path = os.path.join(self.output_directory, "sources.yml") with open(source_path, "w") as fh: - fh.write(yaml.dump(source_config)) + fh.write(yaml.dump(source_config, sort_keys=False)) # Static Functions diff --git a/airbyte-integrations/bases/base-normalization/normalization/transform_catalog/stream_processor.py b/airbyte-integrations/bases/base-normalization/normalization/transform_catalog/stream_processor.py index 559bb1b324fa70..bcbffe06fd77f9 100644 --- a/airbyte-integrations/bases/base-normalization/normalization/transform_catalog/stream_processor.py +++ b/airbyte-integrations/bases/base-normalization/normalization/transform_catalog/stream_processor.py @@ -523,9 +523,9 @@ def get_primary_key_from_path(self, column_names: Dict[str, Tuple[str, str]], pa property_type = self.properties[field]["type"] else: property_type = "object" - if is_number(property_type) or is_boolean(property_type) or is_array(property_type) or is_object(property_type): - # some destinations don't handle float columns (or other types) as primary keys, turn everything to string - return f"cast({jinja_call(self.safe_cast_to_string(self.properties[field], column_names[field][1]))} as {jinja_call('dbt_utils.type_string()')})" + if is_number(property_type) or is_object(property_type): + # some destinations don't handle float columns (or complex types) as primary keys, turn them to string + return f"cast({column_names[field][0]} as {jinja_call('dbt_utils.type_string()')})" else: return column_names[field][0] else: @@ -770,6 +770,17 @@ def hash_name(input: str) -> str: def get_table_name(name_transformer: DestinationNameTransformer, parent: str, child: str, suffix: str, json_path: List[str]) -> str: + """ + In normalization code base, we often have to deal with naming for tables, combining informations from: + - parent table: to denote where a table is extracted from (in case of nesting) + - child table: in case of nesting, the field name or the original stream name + - extra suffix: normalization is done in multiple transformation steps, each may need to generate separate tables, + so we can add a suffix to distinguish the different transformation steps of a pipeline. + - json path: in terms of parent and nested field names in order to reach the table currently being built + + All these informations should be included (if possible) in the table naming for the user to (somehow) identify and + recognize what data is available there. + """ max_length = name_transformer.get_name_max_length() - 2 # less two for the underscores json_path_hash = hash_json_path(json_path) norm_suffix = suffix if not suffix or suffix.startswith("_") else f"_{suffix}" diff --git a/airbyte-integrations/bases/base-normalization/normalization/transform_config/transform.py b/airbyte-integrations/bases/base-normalization/normalization/transform_config/transform.py index a91ae8637dc704..e6e7e20b09d7d2 100644 --- a/airbyte-integrations/bases/base-normalization/normalization/transform_config/transform.py +++ b/airbyte-integrations/bases/base-normalization/normalization/transform_config/transform.py @@ -68,11 +68,11 @@ def transform(self, integration_type: DestinationType, config: dict): ) transformed_integration_config = { - DestinationType.bigquery: self.transform_bigquery, - DestinationType.postgres: self.transform_postgres, - DestinationType.redshift: self.transform_redshift, - DestinationType.snowflake: self.transform_snowflake, - }[integration_type](config) + DestinationType.bigquery.value: self.transform_bigquery, + DestinationType.postgres.value: self.transform_postgres, + DestinationType.redshift.value: self.transform_redshift, + DestinationType.snowflake.value: self.transform_snowflake, + }[integration_type.value](config) # merge pre-populated base_profile with destination-specific configuration. base_profile["normalize"]["outputs"]["prod"] = transformed_integration_config diff --git a/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog.json b/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog.json deleted file mode 100644 index d98edbcf5e648d..00000000000000 --- a/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog.json +++ /dev/null @@ -1,11031 +0,0 @@ -{ - "streams": [ - { - "stream": { - "name": "subscription_changes", - "json_schema": { - "type": "object", - "properties": { - "changes": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "change": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "portalId": { "type": ["null", "integer"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - }, - "changeType": { "type": ["null", "string"] }, - "causedByEvent": { - "type": ["null", "object"], - "properties": { - "id": { "type": ["null", "string"] }, - "created": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "subscriptionId": { "type": ["null", "integer"] } - } - } - }, - "portalId": { "type": ["null", "integer"] }, - "recipient": { "type": ["null", "string"] }, - "timestamp": { "type": ["null", "string"], "format": "date-time" } - } - }, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["startTimestamp"] - }, - "sync_mode": "incremental", - "cursor_field": ["startTimestamp"], - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "email_events", - "json_schema": { - "type": "object", - "properties": { - "id": { "type": ["null", "string"] }, - "url": { "type": ["null", "string"] }, - "from": { "type": ["null", "string"] }, - "hmid": { "type": ["null", "string"] }, - "type": { "type": ["null", "string"] }, - "appId": { "type": ["null", "integer"] }, - "linkId": { "type": ["null", "integer"] }, - "sentBy": { - "type": ["null", "object"], - "properties": { - "id": { "type": ["null", "string"] }, - "created": { "type": ["null", "string"], "format": "date-time" } - } - }, - "smtpId": { "type": ["null", "string"] }, - "appName": { "type": ["null", "string"] }, - "browser": { - "type": ["null", "object"], - "properties": { - "url": { "type": ["null", "string"] }, - "name": { "type": ["null", "string"] }, - "type": { "type": ["null", "string"] }, - "family": { "type": ["null", "string"] }, - "producer": { "type": ["null", "string"] }, - "producerUrl": { "type": ["null", "string"] } - } - }, - "created": { "type": ["null", "string"], "format": "date-time" }, - "subject": { "type": ["null", "string"] }, - "duration": { "type": ["null", "integer"] }, - "location": { - "type": ["null", "object"], - "properties": { - "city": { "type": ["null", "string"] }, - "state": { "type": ["null", "string"] }, - "country": { "type": ["null", "string"] } - } - }, - "portalId": { "type": ["null", "integer"] }, - "response": { "type": ["null", "string"] }, - "ipAddress": { "type": ["null", "string"] }, - "recipient": { "type": ["null", "string"] }, - "userAgent": { "type": ["null", "string"] }, - "deviceType": { "type": ["null", "string"] }, - "filteredEvent": { "type": ["null", "boolean"] }, - "emailCampaignId": { "type": ["null", "integer"] }, - "emailCampaignGroupId": { "type": ["null", "integer"] } - } - }, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["startTimestamp"] - }, - "sync_mode": "incremental", - "cursor_field": ["startTimestamp"], - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "forms", - "json_schema": { - "type": "object", - "properties": { - "guid": { "type": ["null", "string"] }, - "name": { "type": ["null", "string"] }, - "tmsId": { "type": ["null", "string"] }, - "action": { "type": ["null", "string"] }, - "method": { "type": ["null", "string"] }, - "cssClass": { "type": ["null", "string"] }, - "editable": { "type": ["null", "boolean"] }, - "formType": { "type": ["null", "string"] }, - "metaData": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { "type": ["null", "string"] }, - "value": { "type": ["null", "string"] } - } - } - }, - "portalId": { "type": ["null", "integer"] }, - "redirect": { "type": ["null", "string"] }, - "cloneable": { "type": ["null", "boolean"] }, - "createdAt": { "type": ["null", "string"], "format": "date-time" }, - "deletable": { "type": ["null", "boolean"] }, - "deletedAt": { "type": ["null", "integer"] }, - "updatedAt": { "type": ["null", "string"], "format": "date-time" }, - "followUpId": { "type": ["null", "string"] }, - "submitText": { "type": ["null", "string"] }, - "campaignGuid": { "type": ["null", "string"] }, - "migratedFrom": { "type": ["null", "string"] }, - "inlineMessage": { "type": ["null", "string"] }, - "captchaEnabled": { "type": ["null", "boolean"] }, - "formFieldGroups": { - "type": "array", - "items": { - "type": "object", - "properties": { - "fields": { - "type": "array", - "items": { - "type": "object", - "properties": { - "name": { "type": ["null", "string"] }, - "type": { "type": ["null", "string"] }, - "label": { "type": ["null", "string"] }, - "hidden": { "type": ["null", "boolean"] }, - "enabled": { "type": ["null", "boolean"] }, - "options": { - "type": "array", - "items": { - "type": "object", - "properties": { - "label": { "type": ["null", "string"] }, - "value": { "type": ["null", "string"] }, - "hidden": { "type": ["null", "boolean"] }, - "readOnly": { "type": ["null", "boolean"] }, - "doubleData": { "type": ["null", "number"] }, - "description": { "type": ["null", "string"] }, - "displayOrder": { "type": ["null", "integer"] } - } - } - }, - "required": { "type": ["null", "boolean"] }, - "fieldType": { "type": ["null", "string"] }, - "groupName": { "type": ["null", "string"] }, - "validation": { - "type": "object", - "properties": { - "data": { "type": ["null", "string"] }, - "name": { "type": ["null", "string"] }, - "message": { "type": ["null", "string"] }, - "useDefaultBlockList": { - "type": ["null", "boolean"] - }, - "blockedEmailAddresses": { - "type": "array", - "items": { "type": ["null", "string"] } - } - } - }, - "description": { "type": ["null", "string"] }, - "labelHidden": { "type": ["null", "boolean"] }, - "placeholder": { "type": ["null", "string"] }, - "defaultValue": { "type": ["null", "string"] }, - "displayOrder": { "type": ["null", "integer"] }, - "isSmartField": { "type": ["null", "boolean"] }, - "selectedOptions": { - "type": "array", - "items": { "type": ["null", "string"] } - }, - "unselectedLabel": { "type": ["null", "string"] } - } - } - }, - "default": { "type": ["null", "boolean"] }, - "richText": { - "type": "object", - "properties": { "content": { "type": ["null", "string"] } } - }, - "isSmartGroup": { "type": ["null", "boolean"] } - } - } - }, - "performableHtml": { "type": ["null", "string"] }, - "notifyRecipients": { "type": ["null", "string"] }, - "ignoreCurrentValues": { "type": ["null", "boolean"] }, - "leadNurturingCampaignId": { "type": ["null", "string"] } - } - }, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["updatedAt"] - }, - "sync_mode": "incremental", - "cursor_field": ["updatedAt"], - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "workflows", - "json_schema": { - "type": "object", - "properties": { - "id": { "type": ["null", "integer"] }, - "name": { "type": ["null", "string"] }, - "type": { "type": ["null", "string"] }, - "enabled": { "type": ["null", "boolean"] }, - "updatedAt": { "type": ["null", "string"], "format": "date-time" }, - "insertedAt": { "type": ["null", "string"], "format": "date-time" }, - "personaTagIds": { - "type": "array", - "items": { "type": "integer" } - }, - "contactListIds": { - "type": "object", - "properties": { - "steps": { - "type": ["null", "array"], - "items": { "type": ["null", "string"] } - }, - "active": { "type": ["null", "integer"] }, - "enrolled": { "type": ["null", "integer"] } - } - } - } - }, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["updatedAt"] - }, - "sync_mode": "incremental", - "cursor_field": ["updatedAt"], - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "owners", - "json_schema": { - "type": "object", - "properties": { - "type": { "type": ["null", "string"] }, - "email": { "type": ["null", "string"] }, - "ownerId": { "type": ["null", "integer"] }, - "isActive": { "type": ["null", "boolean"] }, - "lastName": { "type": ["null", "string"] }, - "portalId": { "type": ["null", "integer"] }, - "createdAt": { "type": ["null", "string"], "format": "date-time" }, - "firstName": { "type": ["null", "string"] }, - "signature": { "type": ["null", "string"] }, - "updatedAt": { "type": ["null", "string"], "format": "date-time" }, - "remoteList": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { "type": ["null", "integer"] }, - "active": { "type": ["null", "boolean"] }, - "ownerId": { "type": ["null", "integer"] }, - "portalId": { "type": ["null", "integer"] }, - "remoteId": { "type": ["null", "string"] }, - "remoteType": { "type": ["null", "string"] } - } - } - }, - "activeUserId": { "type": ["null", "integer"] }, - "hasContactsAccess": { "type": ["null", "boolean"] }, - "userIdIncludingInactive": { "type": ["null", "integer"] } - } - }, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["updatedAt"] - }, - "sync_mode": "incremental", - "cursor_field": ["updatedAt"], - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "campaigns", - "json_schema": { - "type": "object", - "properties": { - "id": { "type": ["null", "integer"] }, - "name": { "type": ["null", "string"] }, - "type": { "type": ["null", "string"] }, - "appId": { "type": ["null", "integer"] }, - "appName": { "type": ["null", "string"] }, - "subType": { "type": ["null", "string"] }, - "subject": { "type": ["null", "string"] }, - "counters": { - "type": ["null", "object"], - "properties": { - "open": { "type": ["null", "integer"] }, - "sent": { "type": ["null", "integer"] }, - "click": { "type": ["null", "integer"] }, - "print": { "type": ["null", "integer"] }, - "reply": { "type": ["null", "integer"] }, - "bounce": { "type": ["null", "integer"] }, - "dropped": { "type": ["null", "integer"] }, - "forward": { "type": ["null", "integer"] }, - "deferred": { "type": ["null", "integer"] }, - "delivered": { "type": ["null", "integer"] }, - "processed": { "type": ["null", "integer"] }, - "delievered": { "type": ["null", "integer"] }, - "spamreport": { "type": ["null", "integer"] }, - "suppressed": { "type": ["null", "integer"] }, - "mta_dropped": { "type": ["null", "integer"] }, - "statuschange": { "type": ["null", "integer"] }, - "unsubscribed": { "type": ["null", "integer"] } - } - }, - "contentId": { "type": ["null", "integer"] }, - "numQueued": { "type": ["null", "integer"] }, - "numIncluded": { "type": ["null", "integer"] } - } - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false, - "default_cursor_field": [] - }, - "sync_mode": "full_refresh", - "cursor_field": [], - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "contact_lists", - "json_schema": { - "type": "object", - "properties": { - "name": { "type": ["null", "string"] }, - "listId": { "type": ["null", "integer"] }, - "dynamic": { "type": ["null", "boolean"] }, - "filters": { - "type": "array", - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "type": { "type": ["null", "string"] }, - "value": { "type": ["null", "string"] }, - "operator": { "type": ["null", "string"] }, - "property": { "type": ["null", "string"] }, - "filterFamily": { "type": ["null", "string"] }, - "withinTimeMode": { "type": ["null", "string"] }, - "checkPastVersions": { "type": ["null", "boolean"] } - } - } - } - }, - "archived": { "type": ["null", "boolean"] }, - "listType": { "type": ["null", "string"] }, - "metaData": { - "type": "object", - "properties": { - "size": { "type": ["null", "integer"] }, - "error": { "type": ["null", "string"] }, - "processing": { "type": ["null", "string"] }, - "lastSizeChangeAt": { - "type": ["null", "string"], - "format": "date-time" - }, - "lastProcessingStateChangeAt": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "parentId": { "type": ["null", "integer"] }, - "portalId": { "type": ["null", "integer"] }, - "readOnly": { "type": ["null", "boolean"] }, - "createdAt": { "type": ["null", "string"], "format": "date-time" }, - "updatedAt": { "type": ["null", "string"], "format": "date-time" }, - "deleteable": { "type": ["null", "boolean"] }, - "internalListId": { "type": ["null", "integer"] } - } - }, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["updatedAt"] - }, - "sync_mode": "incremental", - "cursor_field": ["updatedAt"], - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "contacts", - "json_schema": { - "type": "object", - "properties": { - "vid": { "type": ["null", "integer"] }, - "portal-id": { "type": ["null", "integer"] }, - "is-contact": { "type": ["null", "boolean"] }, - "properties": { - "type": "object", - "properties": { - "fax": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "zip": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "city": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "email": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "phone": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "state": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "degree": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "gender": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "school": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "address": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "company": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "country": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "ip_city": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "message": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "website": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "industry": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "ip_state": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "jobtitle": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "lastname": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "closedate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "firstname": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "ip_latlon": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "num_notes": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "seniority": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "createdate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_persona": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "ip_country": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "ip_zipcode": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "salutation": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "start_date": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "work_email": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_language": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "mobilephone": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "company_size": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_object_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_testpurge": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hubspotscore": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "job_function": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "numemployees": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "annualrevenue": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "date_of_birth": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "days_to_close": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_createdate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_email_open": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_is_contact": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "ip_state_code": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "total_revenue": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "twitterhandle": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "field_of_study": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_buying_role": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_email_click": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_ip_timezone": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_is_unworked": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "hs_lead_status": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_legal_basis": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "lifecyclestage": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "marital_status": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "graduation_date": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_all_team_ids": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_email_bounce": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_email_domain": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_email_optout": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "hs_testrollback": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hubspot_team_id": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "ip_country_code": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "military_status": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_all_owner_ids": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hubspot_owner_id": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "lastmodifieddate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_count_is_worked": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_email_delivered": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_google_click_id": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "notes_last_updated": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "recent_deal_amount": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "associatedcompanyid": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_all_contact_vids": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_analytics_source": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_lastmodifieddate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "num_contacted_notes": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "relationship_status": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_additional_emails": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_analytics_revenue": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_count_is_unworked": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_email_bad_address": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "hs_email_quarantined": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "hs_facebook_click_id": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_merged_object_ids": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "notes_last_contacted": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "num_associated_deals": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "first_conversion_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_last_url": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_created_by_user_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_updated_by_user_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "num_conversion_events": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_analytics_first_url": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_email_is_ineligible": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "hs_facebook_ad_clicked": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "recent_conversion_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "recent_deal_close_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "first_deal_created_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_num_visits": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_email_last_open_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_email_last_send_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "webinareventlastupdated": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_email_first_open_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_email_first_send_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_email_last_click_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_email_last_email_name": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_email_optout_10798197": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_sequences_is_enrolled": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "notes_next_activity_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_avatar_filemanager_key": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_calculated_merged_vids": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_email_first_click_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_user_ids_of_all_owners": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_all_accessible_team_ids": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_analytics_last_referrer": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_analytics_source_data_1": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_analytics_source_data_2": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_calculated_phone_number": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_document_last_revisited": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_emailconfirmationstatus": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_latest_meeting_activity": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_sales_email_last_opened": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hubspot_owner_assigneddate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "first_conversion_event_name": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_analytics_first_referrer": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_analytics_last_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_num_page_views": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_calculated_mobile_number": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_content_membership_notes": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_created_by_conversations": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "hs_email_hard_bounce_reason": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_email_quarantined_reason": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_last_sales_activity_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_lifecyclestage_lead_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_sa_first_engagement_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_sales_email_last_clicked": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_sales_email_last_replied": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_time_to_first_engagement": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "associatedcompanylastupdated": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_analytics_first_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_content_membership_status": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_lifecyclestage_other_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_sa_first_engagement_descr": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "num_unique_conversion_events": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "recent_conversion_event_name": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "surveymonkeyeventlastupdated": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_first_engagement_object_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_calculated_form_submissions": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_conversations_visitor_email": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "engagements_last_meeting_booked": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_average_page_views": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_lifecyclestage_customer_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_email_hard_bounce_reason_enum": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_last_sales_activity_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_last_visit_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_lifecyclestage_evangelist_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_lifecyclestage_subscriber_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_first_visit_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_num_event_completions": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_lifecyclestage_opportunity_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_sa_first_engagement_object_type": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_content_membership_registered_at": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_calculated_phone_number_area_code": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_email_customer_quarantined_reason": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_email_sends_since_last_engagement": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "hs_content_membership_email_confirmed": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "hs_searchable_calculated_phone_number": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "engagements_last_meeting_booked_medium": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "engagements_last_meeting_booked_source": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_calculated_phone_number_region_code": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_searchable_calculated_mobile_number": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_calculated_phone_number_country_code": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "engagements_last_meeting_booked_campaign": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_lifecyclestage_salesqualifiedlead_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_last_touch_converting_campaign": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_analytics_first_touch_converting_campaign": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_lifecyclestage_marketingqualifiedlead_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_content_membership_registration_email_sent_at": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_content_membership_registration_domain_sent_to": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_searchable_calculated_international_phone_number": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "hs_searchable_calculated_international_mobile_number": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - } - } - }, - "merged-vids": { - "type": ["null", "array"], - "items": { "type": ["null", "integer"] } - }, - "profile-url": { "type": ["null", "string"] }, - "merge-audits": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "user-id": { "type": ["null", "integer"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - }, - "vid-to-merge": { "type": ["null", "integer"] }, - "canonical-vid": { "type": ["null", "integer"] }, - "merged_to_email": { - "type": ["null", "object"], - "properties": { - "value": { "type": ["null", "string"] }, - "selected": { "type": ["null", "boolean"] }, - "source-id": { "type": ["null", "string"] }, - "timestamp": { "type": ["null", "integer"] }, - "source-type": { "type": ["null", "string"] }, - "source-label": { "type": ["null", "string"] } - } - }, - "merged_from_email": { - "type": ["null", "object"], - "properties": { - "value": { "type": ["null", "string"] }, - "selected": { "type": ["null", "boolean"] }, - "source-id": { "type": ["null", "string"] }, - "timestamp": { "type": ["null", "integer"] }, - "source-type": { "type": ["null", "string"] }, - "source-vids": { - "type": ["null", "array"], - "items": { "type": ["null", "integer"] } - }, - "source-label": { "type": ["null", "string"] } - } - }, - "num-properties-moved": { "type": ["null", "integer"] } - } - } - }, - "property_fax": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_zip": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "canonical-vid": { "type": ["null", "integer"] }, - "profile-token": { "type": ["null", "string"] }, - "property_city": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_email": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_phone": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_state": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_degree": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_gender": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_school": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "form-submissions": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "title": { "type": ["null", "string"] }, - "form-id": { "type": ["null", "string"] }, - "page-url": { "type": ["null", "string"] }, - "portal-id": { "type": ["null", "integer"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - }, - "conversion-id": { "type": ["null", "string"] } - } - } - }, - "list-memberships": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "vid": { "type": ["null", "integer"] }, - "is-member": { "type": ["null", "boolean"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - }, - "static-list-id": { "type": ["null", "integer"] }, - "internal-list-id": { "type": ["null", "integer"] } - } - } - }, - "property_address": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_company": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_country": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_ip_city": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_message": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_website": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "identity-profiles": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "vid": { "type": ["null", "integer"] }, - "identities": { - "type": ["null", "array"], - "items": { - "type": ["null", "object"], - "properties": { - "type": { "type": ["null", "string"] }, - "value": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - } - }, - "saved-at-timestamp": { - "type": ["null", "string"], - "format": "date-time" - }, - "deleted-changed-timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - } - }, - "property_industry": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_ip_state": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_jobtitle": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_lastname": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "associated-company": { - "type": "object", - "properties": { - "portal-id": { "type": ["null", "integer"] }, - "company-id": { "type": ["null", "integer"] }, - "properties": { - "type": "object", - "properties": { - "zip": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "city": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "name": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "type": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "phone": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "state": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "domain": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "address": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "country": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "website": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "about_us": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "address2": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "industry": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "timezone": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "closedate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "is_public": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "num_notes": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "createdate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "twitterbio": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "description": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "linkedinbio": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "facebookfans": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "founded_year": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_object_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "annualrevenue": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "days_to_close": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_createdate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "total_revenue": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "twitterhandle": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_lead_status": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "lifecyclestage": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "googleplus_page": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_all_team_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_num_blockers": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hubspot_team_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_all_owner_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hubspot_owner_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "twitterfollowers": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "web_technologies": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_num_open_deals": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_target_account": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "numberofemployees": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "notes_last_updated": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "recent_deal_amount": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "total_money_raised": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_source": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_lastmodifieddate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_total_deal_value": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "num_contacted_notes": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_is_target_account": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_merged_object_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_parent_company_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "notes_last_contacted": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "num_associated_deals": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "facebook_company_page": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_additional_domains": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_created_by_user_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_updated_by_user_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "linkedin_company_page": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_last_open_task_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_num_child_companies": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_num_decision_makers": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "recent_deal_close_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "first_deal_created_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_num_visits": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "num_associated_contacts": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "first_contact_createdate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_last_logged_call_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "notes_next_activity_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_avatar_filemanager_key": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_ideal_customer_profile": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_user_ids_of_all_owners": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_all_accessible_team_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_source_data_1": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_source_data_2": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_latest_meeting_activity": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hubspot_owner_assigneddate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_last_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_num_page_views": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_last_booked_meeting_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_last_sales_activity_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_sales_email_last_replied": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_first_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_target_account_probability": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "engagements_last_meeting_booked": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_last_sales_activity_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_last_visit_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_num_contacts_with_buying_roles": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_first_visit_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "engagements_last_meeting_booked_medium": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "engagements_last_meeting_booked_source": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_target_account_recommendation_state": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "engagements_last_meeting_booked_campaign": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "closedate_timestamp_earliest_value_a2a17e6e": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_last_touch_converting_campaign": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_first_touch_converting_campaign": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_target_account_recommendation_snooze_time": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "num_conversion_events_cardinality_sum_d095f14b": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_num_visits_cardinality_sum_53d952a6": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_predictivecontactscore_v2_next_max_max_d4e58c1e": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_num_page_views_cardinality_sum_e46e85b0": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_source_timestamp_earliest_value_25a3a52c": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "recent_conversion_date_timestamp_latest_value_72856da1": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "first_conversion_date_timestamp_earliest_value_61f58f2c": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "first_contact_createdate_timestamp_earliest_value_78b50eea": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_last_timestamp_timestamp_latest_value_4e16365a": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "recent_conversion_event_name_timestamp_latest_value_66c820bf": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "first_conversion_event_name_timestamp_earliest_value_68ddae0a": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - } - } - }, - "property_zip": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_city": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_name": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_type": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_phone": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_state": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_domain": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_address": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_country": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_website": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_about_us": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_address2": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_industry": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_timezone": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_closedate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_is_public": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_num_notes": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "properties_versions": { - "type": "array", - "items": { - "type": ["null", "object"], - "properties": { - "name": { "type": ["null", "string"] }, - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "sourceVid": { - "type": ["null", "array"], - "items": { "type": ["null", "string"] } - }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - } - }, - "property_createdate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_twitterbio": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_description": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_linkedinbio": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_facebookfans": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_founded_year": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_object_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_annualrevenue": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_days_to_close": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_createdate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_total_revenue": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_twitterhandle": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_lead_status": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_lifecyclestage": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_googleplus_page": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_all_team_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_num_blockers": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hubspot_team_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_all_owner_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hubspot_owner_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_twitterfollowers": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_web_technologies": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_num_open_deals": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_target_account": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_numberofemployees": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_notes_last_updated": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_recent_deal_amount": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_total_money_raised": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_source": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_lastmodifieddate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_total_deal_value": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_num_contacted_notes": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_is_target_account": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_merged_object_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_parent_company_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_notes_last_contacted": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_num_associated_deals": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_facebook_company_page": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_additional_domains": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_created_by_user_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_updated_by_user_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_linkedin_company_page": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_last_open_task_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_num_child_companies": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_num_decision_makers": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_recent_deal_close_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_first_deal_created_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_num_visits": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_num_associated_contacts": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_first_contact_createdate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_last_logged_call_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_notes_next_activity_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_avatar_filemanager_key": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_ideal_customer_profile": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_user_ids_of_all_owners": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_all_accessible_team_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_source_data_1": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_source_data_2": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_latest_meeting_activity": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hubspot_owner_assigneddate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_last_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_num_page_views": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_last_booked_meeting_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_last_sales_activity_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_sales_email_last_replied": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_first_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_target_account_probability": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_engagements_last_meeting_booked": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_last_sales_activity_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_last_visit_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_num_contacts_with_buying_roles": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_first_visit_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_engagements_last_meeting_booked_medium": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_engagements_last_meeting_booked_source": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_target_account_recommendation_state": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_engagements_last_meeting_booked_campaign": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_closedate_timestamp_earliest_value_a2a17e6e": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_last_touch_converting_campaign": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_first_touch_converting_campaign": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_target_account_recommendation_snooze_time": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_num_conversion_events_cardinality_sum_d095f14b": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_num_visits_cardinality_sum_53d952a6": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_num_page_views_cardinality_sum_e46e85b0": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_source_timestamp_earliest_value_25a3a52c": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_recent_conversion_date_timestamp_latest_value_72856da1": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_first_conversion_date_timestamp_earliest_value_61f58f2c": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_first_contact_createdate_timestamp_earliest_value_78b50eea": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_recent_conversion_event_name_timestamp_latest_value_66c820bf": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_first_conversion_event_name_timestamp_earliest_value_68ddae0a": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - } - } - }, - "property_closedate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_firstname": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_ip_latlon": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_num_notes": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_seniority": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "properties_versions": { - "type": "array", - "items": { - "type": ["null", "object"], - "properties": { - "name": { "type": ["null", "string"] }, - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "sourceVid": { - "type": ["null", "array"], - "items": { "type": ["null", "string"] } - }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - } - }, - "property_createdate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_persona": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_ip_country": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_ip_zipcode": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_salutation": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_start_date": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_work_email": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_language": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_mobilephone": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_company_size": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_object_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_testpurge": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hubspotscore": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_job_function": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_numemployees": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_annualrevenue": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_date_of_birth": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_days_to_close": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_createdate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_email_open": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_is_contact": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "property_ip_state_code": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_total_revenue": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_twitterhandle": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_field_of_study": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_buying_role": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_email_click": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_ip_timezone": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_is_unworked": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "property_hs_lead_status": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_legal_basis": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_lifecyclestage": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_marital_status": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_graduation_date": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_all_team_ids": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_email_bounce": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_email_domain": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_email_optout": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "property_hs_testrollback": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hubspot_team_id": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_ip_country_code": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_military_status": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_all_owner_ids": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hubspot_owner_id": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_lastmodifieddate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_count_is_worked": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_email_delivered": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_google_click_id": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_notes_last_updated": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_recent_deal_amount": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_associatedcompanyid": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_all_contact_vids": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_analytics_source": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_lastmodifieddate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_num_contacted_notes": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_relationship_status": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_additional_emails": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_analytics_revenue": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_count_is_unworked": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_email_bad_address": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "property_hs_email_quarantined": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "property_hs_facebook_click_id": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_merged_object_ids": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_notes_last_contacted": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_num_associated_deals": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_first_conversion_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_analytics_last_url": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_created_by_user_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_updated_by_user_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_num_conversion_events": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_analytics_first_url": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_email_is_ineligible": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "property_hs_facebook_ad_clicked": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "property_recent_conversion_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_recent_deal_close_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_first_deal_created_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_analytics_num_visits": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_email_last_open_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_email_last_send_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_webinareventlastupdated": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_email_first_open_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_email_first_send_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_email_last_click_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_email_last_email_name": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_email_optout_10798197": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_sequences_is_enrolled": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "property_notes_next_activity_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_avatar_filemanager_key": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_calculated_merged_vids": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_email_first_click_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_user_ids_of_all_owners": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_all_accessible_team_ids": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_analytics_last_referrer": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_analytics_source_data_1": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_analytics_source_data_2": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_calculated_phone_number": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_document_last_revisited": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_emailconfirmationstatus": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_latest_meeting_activity": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_sales_email_last_opened": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hubspot_owner_assigneddate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_first_conversion_event_name": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_analytics_first_referrer": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_analytics_last_timestamp": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_analytics_num_page_views": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_calculated_mobile_number": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_content_membership_notes": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_created_by_conversations": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "property_hs_email_hard_bounce_reason": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_email_quarantined_reason": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_last_sales_activity_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_lifecyclestage_lead_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_sa_first_engagement_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_sales_email_last_clicked": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_sales_email_last_replied": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_time_to_first_engagement": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_associatedcompanylastupdated": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_analytics_first_timestamp": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_content_membership_status": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_lifecyclestage_other_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_sa_first_engagement_descr": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_num_unique_conversion_events": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_recent_conversion_event_name": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_surveymonkeyeventlastupdated": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_first_engagement_object_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_calculated_form_submissions": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_conversations_visitor_email": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_engagements_last_meeting_booked": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_analytics_average_page_views": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_lifecyclestage_customer_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_email_hard_bounce_reason_enum": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_last_sales_activity_timestamp": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_analytics_last_visit_timestamp": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_lifecyclestage_evangelist_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_lifecyclestage_subscriber_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_analytics_first_visit_timestamp": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_analytics_num_event_completions": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_lifecyclestage_opportunity_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_sa_first_engagement_object_type": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_content_membership_registered_at": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_calculated_phone_number_area_code": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_email_customer_quarantined_reason": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_email_sends_since_last_engagement": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] } - } - }, - "property_hs_content_membership_email_confirmed": { - "type": "object", - "properties": { "value": { "type": ["null", "boolean"] } } - }, - "property_hs_searchable_calculated_phone_number": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_engagements_last_meeting_booked_medium": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_engagements_last_meeting_booked_source": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_calculated_phone_number_region_code": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_searchable_calculated_mobile_number": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_calculated_phone_number_country_code": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_engagements_last_meeting_booked_campaign": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_lifecyclestage_salesqualifiedlead_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_analytics_last_touch_converting_campaign": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_analytics_first_touch_converting_campaign": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_lifecyclestage_marketingqualifiedlead_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_content_membership_registration_email_sent_at": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" } - } - }, - "property_hs_content_membership_registration_domain_sent_to": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_searchable_calculated_international_phone_number": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - }, - "property_hs_searchable_calculated_international_mobile_number": { - "type": "object", - "properties": { "value": { "type": ["null", "string"] } } - } - } - }, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["versionTimestamp"] - }, - "sync_mode": "incremental", - "cursor_field": ["versionTimestamp"], - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "companies", - "json_schema": { - "type": "object", - "properties": { - "portalId": { "type": ["null", "integer"] }, - "companyId": { "type": ["null", "integer"] }, - "properties": { - "type": "object", - "properties": { - "zip": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "city": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "name": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "type": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "phone": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "state": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "domain": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "address": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "country": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "website": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "about_us": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "address2": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "industry": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "timezone": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "closedate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "is_public": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "num_notes": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "createdate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "twitterbio": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "description": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "linkedinbio": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "facebookfans": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "founded_year": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_object_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "annualrevenue": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "days_to_close": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_createdate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "total_revenue": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "twitterhandle": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_lead_status": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "lifecyclestage": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "googleplus_page": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_all_team_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_num_blockers": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hubspot_team_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_all_owner_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hubspot_owner_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "twitterfollowers": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "web_technologies": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_num_open_deals": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_target_account": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "numberofemployees": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "notes_last_updated": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "recent_deal_amount": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "total_money_raised": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_source": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_lastmodifieddate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_total_deal_value": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "num_contacted_notes": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_is_target_account": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_merged_object_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_parent_company_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "notes_last_contacted": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "num_associated_deals": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "facebook_company_page": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_additional_domains": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_created_by_user_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_updated_by_user_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "linkedin_company_page": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_last_open_task_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_num_child_companies": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_num_decision_makers": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "recent_deal_close_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "first_deal_created_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_num_visits": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "num_associated_contacts": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "first_contact_createdate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_last_logged_call_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "notes_next_activity_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_avatar_filemanager_key": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_ideal_customer_profile": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_user_ids_of_all_owners": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_all_accessible_team_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_source_data_1": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_source_data_2": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_latest_meeting_activity": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hubspot_owner_assigneddate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_last_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_num_page_views": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_last_booked_meeting_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_last_sales_activity_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_sales_email_last_replied": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_first_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_target_account_probability": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "engagements_last_meeting_booked": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_last_sales_activity_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_last_visit_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_num_contacts_with_buying_roles": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_first_visit_timestamp": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "engagements_last_meeting_booked_medium": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "engagements_last_meeting_booked_source": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_target_account_recommendation_state": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "engagements_last_meeting_booked_campaign": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "closedate_timestamp_earliest_value_a2a17e6e": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_last_touch_converting_campaign": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_first_touch_converting_campaign": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_target_account_recommendation_snooze_time": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "num_conversion_events_cardinality_sum_d095f14b": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_num_visits_cardinality_sum_53d952a6": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_predictivecontactscore_v2_next_max_max_d4e58c1e": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_num_page_views_cardinality_sum_e46e85b0": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_source_timestamp_earliest_value_25a3a52c": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "recent_conversion_date_timestamp_latest_value_72856da1": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "first_conversion_date_timestamp_earliest_value_61f58f2c": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "first_contact_createdate_timestamp_earliest_value_78b50eea": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_last_timestamp_timestamp_latest_value_4e16365a": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "recent_conversion_event_name_timestamp_latest_value_66c820bf": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "first_conversion_event_name_timestamp_earliest_value_68ddae0a": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - } - } - }, - "property_zip": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_city": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_name": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_type": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_phone": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_state": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_domain": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_address": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_country": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_website": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_about_us": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_address2": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_industry": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_timezone": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_closedate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_is_public": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_num_notes": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "properties_versions": { - "type": "array", - "items": { - "type": ["null", "object"], - "properties": { - "name": { "type": ["null", "string"] }, - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "sourceVid": { - "type": ["null", "array"], - "items": { "type": ["null", "string"] } - }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - } - }, - "property_createdate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_twitterbio": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_description": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_linkedinbio": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_facebookfans": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_founded_year": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_object_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_annualrevenue": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_days_to_close": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_createdate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_total_revenue": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_twitterhandle": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_lead_status": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_lifecyclestage": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_googleplus_page": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_all_team_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_num_blockers": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hubspot_team_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_all_owner_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hubspot_owner_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_twitterfollowers": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_web_technologies": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_num_open_deals": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_target_account": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_numberofemployees": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_notes_last_updated": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_recent_deal_amount": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_total_money_raised": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_source": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_lastmodifieddate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_total_deal_value": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_num_contacted_notes": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_is_target_account": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_merged_object_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_parent_company_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_notes_last_contacted": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_num_associated_deals": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_facebook_company_page": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_additional_domains": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_created_by_user_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_updated_by_user_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_linkedin_company_page": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_last_open_task_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_num_child_companies": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_num_decision_makers": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_recent_deal_close_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_first_deal_created_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_num_visits": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_num_associated_contacts": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_first_contact_createdate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_last_logged_call_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_notes_next_activity_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_avatar_filemanager_key": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_ideal_customer_profile": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_user_ids_of_all_owners": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_all_accessible_team_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_source_data_1": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_source_data_2": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_latest_meeting_activity": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hubspot_owner_assigneddate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_last_timestamp": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_num_page_views": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_last_booked_meeting_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_last_sales_activity_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_sales_email_last_replied": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_first_timestamp": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_target_account_probability": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_engagements_last_meeting_booked": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_last_sales_activity_timestamp": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_last_visit_timestamp": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_num_contacts_with_buying_roles": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_first_visit_timestamp": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_engagements_last_meeting_booked_medium": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_engagements_last_meeting_booked_source": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_target_account_recommendation_state": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_engagements_last_meeting_booked_campaign": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_closedate_timestamp_earliest_value_a2a17e6e": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_last_touch_converting_campaign": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_first_touch_converting_campaign": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_target_account_recommendation_snooze_time": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_num_conversion_events_cardinality_sum_d095f14b": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_num_visits_cardinality_sum_53d952a6": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_num_page_views_cardinality_sum_e46e85b0": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_source_timestamp_earliest_value_25a3a52c": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_recent_conversion_date_timestamp_latest_value_72856da1": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_first_conversion_date_timestamp_earliest_value_61f58f2c": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_first_contact_createdate_timestamp_earliest_value_78b50eea": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_recent_conversion_event_name_timestamp_latest_value_66c820bf": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_first_conversion_event_name_timestamp_earliest_value_68ddae0a": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - } - } - }, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["hs_lastmodifieddate"] - }, - "sync_mode": "incremental", - "cursor_field": ["hs_lastmodifieddate"], - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "deals", - "json_schema": { - "type": "object", - "properties": { - "dealId": { "type": ["null", "integer"] }, - "portalId": { "type": ["null", "integer"] }, - "isDeleted": { "type": ["null", "boolean"] }, - "properties": { - "type": "object", - "properties": { - "amount": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_acv": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_arr": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_mrr": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_tcv": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "dealname": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "dealtype": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "pipeline": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "closedate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "dealstage": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "num_notes": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "createdate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "description": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_is_closed": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_next_step": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_object_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "days_to_close": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_createdate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_all_team_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hubspot_team_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_all_owner_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_closed_amount": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hubspot_owner_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "closed_won_reason": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "closed_lost_reason": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_forecast_amount": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_time_in_9567448": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_time_in_9567449": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "notes_last_updated": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_source": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_lastmodifieddate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_predicted_amount": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_projected_amount": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "num_contacted_notes": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_merged_object_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_time_in_closedwon": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "notes_last_contacted": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_created_by_user_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_time_in_closedlost": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_updated_by_user_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_exited_9567448": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_exited_9567449": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_likelihood_to_close": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "amount_in_home_currency": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_entered_9567448": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_entered_9567449": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_forecast_probability": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_time_in_contractsent": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "num_associated_contacts": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_exited_closedwon": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "notes_next_activity_date": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_entered_closedwon": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_exited_closedlost": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_deal_stage_probability": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_time_in_qualifiedtobuy": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_user_ids_of_all_owners": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_all_accessible_team_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_source_data_1": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_analytics_source_data_2": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_entered_closedlost": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_latest_meeting_activity": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hubspot_owner_assigneddate": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_exited_contractsent": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_manual_forecast_category": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_sales_email_last_replied": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_entered_contractsent": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_exited_qualifiedtobuy": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_entered_qualifiedtobuy": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "engagements_last_meeting_booked": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_time_in_appointmentscheduled": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_time_in_customclosedwonstage": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_time_in_decisionmakerboughtin": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_time_in_presentationscheduled": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_closed_amount_in_home_currency": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_exited_appointmentscheduled": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_exited_customclosedwonstage": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_entered_appointmentscheduled": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_entered_customclosedwonstage": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_exited_decisionmakerboughtin": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_exited_presentationscheduled": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_predicted_amount_in_home_currency": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_projected_amount_in_home_currency": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_entered_decisionmakerboughtin": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_date_entered_presentationscheduled": { - "type": "object", - "properties": { - "value": { - "type": ["null", "string"], - "format": "date-time" - }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_deal_amount_calculation_preference": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "engagements_last_meeting_booked_medium": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "engagements_last_meeting_booked_source": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "engagements_last_meeting_booked_campaign": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_line_item_global_term_hs_discount_percentage": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_line_item_global_term_recurringbillingfrequency": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_line_item_global_term_hs_recurring_billing_period": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_line_item_global_term_hs_discount_percentage_enabled": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_line_item_global_term_hs_recurring_billing_start_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_line_item_global_term_recurringbillingfrequency_enabled": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_line_item_global_term_hs_recurring_billing_period_enabled": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "hs_line_item_global_term_hs_recurring_billing_start_date_enabled": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - } - } - }, - "associations": { - "type": ["null", "object"], - "properties": { - "associatedVids": { - "type": ["null", "array"], - "items": { "type": ["null", "integer"] } - }, - "associatedDealIds": { - "type": ["null", "array"], - "items": { "type": ["null", "integer"] } - }, - "associatedCompanyIds": { - "type": ["null", "array"], - "items": { "type": ["null", "integer"] } - } - } - }, - "property_amount": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_acv": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_arr": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_mrr": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_tcv": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_dealname": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_dealtype": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_pipeline": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_closedate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_dealstage": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_num_notes": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "properties_versions": { - "type": "array", - "items": { - "type": ["null", "object"], - "properties": { - "name": { "type": ["null", "string"] }, - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "sourceVid": { - "type": ["null", "array"], - "items": { "type": ["null", "string"] } - }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - } - }, - "property_createdate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_description": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_is_closed": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_next_step": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_object_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_days_to_close": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_createdate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_all_team_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hubspot_team_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_all_owner_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_closed_amount": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hubspot_owner_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_closed_won_reason": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_closed_lost_reason": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_forecast_amount": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_time_in_9567448": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_time_in_9567449": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_notes_last_updated": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_source": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_lastmodifieddate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_predicted_amount": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_projected_amount": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_num_contacted_notes": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_merged_object_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_time_in_closedwon": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_notes_last_contacted": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_created_by_user_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_time_in_closedlost": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_updated_by_user_id": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_exited_9567448": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_exited_9567449": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_likelihood_to_close": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_amount_in_home_currency": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_entered_9567448": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_entered_9567449": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_forecast_probability": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_time_in_contractsent": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_num_associated_contacts": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_exited_closedwon": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_notes_next_activity_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_entered_closedwon": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_exited_closedlost": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_deal_stage_probability": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_time_in_qualifiedtobuy": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_user_ids_of_all_owners": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_all_accessible_team_ids": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_source_data_1": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_analytics_source_data_2": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_entered_closedlost": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_latest_meeting_activity": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hubspot_owner_assigneddate": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_exited_contractsent": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_manual_forecast_category": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_sales_email_last_replied": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_entered_contractsent": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_exited_qualifiedtobuy": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_entered_qualifiedtobuy": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_engagements_last_meeting_booked": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_time_in_appointmentscheduled": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_time_in_customclosedwonstage": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_time_in_decisionmakerboughtin": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_time_in_presentationscheduled": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_closed_amount_in_home_currency": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_exited_appointmentscheduled": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_exited_customclosedwonstage": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_entered_appointmentscheduled": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_entered_customclosedwonstage": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_exited_decisionmakerboughtin": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_exited_presentationscheduled": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_predicted_amount_in_home_currency": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_projected_amount_in_home_currency": { - "type": "object", - "properties": { - "value": { "type": ["null", "number", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_entered_decisionmakerboughtin": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_date_entered_presentationscheduled": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"], "format": "date-time" }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_deal_amount_calculation_preference": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_engagements_last_meeting_booked_medium": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_engagements_last_meeting_booked_source": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_engagements_last_meeting_booked_campaign": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_line_item_global_term_hs_discount_percentage": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_line_item_global_term_recurringbillingfrequency": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_line_item_global_term_hs_recurring_billing_period": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_line_item_global_term_hs_discount_percentage_enabled": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_line_item_global_term_hs_recurring_billing_start_date": { - "type": "object", - "properties": { - "value": { "type": ["null", "string"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_line_item_global_term_recurringbillingfrequency_enabled": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_line_item_global_term_hs_recurring_billing_period_enabled": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "property_hs_line_item_global_term_hs_recurring_billing_start_date_enabled": { - "type": "object", - "properties": { - "value": { "type": ["null", "boolean"] }, - "source": { "type": ["null", "string"] }, - "sourceId": { "type": ["null", "string"] }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - } - } - } - } - }, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["hs_lastmodifieddate"] - }, - "sync_mode": "incremental", - "cursor_field": ["hs_lastmodifieddate"], - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "deal_pipelines", - "json_schema": { - "type": "object", - "properties": { - "label": { "type": ["null", "string"] }, - "active": { "type": ["null", "boolean"] }, - "stages": { - "type": ["null", "array"], - "items": { - "type": "object", - "properties": { - "label": { "type": ["null", "string"] }, - "active": { "type": ["null", "boolean"] }, - "stageId": { "type": ["null", "string"] }, - "closedWon": { "type": ["null", "boolean"] }, - "probability": { "type": ["null", "number"] }, - "displayOrder": { "type": ["null", "integer"] } - } - } - }, - "pipelineId": { "type": ["null", "string"] }, - "displayOrder": { "type": ["null", "integer"] }, - "staticDefault": { "type": ["null", "boolean"] } - } - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false, - "default_cursor_field": [] - }, - "sync_mode": "full_refresh", - "cursor_field": [], - "destination_sync_mode": "overwrite" - }, - { - "stream": { - "name": "engagements", - "json_schema": { - "type": "object", - "properties": { - "metadata": { - "type": ["null", "object"], - "properties": { - "cc": { - "type": ["null", "array"], - "items": { - "type": "object", - "properties": { "email": { "type": "string" } } - } - }, - "to": { - "type": ["null", "array"], - "items": { - "type": "object", - "properties": { "email": { "type": "string" } } - } - }, - "bcc": { - "type": ["null", "array"], - "items": { - "type": "object", - "properties": { "email": { "type": "string" } } - } - }, - "body": { "type": ["null", "string"] }, - "from": { - "type": ["null", "object"], - "properties": { - "email": { "type": "string" }, - "lastName": { "type": "string" }, - "firstName": { "type": "string" } - } - }, - "html": { "type": ["null", "string"] }, - "text": { "type": ["null", "string"] }, - "title": { "type": ["null", "string"] }, - "status": { "type": ["null", "string"] }, - "endTime": { "type": ["null", "integer"] }, - "subject": { "type": ["null", "string"] }, - "toNumber": { "type": ["null", "string"] }, - "startTime": { "type": ["null", "integer"] }, - "externalId": { "type": ["null", "string"] }, - "fromNumber": { "type": ["null", "string"] }, - "disposition": { "type": ["null", "string"] }, - "recordingUrl": { "type": ["null", "string"], "format": "uri" }, - "forObjectType": { "type": ["null", "string"] }, - "externalAccountId": { "type": ["null", "string"] }, - "durationMilliseconds": { "type": ["null", "integer"] } - } - }, - "engagement": { - "type": "object", - "properties": { - "id": { "type": "integer" }, - "type": { "type": "string" }, - "active": { "type": "boolean" }, - "ownerId": { "type": "integer" }, - "portalId": { "type": "integer" }, - "createdAt": { - "type": ["null", "string"], - "format": "date-time" - }, - "timestamp": { - "type": ["null", "string"], - "format": "date-time" - }, - "lastUpdated": { - "type": ["null", "string"], - "format": "date-time" - } - } - }, - "attachments": { - "type": ["null", "array"], - "items": { - "type": "object", - "properties": { "id": { "type": "integer" } } - } - }, - "associations": { - "type": ["null", "object"], - "properties": { - "dealIds": { - "type": ["null", "array"], - "items": { "type": "integer" } - }, - "companyIds": { - "type": ["null", "array"], - "items": { "type": "integer" } - }, - "contactIds": { - "type": ["null", "array"], - "items": { "type": "integer" } - } - } - }, - "engagement_id": { "type": "integer" } - } - }, - "supported_sync_modes": ["incremental"], - "source_defined_cursor": true, - "default_cursor_field": ["lastUpdated"] - }, - "sync_mode": "incremental", - "cursor_field": ["lastUpdated"], - "destination_sync_mode": "append" - }, - { - "stream": { - "name": "contacts_by_company", - "json_schema": { - "type": "object", - "properties": { - "company-id": { "type": ["integer"] }, - "contact-id": { "type": ["integer"] } - }, - "additionalProperties": false - }, - "supported_sync_modes": ["full_refresh"], - "source_defined_cursor": false, - "default_cursor_field": [] - }, - "sync_mode": "full_refresh", - "cursor_field": [], - "destination_sync_mode": "overwrite" - } - ] -} diff --git a/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog_expected_nested_bigquery.json b/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog_expected_nested_bigquery.json deleted file mode 100644 index 335cb08b2ca86c..00000000000000 --- a/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog_expected_nested_bigquery.json +++ /dev/null @@ -1,4244 +0,0 @@ -{ - "tables": [ - "campaigns_cd2_counters", - "campaigns_cd2_counters_ab1", - "campaigns_cd2_counters_ab2", - "campaigns_cd2_counters_ab3", - "companies_002_property_hs_analytics_source_timestamp_earliest_value_25a3a52c", - "companies_002_property_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab1", - "companies_002_property_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab2", - "companies_002_property_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab3", - "companies_047_property_recent_deal_amount", - "companies_047_property_recent_deal_amount_ab1", - "companies_047_property_recent_deal_amount_ab2", - "companies_047_property_recent_deal_amount_ab3", - "companies_071_property_hs_sales_email_last_replied", - "companies_071_property_hs_sales_email_last_replied_ab1", - "companies_071_property_hs_sales_email_last_replied_ab2", - "companies_071_property_hs_sales_email_last_replied_ab3", - "companies_09c_property_hubspot_owner_assigneddate", - "companies_09c_property_hubspot_owner_assigneddate_ab1", - "companies_09c_property_hubspot_owner_assigneddate_ab2", - "companies_09c_property_hubspot_owner_assigneddate_ab3", - "companies_09d_property_recent_deal_close_date", - "companies_09d_property_recent_deal_close_date_ab1", - "companies_09d_property_recent_deal_close_date_ab2", - "companies_09d_property_recent_deal_close_date_ab3", - "companies_0bf_property_twitterbio", - "companies_0bf_property_twitterbio_ab1", - "companies_0bf_property_twitterbio_ab2", - "companies_0bf_property_twitterbio_ab3", - "companies_100_property_phone", - "companies_100_property_phone_ab1", - "companies_100_property_phone_ab2", - "companies_100_property_phone_ab3", - "companies_11d_property_industry", - "companies_11d_property_industry_ab1", - "companies_11d_property_industry_ab2", - "companies_11d_property_industry_ab3", - "companies_13d_property_hs_createdate", - "companies_13d_property_hs_createdate_ab1", - "companies_13d_property_hs_createdate_ab2", - "companies_13d_property_hs_createdate_ab3", - "companies_147_property_country", - "companies_147_property_country_ab1", - "companies_147_property_country_ab2", - "companies_147_property_country_ab3", - "companies_14a_property_first_contact_createdate", - "companies_14a_property_first_contact_createdate_ab1", - "companies_14a_property_first_contact_createdate_ab2", - "companies_14a_property_first_contact_createdate_ab3", - "companies_154_property_num_associated_contacts", - "companies_154_property_num_associated_contacts_ab1", - "companies_154_property_num_associated_contacts_ab2", - "companies_154_property_num_associated_contacts_ab3", - "companies_161_property_hubspot_team_id", - "companies_161_property_hubspot_team_id_ab1", - "companies_161_property_hubspot_team_id_ab2", - "companies_161_property_hubspot_team_id_ab3", - "companies_185_property_recent_conversion_event_name_timestamp_latest_value_66c820bf", - "companies_185_property_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab1", - "companies_185_property_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab2", - "companies_185_property_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab3", - "companies_1b3_property_linkedinbio", - "companies_1b3_property_linkedinbio_ab1", - "companies_1b3_property_linkedinbio_ab2", - "companies_1b3_property_linkedinbio_ab3", - "companies_1be_property_hs_num_contacts_with_buying_roles", - "companies_1be_property_hs_num_contacts_with_buying_roles_ab1", - "companies_1be_property_hs_num_contacts_with_buying_roles_ab2", - "companies_1be_property_hs_num_contacts_with_buying_roles_ab3", - "companies_1be_property_hs_object_id", - "companies_1be_property_hs_object_id_ab1", - "companies_1be_property_hs_object_id_ab2", - "companies_1be_property_hs_object_id_ab3", - "companies_1bf_property_hs_target_account_probability", - "companies_1bf_property_hs_target_account_probability_ab1", - "companies_1bf_property_hs_target_account_probability_ab2", - "companies_1bf_property_hs_target_account_probability_ab3", - "companies_1ef_property_hs_total_deal_value", - "companies_1ef_property_hs_total_deal_value_ab1", - "companies_1ef_property_hs_total_deal_value_ab2", - "companies_1ef_property_hs_total_deal_value_ab3", - "companies_22c_property_first_conversion_date_timestamp_earliest_value_61f58f2c", - "companies_22c_property_first_conversion_date_timestamp_earliest_value_61f58f2c_ab1", - "companies_22c_property_first_conversion_date_timestamp_earliest_value_61f58f2c_ab2", - "companies_22c_property_first_conversion_date_timestamp_earliest_value_61f58f2c_ab3", - "companies_244_properties_versions", - "companies_244_properties_versions_ab1", - "companies_244_properties_versions_ab2", - "companies_244_properties_versions_ab3", - "companies_249_property_hs_analytics_first_visit_timestamp", - "companies_249_property_hs_analytics_first_visit_timestamp_ab1", - "companies_249_property_hs_analytics_first_visit_timestamp_ab2", - "companies_249_property_hs_analytics_first_visit_timestamp_ab3", - "companies_24f_property_hs_analytics_first_timestamp", - "companies_24f_property_hs_analytics_first_timestamp_ab1", - "companies_24f_property_hs_analytics_first_timestamp_ab2", - "companies_24f_property_hs_analytics_first_timestamp_ab3", - "companies_275_property_facebook_company_page", - "companies_275_property_facebook_company_page_ab1", - "companies_275_property_facebook_company_page_ab2", - "companies_275_property_facebook_company_page_ab3", - "companies_2a8_property_state", - "companies_2a8_property_state_ab1", - "companies_2a8_property_state_ab2", - "companies_2a8_property_state_ab3", - "companies_2e8_property_engagements_last_meeting_booked_campaign", - "companies_2e8_property_engagements_last_meeting_booked_campaign_ab1", - "companies_2e8_property_engagements_last_meeting_booked_campaign_ab2", - "companies_2e8_property_engagements_last_meeting_booked_campaign_ab3", - "companies_2f1_property_hs_all_team_ids", - "companies_2f1_property_hs_all_team_ids_ab1", - "companies_2f1_property_hs_all_team_ids_ab2", - "companies_2f1_property_hs_all_team_ids_ab3", - "companies_336_property_engagements_last_meeting_booked", - "companies_336_property_engagements_last_meeting_booked_ab1", - "companies_336_property_engagements_last_meeting_booked_ab2", - "companies_336_property_engagements_last_meeting_booked_ab3", - "companies_346_property_hs_avatar_filemanager_key", - "companies_346_property_hs_avatar_filemanager_key_ab1", - "companies_346_property_hs_avatar_filemanager_key_ab2", - "companies_346_property_hs_avatar_filemanager_key_ab3", - "companies_35a_property_hs_latest_meeting_activity", - "companies_35a_property_hs_latest_meeting_activity_ab1", - "companies_35a_property_hs_latest_meeting_activity_ab2", - "companies_35a_property_hs_latest_meeting_activity_ab3", - "companies_376_property_first_contact_createdate_timestamp_earliest_value_78b50eea", - "companies_376_property_first_contact_createdate_timestamp_earliest_value_78b50eea_ab1", - "companies_376_property_first_contact_createdate_timestamp_earliest_value_78b50eea_ab2", - "companies_376_property_first_contact_createdate_timestamp_earliest_value_78b50eea_ab3", - "companies_3c7_property_hs_analytics_first_touch_converting_campaign", - "companies_3c7_property_hs_analytics_first_touch_converting_campaign_ab1", - "companies_3c7_property_hs_analytics_first_touch_converting_campaign_ab2", - "companies_3c7_property_hs_analytics_first_touch_converting_campaign_ab3", - "companies_3d7_property_hs_analytics_num_page_views", - "companies_3d7_property_hs_analytics_num_page_views_ab1", - "companies_3d7_property_hs_analytics_num_page_views_ab2", - "companies_3d7_property_hs_analytics_num_page_views_ab3", - "companies_401_property_first_conversion_event_name_timestamp_earliest_value_68ddae0a", - "companies_401_property_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab1", - "companies_401_property_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab2", - "companies_401_property_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab3", - "companies_429_property_engagements_last_meeting_booked_medium", - "companies_429_property_engagements_last_meeting_booked_medium_ab1", - "companies_429_property_engagements_last_meeting_booked_medium_ab2", - "companies_429_property_engagements_last_meeting_booked_medium_ab3", - "companies_44a_property_hs_last_booked_meeting_date", - "companies_44a_property_hs_last_booked_meeting_date_ab1", - "companies_44a_property_hs_last_booked_meeting_date_ab2", - "companies_44a_property_hs_last_booked_meeting_date_ab3", - "companies_477_property_hs_target_account", - "companies_477_property_hs_target_account_ab1", - "companies_477_property_hs_target_account_ab2", - "companies_477_property_hs_target_account_ab3", - "companies_47c_property_hs_last_open_task_date", - "companies_47c_property_hs_last_open_task_date_ab1", - "companies_47c_property_hs_last_open_task_date_ab2", - "companies_47c_property_hs_last_open_task_date_ab3", - "companies_494_property_hs_last_logged_call_date", - "companies_494_property_hs_last_logged_call_date_ab1", - "companies_494_property_hs_last_logged_call_date_ab2", - "companies_494_property_hs_last_logged_call_date_ab3", - "companies_4ee_property_total_money_raised", - "companies_4ee_property_total_money_raised_ab1", - "companies_4ee_property_total_money_raised_ab2", - "companies_4ee_property_total_money_raised_ab3", - "companies_528_property_recent_conversion_date_timestamp_latest_value_72856da1", - "companies_528_property_recent_conversion_date_timestamp_latest_value_72856da1_ab1", - "companies_528_property_recent_conversion_date_timestamp_latest_value_72856da1_ab2", - "companies_528_property_recent_conversion_date_timestamp_latest_value_72856da1_ab3", - "companies_541_property_hs_analytics_source_data_1", - "companies_541_property_hs_analytics_source_data_1_ab1", - "companies_541_property_hs_analytics_source_data_1_ab2", - "companies_541_property_hs_analytics_source_data_1_ab3", - "companies_57c_property_hs_lastmodifieddate", - "companies_57c_property_hs_lastmodifieddate_ab1", - "companies_57c_property_hs_lastmodifieddate_ab2", - "companies_57c_property_hs_lastmodifieddate_ab3", - "companies_5e4_property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae", - "companies_5e4_property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab1", - "companies_5e4_property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab2", - "companies_5e4_property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab3", - "companies_617_property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10", - "companies_617_property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab1", - "companies_617_property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab2", - "companies_617_property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab3", - "companies_638_property_hs_target_account_recommendation_state", - "companies_638_property_hs_target_account_recommendation_state_ab1", - "companies_638_property_hs_target_account_recommendation_state_ab2", - "companies_638_property_hs_target_account_recommendation_state_ab3", - "companies_64e_property_description", - "companies_64e_property_description_ab1", - "companies_64e_property_description_ab2", - "companies_64e_property_description_ab3", - "companies_64f_property_timezone", - "companies_64f_property_timezone_ab1", - "companies_64f_property_timezone_ab2", - "companies_64f_property_timezone_ab3", - "companies_6b5_property_hs_all_accessible_team_ids", - "companies_6b5_property_hs_all_accessible_team_ids_ab1", - "companies_6b5_property_hs_all_accessible_team_ids_ab2", - "companies_6b5_property_hs_all_accessible_team_ids_ab3", - "companies_6fb_property_type", - "companies_6fb_property_type_ab1", - "companies_6fb_property_type_ab2", - "companies_6fb_property_type_ab3", - "companies_705_property_hs_analytics_num_page_views_cardinality_sum_e46e85b0", - "companies_705_property_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab1", - "companies_705_property_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab2", - "companies_705_property_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab3", - "companies_719_property_num_conversion_events_cardinality_sum_d095f14b", - "companies_719_property_num_conversion_events_cardinality_sum_d095f14b_ab1", - "companies_719_property_num_conversion_events_cardinality_sum_d095f14b_ab2", - "companies_719_property_num_conversion_events_cardinality_sum_d095f14b_ab3", - "companies_749_property_engagements_last_meeting_booked_source", - "companies_749_property_engagements_last_meeting_booked_source_ab1", - "companies_749_property_engagements_last_meeting_booked_source_ab2", - "companies_749_property_engagements_last_meeting_booked_source_ab3", - "companies_777_property_hs_analytics_last_timestamp", - "companies_777_property_hs_analytics_last_timestamp_ab1", - "companies_777_property_hs_analytics_last_timestamp_ab2", - "companies_777_property_hs_analytics_last_timestamp_ab3", - "companies_7a7_property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1", - "companies_7a7_property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab1", - "companies_7a7_property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab2", - "companies_7a7_property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab3", - "companies_7d6_property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400", - "companies_7d6_property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab1", - "companies_7d6_property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab2", - "companies_7d6_property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab3", - "companies_7da_property_hs_analytics_last_touch_converting_campaign", - "companies_7da_property_hs_analytics_last_touch_converting_campaign_ab1", - "companies_7da_property_hs_analytics_last_touch_converting_campaign_ab2", - "companies_7da_property_hs_analytics_last_touch_converting_campaign_ab3", - "companies_7ff_properties", - "companies_7ff_properties_ab1", - "companies_7ff_properties_ab2", - "companies_7ff_properties_ab3", - "companies_851_property_twitterfollowers", - "companies_851_property_twitterfollowers_ab1", - "companies_851_property_twitterfollowers_ab2", - "companies_851_property_twitterfollowers_ab3", - "companies_888_property_hs_parent_company_id", - "companies_888_property_hs_parent_company_id_ab1", - "companies_888_property_hs_parent_company_id_ab2", - "companies_888_property_hs_parent_company_id_ab3", - "companies_8a9_property_website", - "companies_8a9_property_website_ab1", - "companies_8a9_property_website_ab2", - "companies_8a9_property_website_ab3", - "companies_8c4_property_closedate", - "companies_8c4_property_closedate_ab1", - "companies_8c4_property_closedate_ab2", - "companies_8c4_property_closedate_ab3", - "companies_8c9_property_hs_num_blockers", - "companies_8c9_property_hs_num_blockers_ab1", - "companies_8c9_property_hs_num_blockers_ab2", - "companies_8c9_property_hs_num_blockers_ab3", - "companies_8df_property_num_contacted_notes", - "companies_8df_property_num_contacted_notes_ab1", - "companies_8df_property_num_contacted_notes_ab2", - "companies_8df_property_num_contacted_notes_ab3", - "companies_8fe_property_createdate", - "companies_8fe_property_createdate_ab1", - "companies_8fe_property_createdate_ab2", - "companies_8fe_property_createdate_ab3", - "companies_905_property_zip", - "companies_905_property_zip_ab1", - "companies_905_property_zip_ab2", - "companies_905_property_zip_ab3", - "companies_90d_property_hs_analytics_source", - "companies_90d_property_hs_analytics_source_ab1", - "companies_90d_property_hs_analytics_source_ab2", - "companies_90d_property_hs_analytics_source_ab3", - "companies_91a_property_hs_analytics_source_data_2", - "companies_91a_property_hs_analytics_source_data_2_ab1", - "companies_91a_property_hs_analytics_source_data_2_ab2", - "companies_91a_property_hs_analytics_source_data_2_ab3", - "companies_944_property_facebookfans", - "companies_944_property_facebookfans_ab1", - "companies_944_property_facebookfans_ab2", - "companies_944_property_facebookfans_ab3", - "companies_960_property_hs_num_decision_makers", - "companies_960_property_hs_num_decision_makers_ab1", - "companies_960_property_hs_num_decision_makers_ab2", - "companies_960_property_hs_num_decision_makers_ab3", - "companies_97f_property_googleplus_page", - "companies_97f_property_googleplus_page_ab1", - "companies_97f_property_googleplus_page_ab2", - "companies_97f_property_googleplus_page_ab3", - "companies_9b2_property_annualrevenue", - "companies_9b2_property_annualrevenue_ab1", - "companies_9b2_property_annualrevenue_ab2", - "companies_9b2_property_annualrevenue_ab3", - "companies_9d5_property_num_notes", - "companies_9d5_property_num_notes_ab1", - "companies_9d5_property_num_notes_ab2", - "companies_9d5_property_num_notes_ab3", - "companies_9d9_property_hs_analytics_last_visit_timestamp", - "companies_9d9_property_hs_analytics_last_visit_timestamp_ab1", - "companies_9d9_property_hs_analytics_last_visit_timestamp_ab2", - "companies_9d9_property_hs_analytics_last_visit_timestamp_ab3", - "companies_acc_property_num_associated_deals", - "companies_acc_property_num_associated_deals_ab1", - "companies_acc_property_num_associated_deals_ab2", - "companies_acc_property_num_associated_deals_ab3", - "companies_b26_property_linkedin_company_page", - "companies_b26_property_linkedin_company_page_ab1", - "companies_b26_property_linkedin_company_page_ab2", - "companies_b26_property_linkedin_company_page_ab3", - "companies_b38_property_closedate_timestamp_earliest_value_a2a17e6e", - "companies_b38_property_closedate_timestamp_earliest_value_a2a17e6e_ab1", - "companies_b38_property_closedate_timestamp_earliest_value_a2a17e6e_ab2", - "companies_b38_property_closedate_timestamp_earliest_value_a2a17e6e_ab3", - "companies_b4f_property_hs_num_child_companies", - "companies_b4f_property_hs_num_child_companies_ab1", - "companies_b4f_property_hs_num_child_companies_ab2", - "companies_b4f_property_hs_num_child_companies_ab3", - "companies_b66_property_address", - "companies_b66_property_address_ab1", - "companies_b66_property_address_ab2", - "companies_b66_property_address_ab3", - "companies_b6e_property_hs_all_owner_ids", - "companies_b6e_property_hs_all_owner_ids_ab1", - "companies_b6e_property_hs_all_owner_ids_ab2", - "companies_b6e_property_hs_all_owner_ids_ab3", - "companies_b77_property_days_to_close", - "companies_b77_property_days_to_close_ab1", - "companies_b77_property_days_to_close_ab2", - "companies_b77_property_days_to_close_ab3", - "companies_ba0_property_hubspot_owner_id", - "companies_ba0_property_hubspot_owner_id_ab1", - "companies_ba0_property_hubspot_owner_id_ab2", - "companies_ba0_property_hubspot_owner_id_ab3", - "companies_bd5_property_web_technologies", - "companies_bd5_property_web_technologies_ab1", - "companies_bd5_property_web_technologies_ab2", - "companies_bd5_property_web_technologies_ab3", - "companies_bdb_property_lifecyclestage", - "companies_bdb_property_lifecyclestage_ab1", - "companies_bdb_property_lifecyclestage_ab2", - "companies_bdb_property_lifecyclestage_ab3", - "companies_bec_property_hs_analytics_num_visits_cardinality_sum_53d952a6", - "companies_bec_property_hs_analytics_num_visits_cardinality_sum_53d952a6_ab1", - "companies_bec_property_hs_analytics_num_visits_cardinality_sum_53d952a6_ab2", - "companies_bec_property_hs_analytics_num_visits_cardinality_sum_53d952a6_ab3", - "companies_c41_property_is_public", - "companies_c41_property_is_public_ab1", - "companies_c41_property_is_public_ab2", - "companies_c41_property_is_public_ab3", - "companies_c5a_property_hs_is_target_account", - "companies_c5a_property_hs_is_target_account_ab1", - "companies_c5a_property_hs_is_target_account_ab2", - "companies_c5a_property_hs_is_target_account_ab3", - "companies_c5d_property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce", - "companies_c5d_property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab1", - "companies_c5d_property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab2", - "companies_c5d_property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab3", - "companies_c65_property_notes_last_updated", - "companies_c65_property_notes_last_updated_ab1", - "companies_c65_property_notes_last_updated_ab2", - "companies_c65_property_notes_last_updated_ab3", - "companies_ca3_property_hs_ideal_customer_profile", - "companies_ca3_property_hs_ideal_customer_profile_ab1", - "companies_ca3_property_hs_ideal_customer_profile_ab2", - "companies_ca3_property_hs_ideal_customer_profile_ab3", - "companies_ccf_property_hs_lead_status", - "companies_ccf_property_hs_lead_status_ab1", - "companies_ccf_property_hs_lead_status_ab2", - "companies_ccf_property_hs_lead_status_ab3", - "companies_ce3_property_hs_target_account_recommendation_snooze_time", - "companies_ce3_property_hs_target_account_recommendation_snooze_time_ab1", - "companies_ce3_property_hs_target_account_recommendation_snooze_time_ab2", - "companies_ce3_property_hs_target_account_recommendation_snooze_time_ab3", - "companies_d62_property_twitterhandle", - "companies_d62_property_twitterhandle_ab1", - "companies_d62_property_twitterhandle_ab2", - "companies_d62_property_twitterhandle_ab3", - "companies_d75_property_notes_next_activity_date", - "companies_d75_property_notes_next_activity_date_ab1", - "companies_d75_property_notes_next_activity_date_ab2", - "companies_d75_property_notes_next_activity_date_ab3", - "companies_d82_property_city", - "companies_d82_property_city_ab1", - "companies_d82_property_city_ab2", - "companies_d82_property_city_ab3", - "companies_d8c_property_hs_last_sales_activity_timestamp", - "companies_d8c_property_hs_last_sales_activity_timestamp_ab1", - "companies_d8c_property_hs_last_sales_activity_timestamp_ab2", - "companies_d8c_property_hs_last_sales_activity_timestamp_ab3", - "companies_db7_property_hs_analytics_num_visits", - "companies_db7_property_hs_analytics_num_visits_ab1", - "companies_db7_property_hs_analytics_num_visits_ab2", - "companies_db7_property_hs_analytics_num_visits_ab3", - "companies_dd0_property_about_us", - "companies_dd0_property_about_us_ab1", - "companies_dd0_property_about_us_ab2", - "companies_dd0_property_about_us_ab3", - "companies_ddf_property_numberofemployees", - "companies_ddf_property_numberofemployees_ab1", - "companies_ddf_property_numberofemployees_ab2", - "companies_ddf_property_numberofemployees_ab3", - "companies_de4_property_total_revenue", - "companies_de4_property_total_revenue_ab1", - "companies_de4_property_total_revenue_ab2", - "companies_de4_property_total_revenue_ab3", - "companies_e0e_property_hs_merged_object_ids", - "companies_e0e_property_hs_merged_object_ids_ab1", - "companies_e0e_property_hs_merged_object_ids_ab2", - "companies_e0e_property_hs_merged_object_ids_ab3", - "companies_e13_property_founded_year", - "companies_e13_property_founded_year_ab1", - "companies_e13_property_founded_year_ab2", - "companies_e13_property_founded_year_ab3", - "companies_e27_property_address2", - "companies_e27_property_address2_ab1", - "companies_e27_property_address2_ab2", - "companies_e27_property_address2_ab3", - "companies_e42_property_hs_user_ids_of_all_owners", - "companies_e42_property_hs_user_ids_of_all_owners_ab1", - "companies_e42_property_hs_user_ids_of_all_owners_ab2", - "companies_e42_property_hs_user_ids_of_all_owners_ab3", - "companies_e46_property_hs_updated_by_user_id", - "companies_e46_property_hs_updated_by_user_id_ab1", - "companies_e46_property_hs_updated_by_user_id_ab2", - "companies_e46_property_hs_updated_by_user_id_ab3", - "companies_e48_property_first_deal_created_date", - "companies_e48_property_first_deal_created_date_ab1", - "companies_e48_property_first_deal_created_date_ab2", - "companies_e48_property_first_deal_created_date_ab3", - "companies_e5f_property_domain", - "companies_e5f_property_domain_ab1", - "companies_e5f_property_domain_ab2", - "companies_e5f_property_domain_ab3", - "companies_e90_property_hs_num_open_deals", - "companies_e90_property_hs_num_open_deals_ab1", - "companies_e90_property_hs_num_open_deals_ab2", - "companies_e90_property_hs_num_open_deals_ab3", - "companies_e9f_property_hs_additional_domains", - "companies_e9f_property_hs_additional_domains_ab1", - "companies_e9f_property_hs_additional_domains_ab2", - "companies_e9f_property_hs_additional_domains_ab3", - "companies_eac_property_hs_created_by_user_id", - "companies_eac_property_hs_created_by_user_id_ab1", - "companies_eac_property_hs_created_by_user_id_ab2", - "companies_eac_property_hs_created_by_user_id_ab3", - "companies_ebe_property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a", - "companies_ebe_property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab1", - "companies_ebe_property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab2", - "companies_ebe_property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab3", - "companies_ed2_property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30", - "companies_ed2_property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab1", - "companies_ed2_property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab2", - "companies_ed2_property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab3", - "companies_f07_property_name", - "companies_f07_property_name_ab1", - "companies_f07_property_name_ab2", - "companies_f07_property_name_ab3", - "companies_f20_property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a", - "companies_f20_property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab1", - "companies_f20_property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab2", - "companies_f20_property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab3", - "companies_f39_property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e", - "companies_f39_property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab1", - "companies_f39_property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab2", - "companies_f39_property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab3", - "companies_f76_property_hs_last_sales_activity_date", - "companies_f76_property_hs_last_sales_activity_date_ab1", - "companies_f76_property_hs_last_sales_activity_date_ab2", - "companies_f76_property_hs_last_sales_activity_date_ab3", - "companies_fbd_property_notes_last_contacted", - "companies_fbd_property_notes_last_contacted_ab1", - "companies_fbd_property_notes_last_contacted_ab2", - "companies_fbd_property_notes_last_contacted_ab3", - "companies_properties_004_notes_last_contacted", - "companies_properties_004_notes_last_contacted_ab1", - "companies_properties_004_notes_last_contacted_ab2", - "companies_properties_004_notes_last_contacted_ab3", - "companies_properties_018_hs_latest_meeting_activity", - "companies_properties_018_hs_latest_meeting_activity_ab1", - "companies_properties_018_hs_latest_meeting_activity_ab2", - "companies_properties_018_hs_latest_meeting_activity_ab3", - "companies_properties_01e_recent_deal_amount", - "companies_properties_01e_recent_deal_amount_ab1", - "companies_properties_01e_recent_deal_amount_ab2", - "companies_properties_01e_recent_deal_amount_ab3", - "companies_properties_05c_hs_num_contacts_with_buying_roles", - "companies_properties_05c_hs_num_contacts_with_buying_roles_ab1", - "companies_properties_05c_hs_num_contacts_with_buying_roles_ab2", - "companies_properties_05c_hs_num_contacts_with_buying_roles_ab3", - "companies_properties_08d_numberofemployees", - "companies_properties_08d_numberofemployees_ab1", - "companies_properties_08d_numberofemployees_ab2", - "companies_properties_08d_numberofemployees_ab3", - "companies_properties_0b7_first_contact_createdate_timestamp_earliest_value_78b50eea", - "companies_properties_0b7_first_contact_createdate_timestamp_earliest_value_78b50eea_ab1", - "companies_properties_0b7_first_contact_createdate_timestamp_earliest_value_78b50eea_ab2", - "companies_properties_0b7_first_contact_createdate_timestamp_earliest_value_78b50eea_ab3", - "companies_properties_0b9_hs_analytics_source_data_1", - "companies_properties_0b9_hs_analytics_source_data_1_ab1", - "companies_properties_0b9_hs_analytics_source_data_1_ab2", - "companies_properties_0b9_hs_analytics_source_data_1_ab3", - "companies_properties_0bc_recent_deal_close_date", - "companies_properties_0bc_recent_deal_close_date_ab1", - "companies_properties_0bc_recent_deal_close_date_ab2", - "companies_properties_0bc_recent_deal_close_date_ab3", - "companies_properties_0cb_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a", - "companies_properties_0cb_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab1", - "companies_properties_0cb_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab2", - "companies_properties_0cb_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab3", - "companies_properties_100_twitterhandle", - "companies_properties_100_twitterhandle_ab1", - "companies_properties_100_twitterhandle_ab2", - "companies_properties_100_twitterhandle_ab3", - "companies_properties_121_hs_analytics_source", - "companies_properties_121_hs_analytics_source_ab1", - "companies_properties_121_hs_analytics_source_ab2", - "companies_properties_121_hs_analytics_source_ab3", - "companies_properties_138_twitterbio", - "companies_properties_138_twitterbio_ab1", - "companies_properties_138_twitterbio_ab2", - "companies_properties_138_twitterbio_ab3", - "companies_properties_177_linkedin_company_page", - "companies_properties_177_linkedin_company_page_ab1", - "companies_properties_177_linkedin_company_page_ab2", - "companies_properties_177_linkedin_company_page_ab3", - "companies_properties_181_about_us", - "companies_properties_181_about_us_ab1", - "companies_properties_181_about_us_ab2", - "companies_properties_181_about_us_ab3", - "companies_properties_1ab_hs_last_logged_call_date", - "companies_properties_1ab_hs_last_logged_call_date_ab1", - "companies_properties_1ab_hs_last_logged_call_date_ab2", - "companies_properties_1ab_hs_last_logged_call_date_ab3", - "companies_properties_1b6_googleplus_page", - "companies_properties_1b6_googleplus_page_ab1", - "companies_properties_1b6_googleplus_page_ab2", - "companies_properties_1b6_googleplus_page_ab3", - "companies_properties_1d0_timezone", - "companies_properties_1d0_timezone_ab1", - "companies_properties_1d0_timezone_ab2", - "companies_properties_1d0_timezone_ab3", - "companies_properties_1d7_industry", - "companies_properties_1d7_industry_ab1", - "companies_properties_1d7_industry_ab2", - "companies_properties_1d7_industry_ab3", - "companies_properties_1fe_recent_conversion_event_name_timestamp_latest_value_66c820bf", - "companies_properties_1fe_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab1", - "companies_properties_1fe_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab2", - "companies_properties_1fe_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab3", - "companies_properties_220_hs_target_account", - "companies_properties_220_hs_target_account_ab1", - "companies_properties_220_hs_target_account_ab2", - "companies_properties_220_hs_target_account_ab3", - "companies_properties_259_first_conversion_date_timestamp_earliest_value_61f58f2c", - "companies_properties_259_first_conversion_date_timestamp_earliest_value_61f58f2c_ab1", - "companies_properties_259_first_conversion_date_timestamp_earliest_value_61f58f2c_ab2", - "companies_properties_259_first_conversion_date_timestamp_earliest_value_61f58f2c_ab3", - "companies_properties_27e_hs_createdate", - "companies_properties_27e_hs_createdate_ab1", - "companies_properties_27e_hs_createdate_ab2", - "companies_properties_27e_hs_createdate_ab3", - "companies_properties_29c_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce", - "companies_properties_29c_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab1", - "companies_properties_29c_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab2", - "companies_properties_29c_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab3", - "companies_properties_2db_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae", - "companies_properties_2db_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab1", - "companies_properties_2db_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab2", - "companies_properties_2db_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab3", - "companies_properties_2fa_hs_additional_domains", - "companies_properties_2fa_hs_additional_domains_ab1", - "companies_properties_2fa_hs_additional_domains_ab2", - "companies_properties_2fa_hs_additional_domains_ab3", - "companies_properties_30a_num_associated_deals", - "companies_properties_30a_num_associated_deals_ab1", - "companies_properties_30a_num_associated_deals_ab2", - "companies_properties_30a_num_associated_deals_ab3", - "companies_properties_30d_hs_lastmodifieddate", - "companies_properties_30d_hs_lastmodifieddate_ab1", - "companies_properties_30d_hs_lastmodifieddate_ab2", - "companies_properties_30d_hs_lastmodifieddate_ab3", - "companies_properties_330_hs_merged_object_ids", - "companies_properties_330_hs_merged_object_ids_ab1", - "companies_properties_330_hs_merged_object_ids_ab2", - "companies_properties_330_hs_merged_object_ids_ab3", - "companies_properties_393_hs_last_sales_activity_date", - "companies_properties_393_hs_last_sales_activity_date_ab1", - "companies_properties_393_hs_last_sales_activity_date_ab2", - "companies_properties_393_hs_last_sales_activity_date_ab3", - "companies_properties_3c9_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1", - "companies_properties_3c9_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab1", - "companies_properties_3c9_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab2", - "companies_properties_3c9_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab3", - "companies_properties_44b_num_associated_contacts", - "companies_properties_44b_num_associated_contacts_ab1", - "companies_properties_44b_num_associated_contacts_ab2", - "companies_properties_44b_num_associated_contacts_ab3", - "companies_properties_462_phone", - "companies_properties_462_phone_ab1", - "companies_properties_462_phone_ab2", - "companies_properties_462_phone_ab3", - "companies_properties_485_first_contact_createdate", - "companies_properties_485_first_contact_createdate_ab1", - "companies_properties_485_first_contact_createdate_ab2", - "companies_properties_485_first_contact_createdate_ab3", - "companies_properties_521_total_money_raised", - "companies_properties_521_total_money_raised_ab1", - "companies_properties_521_total_money_raised_ab2", - "companies_properties_521_total_money_raised_ab3", - "companies_properties_529_recent_conversion_date_timestamp_latest_value_72856da1", - "companies_properties_529_recent_conversion_date_timestamp_latest_value_72856da1_ab1", - "companies_properties_529_recent_conversion_date_timestamp_latest_value_72856da1_ab2", - "companies_properties_529_recent_conversion_date_timestamp_latest_value_72856da1_ab3", - "companies_properties_5f0_hs_analytics_last_timestamp", - "companies_properties_5f0_hs_analytics_last_timestamp_ab1", - "companies_properties_5f0_hs_analytics_last_timestamp_ab2", - "companies_properties_5f0_hs_analytics_last_timestamp_ab3", - "companies_properties_62b_hs_lead_status", - "companies_properties_62b_hs_lead_status_ab1", - "companies_properties_62b_hs_lead_status_ab2", - "companies_properties_62b_hs_lead_status_ab3", - "companies_properties_65a_annualrevenue", - "companies_properties_65a_annualrevenue_ab1", - "companies_properties_65a_annualrevenue_ab2", - "companies_properties_65a_annualrevenue_ab3", - "companies_properties_65d_founded_year", - "companies_properties_65d_founded_year_ab1", - "companies_properties_65d_founded_year_ab2", - "companies_properties_65d_founded_year_ab3", - "companies_properties_6bf_facebook_company_page", - "companies_properties_6bf_facebook_company_page_ab1", - "companies_properties_6bf_facebook_company_page_ab2", - "companies_properties_6bf_facebook_company_page_ab3", - "companies_properties_6d5_hs_predictivecontactscore_v2_next_max_max_d4e58c1e", - "companies_properties_6d5_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab1", - "companies_properties_6d5_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab2", - "companies_properties_6d5_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab3", - "companies_properties_6eb_first_conversion_event_name_timestamp_earliest_value_68ddae0a", - "companies_properties_6eb_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab1", - "companies_properties_6eb_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab2", - "companies_properties_6eb_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab3", - "companies_properties_6ee_hs_target_account_probability", - "companies_properties_6ee_hs_target_account_probability_ab1", - "companies_properties_6ee_hs_target_account_probability_ab2", - "companies_properties_6ee_hs_target_account_probability_ab3", - "companies_properties_701_days_to_close", - "companies_properties_701_days_to_close_ab1", - "companies_properties_701_days_to_close_ab2", - "companies_properties_701_days_to_close_ab3", - "companies_properties_71a_hs_num_decision_makers", - "companies_properties_71a_hs_num_decision_makers_ab1", - "companies_properties_71a_hs_num_decision_makers_ab2", - "companies_properties_71a_hs_num_decision_makers_ab3", - "companies_properties_726_num_notes", - "companies_properties_726_num_notes_ab1", - "companies_properties_726_num_notes_ab2", - "companies_properties_726_num_notes_ab3", - "companies_properties_73e_hs_ideal_customer_profile", - "companies_properties_73e_hs_ideal_customer_profile_ab1", - "companies_properties_73e_hs_ideal_customer_profile_ab2", - "companies_properties_73e_hs_ideal_customer_profile_ab3", - "companies_properties_746_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a", - "companies_properties_746_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab1", - "companies_properties_746_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab2", - "companies_properties_746_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab3", - "companies_properties_758_hs_parent_company_id", - "companies_properties_758_hs_parent_company_id_ab1", - "companies_properties_758_hs_parent_company_id_ab2", - "companies_properties_758_hs_parent_company_id_ab3", - "companies_properties_76d_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400", - "companies_properties_76d_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab1", - "companies_properties_76d_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab2", - "companies_properties_76d_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab3", - "companies_properties_777_hs_num_child_companies", - "companies_properties_777_hs_num_child_companies_ab1", - "companies_properties_777_hs_num_child_companies_ab2", - "companies_properties_777_hs_num_child_companies_ab3", - "companies_properties_785_hs_analytics_first_timestamp", - "companies_properties_785_hs_analytics_first_timestamp_ab1", - "companies_properties_785_hs_analytics_first_timestamp_ab2", - "companies_properties_785_hs_analytics_first_timestamp_ab3", - "companies_properties_7af_hs_target_account_recommendation_snooze_time", - "companies_properties_7af_hs_target_account_recommendation_snooze_time_ab1", - "companies_properties_7af_hs_target_account_recommendation_snooze_time_ab2", - "companies_properties_7af_hs_target_account_recommendation_snooze_time_ab3", - "companies_properties_7b6_domain", - "companies_properties_7b6_domain_ab1", - "companies_properties_7b6_domain_ab2", - "companies_properties_7b6_domain_ab3", - "companies_properties_7d1_num_contacted_notes", - "companies_properties_7d1_num_contacted_notes_ab1", - "companies_properties_7d1_num_contacted_notes_ab2", - "companies_properties_7d1_num_contacted_notes_ab3", - "companies_properties_7fc_type", - "companies_properties_7fc_type_ab1", - "companies_properties_7fc_type_ab2", - "companies_properties_7fc_type_ab3", - "companies_properties_81f_hs_analytics_source_timestamp_earliest_value_25a3a52c", - "companies_properties_81f_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab1", - "companies_properties_81f_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab2", - "companies_properties_81f_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab3", - "companies_properties_876_notes_last_updated", - "companies_properties_876_notes_last_updated_ab1", - "companies_properties_876_notes_last_updated_ab2", - "companies_properties_876_notes_last_updated_ab3", - "companies_properties_888_facebookfans", - "companies_properties_888_facebookfans_ab1", - "companies_properties_888_facebookfans_ab2", - "companies_properties_888_facebookfans_ab3", - "companies_properties_889_hs_all_owner_ids", - "companies_properties_889_hs_all_owner_ids_ab1", - "companies_properties_889_hs_all_owner_ids_ab2", - "companies_properties_889_hs_all_owner_ids_ab3", - "companies_properties_89f_hs_all_team_ids", - "companies_properties_89f_hs_all_team_ids_ab1", - "companies_properties_89f_hs_all_team_ids_ab2", - "companies_properties_89f_hs_all_team_ids_ab3", - "companies_properties_8a7_hs_created_by_user_id", - "companies_properties_8a7_hs_created_by_user_id_ab1", - "companies_properties_8a7_hs_created_by_user_id_ab2", - "companies_properties_8a7_hs_created_by_user_id_ab3", - "companies_properties_8b9_createdate", - "companies_properties_8b9_createdate_ab1", - "companies_properties_8b9_createdate_ab2", - "companies_properties_8b9_createdate_ab3", - "companies_properties_8d2_hs_avatar_filemanager_key", - "companies_properties_8d2_hs_avatar_filemanager_key_ab1", - "companies_properties_8d2_hs_avatar_filemanager_key_ab2", - "companies_properties_8d2_hs_avatar_filemanager_key_ab3", - "companies_properties_8dc_first_deal_created_date", - "companies_properties_8dc_first_deal_created_date_ab1", - "companies_properties_8dc_first_deal_created_date_ab2", - "companies_properties_8dc_first_deal_created_date_ab3", - "companies_properties_909_address2", - "companies_properties_909_address2_ab1", - "companies_properties_909_address2_ab2", - "companies_properties_909_address2_ab3", - "companies_properties_921_hs_is_target_account", - "companies_properties_921_hs_is_target_account_ab1", - "companies_properties_921_hs_is_target_account_ab2", - "companies_properties_921_hs_is_target_account_ab3", - "companies_properties_947_twitterfollowers", - "companies_properties_947_twitterfollowers_ab1", - "companies_properties_947_twitterfollowers_ab2", - "companies_properties_947_twitterfollowers_ab3", - "companies_properties_94f_name", - "companies_properties_94f_name_ab1", - "companies_properties_94f_name_ab2", - "companies_properties_94f_name_ab3", - "companies_properties_969_closedate", - "companies_properties_969_closedate_ab1", - "companies_properties_969_closedate_ab2", - "companies_properties_969_closedate_ab3", - "companies_properties_9ea_country", - "companies_properties_9ea_country_ab1", - "companies_properties_9ea_country_ab2", - "companies_properties_9ea_country_ab3", - "companies_properties_9fe_city", - "companies_properties_9fe_city_ab1", - "companies_properties_9fe_city_ab2", - "companies_properties_9fe_city_ab3", - "companies_properties_a27_hubspot_owner_id", - "companies_properties_a27_hubspot_owner_id_ab1", - "companies_properties_a27_hubspot_owner_id_ab2", - "companies_properties_a27_hubspot_owner_id_ab3", - "companies_properties_a37_hs_analytics_last_visit_timestamp", - "companies_properties_a37_hs_analytics_last_visit_timestamp_ab1", - "companies_properties_a37_hs_analytics_last_visit_timestamp_ab2", - "companies_properties_a37_hs_analytics_last_visit_timestamp_ab3", - "companies_properties_a5b_notes_next_activity_date", - "companies_properties_a5b_notes_next_activity_date_ab1", - "companies_properties_a5b_notes_next_activity_date_ab2", - "companies_properties_a5b_notes_next_activity_date_ab3", - "companies_properties_a85_hs_analytics_first_touch_converting_campaign", - "companies_properties_a85_hs_analytics_first_touch_converting_campaign_ab1", - "companies_properties_a85_hs_analytics_first_touch_converting_campaign_ab2", - "companies_properties_a85_hs_analytics_first_touch_converting_campaign_ab3", - "companies_properties_a8a_hs_updated_by_user_id", - "companies_properties_a8a_hs_updated_by_user_id_ab1", - "companies_properties_a8a_hs_updated_by_user_id_ab2", - "companies_properties_a8a_hs_updated_by_user_id_ab3", - "companies_properties_aaa_linkedinbio", - "companies_properties_aaa_linkedinbio_ab1", - "companies_properties_aaa_linkedinbio_ab2", - "companies_properties_aaa_linkedinbio_ab3", - "companies_properties_ab7_address", - "companies_properties_ab7_address_ab1", - "companies_properties_ab7_address_ab2", - "companies_properties_ab7_address_ab3", - "companies_properties_ad4_hs_analytics_last_touch_converting_campaign", - "companies_properties_ad4_hs_analytics_last_touch_converting_campaign_ab1", - "companies_properties_ad4_hs_analytics_last_touch_converting_campaign_ab2", - "companies_properties_ad4_hs_analytics_last_touch_converting_campaign_ab3", - "companies_properties_ad4_lifecyclestage", - "companies_properties_ad4_lifecyclestage_ab1", - "companies_properties_ad4_lifecyclestage_ab2", - "companies_properties_ad4_lifecyclestage_ab3", - "companies_properties_ada_web_technologies", - "companies_properties_ada_web_technologies_ab1", - "companies_properties_ada_web_technologies_ab2", - "companies_properties_ada_web_technologies_ab3", - "companies_properties_ade_hubspot_owner_assigneddate", - "companies_properties_ade_hubspot_owner_assigneddate_ab1", - "companies_properties_ade_hubspot_owner_assigneddate_ab2", - "companies_properties_ade_hubspot_owner_assigneddate_ab3", - "companies_properties_af0_engagements_last_meeting_booked_medium", - "companies_properties_af0_engagements_last_meeting_booked_medium_ab1", - "companies_properties_af0_engagements_last_meeting_booked_medium_ab2", - "companies_properties_af0_engagements_last_meeting_booked_medium_ab3", - "companies_properties_af6_engagements_last_meeting_booked_source", - "companies_properties_af6_engagements_last_meeting_booked_source_ab1", - "companies_properties_af6_engagements_last_meeting_booked_source_ab2", - "companies_properties_af6_engagements_last_meeting_booked_source_ab3", - "companies_properties_b76_hs_user_ids_of_all_owners", - "companies_properties_b76_hs_user_ids_of_all_owners_ab1", - "companies_properties_b76_hs_user_ids_of_all_owners_ab2", - "companies_properties_b76_hs_user_ids_of_all_owners_ab3", - "companies_properties_b8e_is_public", - "companies_properties_b8e_is_public_ab1", - "companies_properties_b8e_is_public_ab2", - "companies_properties_b8e_is_public_ab3", - "companies_properties_b91_hs_object_id", - "companies_properties_b91_hs_object_id_ab1", - "companies_properties_b91_hs_object_id_ab2", - "companies_properties_b91_hs_object_id_ab3", - "companies_properties_b92_engagements_last_meeting_booked", - "companies_properties_b92_engagements_last_meeting_booked_ab1", - "companies_properties_b92_engagements_last_meeting_booked_ab2", - "companies_properties_b92_engagements_last_meeting_booked_ab3", - "companies_properties_bc4_engagements_last_meeting_booked_campaign", - "companies_properties_bc4_engagements_last_meeting_booked_campaign_ab1", - "companies_properties_bc4_engagements_last_meeting_booked_campaign_ab2", - "companies_properties_bc4_engagements_last_meeting_booked_campaign_ab3", - "companies_properties_bfe_hs_sales_email_last_replied", - "companies_properties_bfe_hs_sales_email_last_replied_ab1", - "companies_properties_bfe_hs_sales_email_last_replied_ab2", - "companies_properties_bfe_hs_sales_email_last_replied_ab3", - "companies_properties_c5f_description", - "companies_properties_c5f_description_ab1", - "companies_properties_c5f_description_ab2", - "companies_properties_c5f_description_ab3", - "companies_properties_c84_hs_all_accessible_team_ids", - "companies_properties_c84_hs_all_accessible_team_ids_ab1", - "companies_properties_c84_hs_all_accessible_team_ids_ab2", - "companies_properties_c84_hs_all_accessible_team_ids_ab3", - "companies_properties_c92_hs_num_open_deals", - "companies_properties_c92_hs_num_open_deals_ab1", - "companies_properties_c92_hs_num_open_deals_ab2", - "companies_properties_c92_hs_num_open_deals_ab3", - "companies_properties_c97_hubspot_team_id", - "companies_properties_c97_hubspot_team_id_ab1", - "companies_properties_c97_hubspot_team_id_ab2", - "companies_properties_c97_hubspot_team_id_ab3", - "companies_properties_cbb_hs_analytics_num_page_views", - "companies_properties_cbb_hs_analytics_num_page_views_ab1", - "companies_properties_cbb_hs_analytics_num_page_views_ab2", - "companies_properties_cbb_hs_analytics_num_page_views_ab3", - "companies_properties_ce7_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10", - "companies_properties_ce7_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab1", - "companies_properties_ce7_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab2", - "companies_properties_ce7_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab3", - "companies_properties_cf7_hs_total_deal_value", - "companies_properties_cf7_hs_total_deal_value_ab1", - "companies_properties_cf7_hs_total_deal_value_ab2", - "companies_properties_cf7_hs_total_deal_value_ab3", - "companies_properties_d07_hs_last_booked_meeting_date", - "companies_properties_d07_hs_last_booked_meeting_date_ab1", - "companies_properties_d07_hs_last_booked_meeting_date_ab2", - "companies_properties_d07_hs_last_booked_meeting_date_ab3", - "companies_properties_d6e_closedate_timestamp_earliest_value_a2a17e6e", - "companies_properties_d6e_closedate_timestamp_earliest_value_a2a17e6e_ab1", - "companies_properties_d6e_closedate_timestamp_earliest_value_a2a17e6e_ab2", - "companies_properties_d6e_closedate_timestamp_earliest_value_a2a17e6e_ab3", - "companies_properties_d74_num_conversion_events_cardinality_sum_d095f14b", - "companies_properties_d74_num_conversion_events_cardinality_sum_d095f14b_ab1", - "companies_properties_d74_num_conversion_events_cardinality_sum_d095f14b_ab2", - "companies_properties_d74_num_conversion_events_cardinality_sum_d095f14b_ab3", - "companies_properties_d85_state", - "companies_properties_d85_state_ab1", - "companies_properties_d85_state_ab2", - "companies_properties_d85_state_ab3", - "companies_properties_d9e_hs_target_account_recommendation_state", - "companies_properties_d9e_hs_target_account_recommendation_state_ab1", - "companies_properties_d9e_hs_target_account_recommendation_state_ab2", - "companies_properties_d9e_hs_target_account_recommendation_state_ab3", - "companies_properties_d9e_total_revenue", - "companies_properties_d9e_total_revenue_ab1", - "companies_properties_d9e_total_revenue_ab2", - "companies_properties_d9e_total_revenue_ab3", - "companies_properties_db7_hs_analytics_num_visits_cardinality_sum_53d952a6", - "companies_properties_db7_hs_analytics_num_visits_cardinality_sum_53d952a6_ab1", - "companies_properties_db7_hs_analytics_num_visits_cardinality_sum_53d952a6_ab2", - "companies_properties_db7_hs_analytics_num_visits_cardinality_sum_53d952a6_ab3", - "companies_properties_dc5_hs_analytics_source_data_2", - "companies_properties_dc5_hs_analytics_source_data_2_ab1", - "companies_properties_dc5_hs_analytics_source_data_2_ab2", - "companies_properties_dc5_hs_analytics_source_data_2_ab3", - "companies_properties_e1d_hs_last_sales_activity_timestamp", - "companies_properties_e1d_hs_last_sales_activity_timestamp_ab1", - "companies_properties_e1d_hs_last_sales_activity_timestamp_ab2", - "companies_properties_e1d_hs_last_sales_activity_timestamp_ab3", - "companies_properties_e33_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30", - "companies_properties_e33_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab1", - "companies_properties_e33_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab2", - "companies_properties_e33_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab3", - "companies_properties_f1d_hs_analytics_first_visit_timestamp", - "companies_properties_f1d_hs_analytics_first_visit_timestamp_ab1", - "companies_properties_f1d_hs_analytics_first_visit_timestamp_ab2", - "companies_properties_f1d_hs_analytics_first_visit_timestamp_ab3", - "companies_properties_f28_hs_analytics_num_visits", - "companies_properties_f28_hs_analytics_num_visits_ab1", - "companies_properties_f28_hs_analytics_num_visits_ab2", - "companies_properties_f28_hs_analytics_num_visits_ab3", - "companies_properties_f8e_hs_num_blockers", - "companies_properties_f8e_hs_num_blockers_ab1", - "companies_properties_f8e_hs_num_blockers_ab2", - "companies_properties_f8e_hs_num_blockers_ab3", - "companies_properties_f95_hs_analytics_num_page_views_cardinality_sum_e46e85b0", - "companies_properties_f95_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab1", - "companies_properties_f95_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab2", - "companies_properties_f95_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab3", - "companies_properties_fc1_hs_last_open_task_date", - "companies_properties_fc1_hs_last_open_task_date_ab1", - "companies_properties_fc1_hs_last_open_task_date_ab2", - "companies_properties_fc1_hs_last_open_task_date_ab3", - "companies_properties_fdb_zip", - "companies_properties_fdb_zip_ab1", - "companies_properties_fdb_zip_ab2", - "companies_properties_fdb_zip_ab3", - "companies_properties_ff9_website", - "companies_properties_ff9_website_ab1", - "companies_properties_ff9_website_ab2", - "companies_properties_ff9_website_ab3", - "contact_lists_4c6_metaData", - "contact_lists_4c6_metaData_ab1", - "contact_lists_4c6_metaData_ab2", - "contact_lists_4c6_metaData_ab3", - "contact_lists_a20_filters", - "contact_lists_a20_filters_ab1", - "contact_lists_a20_filters_ab2", - "contact_lists_a20_filters_ab3", - "contacts_00a_property_hs_content_membership_email_confirmed", - "contacts_00a_property_hs_content_membership_email_confirmed_ab1", - "contacts_00a_property_hs_content_membership_email_confirmed_ab2", - "contacts_00a_property_hs_content_membership_email_confirmed_ab3", - "contacts_010_property_hs_created_by_user_id", - "contacts_010_property_hs_created_by_user_id_ab1", - "contacts_010_property_hs_created_by_user_id_ab2", - "contacts_010_property_hs_created_by_user_id_ab3", - "contacts_014_property_hs_testpurge", - "contacts_014_property_hs_testpurge_ab1", - "contacts_014_property_hs_testpurge_ab2", - "contacts_014_property_hs_testpurge_ab3", - "contacts_01b_property_hs_all_contact_vids", - "contacts_01b_property_hs_all_contact_vids_ab1", - "contacts_01b_property_hs_all_contact_vids_ab2", - "contacts_01b_property_hs_all_contact_vids_ab3", - "contacts_022_property_hs_calculated_phone_number_country_code", - "contacts_022_property_hs_calculated_phone_number_country_code_ab1", - "contacts_022_property_hs_calculated_phone_number_country_code_ab2", - "contacts_022_property_hs_calculated_phone_number_country_code_ab3", - "contacts_031_property_hs_analytics_first_referrer", - "contacts_031_property_hs_analytics_first_referrer_ab1", - "contacts_031_property_hs_analytics_first_referrer_ab2", - "contacts_031_property_hs_analytics_first_referrer_ab3", - "contacts_04b_property_hs_merged_object_ids", - "contacts_04b_property_hs_merged_object_ids_ab1", - "contacts_04b_property_hs_merged_object_ids_ab2", - "contacts_04b_property_hs_merged_object_ids_ab3", - "contacts_052_property_first_conversion_event_name", - "contacts_052_property_first_conversion_event_name_ab1", - "contacts_052_property_first_conversion_event_name_ab2", - "contacts_052_property_first_conversion_event_name_ab3", - "contacts_053_property_recent_conversion_date", - "contacts_053_property_recent_conversion_date_ab1", - "contacts_053_property_recent_conversion_date_ab2", - "contacts_053_property_recent_conversion_date_ab3", - "contacts_056_property_work_email", - "contacts_056_property_work_email_ab1", - "contacts_056_property_work_email_ab2", - "contacts_056_property_work_email_ab3", - "contacts_059_property_hs_email_last_open_date", - "contacts_059_property_hs_email_last_open_date_ab1", - "contacts_059_property_hs_email_last_open_date_ab2", - "contacts_059_property_hs_email_last_open_date_ab3", - "contacts_05c_property_hs_is_unworked", - "contacts_05c_property_hs_is_unworked_ab1", - "contacts_05c_property_hs_is_unworked_ab2", - "contacts_05c_property_hs_is_unworked_ab3", - "contacts_0a4_property_engagements_last_meeting_booked", - "contacts_0a4_property_engagements_last_meeting_booked_ab1", - "contacts_0a4_property_engagements_last_meeting_booked_ab2", - "contacts_0a4_property_engagements_last_meeting_booked_ab3", - "contacts_0a9_property_hs_email_bad_address", - "contacts_0a9_property_hs_email_bad_address_ab1", - "contacts_0a9_property_hs_email_bad_address_ab2", - "contacts_0a9_property_hs_email_bad_address_ab3", - "contacts_0ac_property_engagements_last_meeting_booked_campaign", - "contacts_0ac_property_engagements_last_meeting_booked_campaign_ab1", - "contacts_0ac_property_engagements_last_meeting_booked_campaign_ab2", - "contacts_0ac_property_engagements_last_meeting_booked_campaign_ab3", - "contacts_0b2_property_hs_calculated_form_submissions", - "contacts_0b2_property_hs_calculated_form_submissions_ab1", - "contacts_0b2_property_hs_calculated_form_submissions_ab2", - "contacts_0b2_property_hs_calculated_form_submissions_ab3", - "contacts_0c8_property_twitterhandle", - "contacts_0c8_property_twitterhandle_ab1", - "contacts_0c8_property_twitterhandle_ab2", - "contacts_0c8_property_twitterhandle_ab3", - "contacts_0fc_property_fax", - "contacts_0fc_property_fax_ab1", - "contacts_0fc_property_fax_ab2", - "contacts_0fc_property_fax_ab3", - "contacts_0fc_property_hs_content_membership_registration_email_sent_at", - "contacts_0fc_property_hs_content_membership_registration_email_sent_at_ab1", - "contacts_0fc_property_hs_content_membership_registration_email_sent_at_ab2", - "contacts_0fc_property_hs_content_membership_registration_email_sent_at_ab3", - "contacts_12b_property_school", - "contacts_12b_property_school_ab1", - "contacts_12b_property_school_ab2", - "contacts_12b_property_school_ab3", - "contacts_141_property_hs_avatar_filemanager_key", - "contacts_141_property_hs_avatar_filemanager_key_ab1", - "contacts_141_property_hs_avatar_filemanager_key_ab2", - "contacts_141_property_hs_avatar_filemanager_key_ab3", - "contacts_14d_property_website", - "contacts_14d_property_website_ab1", - "contacts_14d_property_website_ab2", - "contacts_14d_property_website_ab3", - "contacts_14f_property_hs_email_open", - "contacts_14f_property_hs_email_open_ab1", - "contacts_14f_property_hs_email_open_ab2", - "contacts_14f_property_hs_email_open_ab3", - "contacts_15c_property_notes_next_activity_date", - "contacts_15c_property_notes_next_activity_date_ab1", - "contacts_15c_property_notes_next_activity_date_ab2", - "contacts_15c_property_notes_next_activity_date_ab3", - "contacts_19f_property_hs_analytics_num_event_completions", - "contacts_19f_property_hs_analytics_num_event_completions_ab1", - "contacts_19f_property_hs_analytics_num_event_completions_ab2", - "contacts_19f_property_hs_analytics_num_event_completions_ab3", - "contacts_1b0_property_hs_additional_emails", - "contacts_1b0_property_hs_additional_emails_ab1", - "contacts_1b0_property_hs_additional_emails_ab2", - "contacts_1b0_property_hs_additional_emails_ab3", - "contacts_1c7_property_hs_email_quarantined_reason", - "contacts_1c7_property_hs_email_quarantined_reason_ab1", - "contacts_1c7_property_hs_email_quarantined_reason_ab2", - "contacts_1c7_property_hs_email_quarantined_reason_ab3", - "contacts_1cd_property_hs_sa_first_engagement_object_type", - "contacts_1cd_property_hs_sa_first_engagement_object_type_ab1", - "contacts_1cd_property_hs_sa_first_engagement_object_type_ab2", - "contacts_1cd_property_hs_sa_first_engagement_object_type_ab3", - "contacts_1e0_properties", - "contacts_1e0_properties_ab1", - "contacts_1e0_properties_ab2", - "contacts_1e0_properties_ab3", - "contacts_1fe_property_hs_facebook_click_id", - "contacts_1fe_property_hs_facebook_click_id_ab1", - "contacts_1fe_property_hs_facebook_click_id_ab2", - "contacts_1fe_property_hs_facebook_click_id_ab3", - "contacts_20f_property_hs_analytics_num_page_views", - "contacts_20f_property_hs_analytics_num_page_views_ab1", - "contacts_20f_property_hs_analytics_num_page_views_ab2", - "contacts_20f_property_hs_analytics_num_page_views_ab3", - "contacts_21d_property_hs_email_optout_10798197", - "contacts_21d_property_hs_email_optout_10798197_ab1", - "contacts_21d_property_hs_email_optout_10798197_ab2", - "contacts_21d_property_hs_email_optout_10798197_ab3", - "contacts_224_property_industry", - "contacts_224_property_industry_ab1", - "contacts_224_property_industry_ab2", - "contacts_224_property_industry_ab3", - "contacts_24d_property_hs_email_domain", - "contacts_24d_property_hs_email_domain_ab1", - "contacts_24d_property_hs_email_domain_ab2", - "contacts_24d_property_hs_email_domain_ab3", - "contacts_250_property_hs_content_membership_registration_domain_sent_to", - "contacts_250_property_hs_content_membership_registration_domain_sent_to_ab1", - "contacts_250_property_hs_content_membership_registration_domain_sent_to_ab2", - "contacts_250_property_hs_content_membership_registration_domain_sent_to_ab3", - "contacts_251_property_ip_country_code", - "contacts_251_property_ip_country_code_ab1", - "contacts_251_property_ip_country_code_ab2", - "contacts_251_property_ip_country_code_ab3", - "contacts_25a_property_salutation", - "contacts_25a_property_salutation_ab1", - "contacts_25a_property_salutation_ab2", - "contacts_25a_property_salutation_ab3", - "contacts_298_property_email", - "contacts_298_property_email_ab1", - "contacts_298_property_email_ab2", - "contacts_298_property_email_ab3", - "contacts_29f_property_military_status", - "contacts_29f_property_military_status_ab1", - "contacts_29f_property_military_status_ab2", - "contacts_29f_property_military_status_ab3", - "contacts_2a3_property_hs_email_optout", - "contacts_2a3_property_hs_email_optout_ab1", - "contacts_2a3_property_hs_email_optout_ab2", - "contacts_2a3_property_hs_email_optout_ab3", - "contacts_2bc_property_hs_email_first_send_date", - "contacts_2bc_property_hs_email_first_send_date_ab1", - "contacts_2bc_property_hs_email_first_send_date_ab2", - "contacts_2bc_property_hs_email_first_send_date_ab3", - "contacts_2dd_property_country", - "contacts_2dd_property_country_ab1", - "contacts_2dd_property_country_ab2", - "contacts_2dd_property_country_ab3", - "contacts_2f8_property_hs_last_sales_activity_timestamp", - "contacts_2f8_property_hs_last_sales_activity_timestamp_ab1", - "contacts_2f8_property_hs_last_sales_activity_timestamp_ab2", - "contacts_2f8_property_hs_last_sales_activity_timestamp_ab3", - "contacts_325_property_hs_email_click", - "contacts_325_property_hs_email_click_ab1", - "contacts_325_property_hs_email_click_ab2", - "contacts_325_property_hs_email_click_ab3", - "contacts_326_property_webinareventlastupdated", - "contacts_326_property_webinareventlastupdated_ab1", - "contacts_326_property_webinareventlastupdated_ab2", - "contacts_326_property_webinareventlastupdated_ab3", - "contacts_33e_property_recent_deal_amount", - "contacts_33e_property_recent_deal_amount_ab1", - "contacts_33e_property_recent_deal_amount_ab2", - "contacts_33e_property_recent_deal_amount_ab3", - "contacts_33f_property_associatedcompanylastupdated", - "contacts_33f_property_associatedcompanylastupdated_ab1", - "contacts_33f_property_associatedcompanylastupdated_ab2", - "contacts_33f_property_associatedcompanylastupdated_ab3", - "contacts_348_property_hs_time_to_first_engagement", - "contacts_348_property_hs_time_to_first_engagement_ab1", - "contacts_348_property_hs_time_to_first_engagement_ab2", - "contacts_348_property_hs_time_to_first_engagement_ab3", - "contacts_37a_property_hs_last_sales_activity_date", - "contacts_37a_property_hs_last_sales_activity_date_ab1", - "contacts_37a_property_hs_last_sales_activity_date_ab2", - "contacts_37a_property_hs_last_sales_activity_date_ab3", - "contacts_3be_property_hs_email_delivered", - "contacts_3be_property_hs_email_delivered_ab1", - "contacts_3be_property_hs_email_delivered_ab2", - "contacts_3be_property_hs_email_delivered_ab3", - "contacts_3c0_merge_audits", - "contacts_3c0_merge_audits_ab1", - "contacts_3c0_merge_audits_ab2", - "contacts_3c0_merge_audits_ab3", - "contacts_3e9_property_num_notes", - "contacts_3e9_property_num_notes_ab1", - "contacts_3e9_property_num_notes_ab2", - "contacts_3e9_property_num_notes_ab3", - "contacts_3ee_property_hs_lifecyclestage_lead_date", - "contacts_3ee_property_hs_lifecyclestage_lead_date_ab1", - "contacts_3ee_property_hs_lifecyclestage_lead_date_ab2", - "contacts_3ee_property_hs_lifecyclestage_lead_date_ab3", - "contacts_401_property_hubspot_owner_id", - "contacts_401_property_hubspot_owner_id_ab1", - "contacts_401_property_hubspot_owner_id_ab2", - "contacts_401_property_hubspot_owner_id_ab3", - "contacts_42e_property_city", - "contacts_42e_property_city_ab1", - "contacts_42e_property_city_ab2", - "contacts_42e_property_city_ab3", - "contacts_44c_property_hs_email_last_send_date", - "contacts_44c_property_hs_email_last_send_date_ab1", - "contacts_44c_property_hs_email_last_send_date_ab2", - "contacts_44c_property_hs_email_last_send_date_ab3", - "contacts_465_property_zip", - "contacts_465_property_zip_ab1", - "contacts_465_property_zip_ab2", - "contacts_465_property_zip_ab3", - "contacts_472_property_address", - "contacts_472_property_address_ab1", - "contacts_472_property_address_ab2", - "contacts_472_property_address_ab3", - "contacts_48e_property_hs_legal_basis", - "contacts_48e_property_hs_legal_basis_ab1", - "contacts_48e_property_hs_legal_basis_ab2", - "contacts_48e_property_hs_legal_basis_ab3", - "contacts_49c_property_hs_facebook_ad_clicked", - "contacts_49c_property_hs_facebook_ad_clicked_ab1", - "contacts_49c_property_hs_facebook_ad_clicked_ab2", - "contacts_49c_property_hs_facebook_ad_clicked_ab3", - "contacts_4ab_property_closedate", - "contacts_4ab_property_closedate_ab1", - "contacts_4ab_property_closedate_ab2", - "contacts_4ab_property_closedate_ab3", - "contacts_4c9_property_num_conversion_events", - "contacts_4c9_property_num_conversion_events_ab1", - "contacts_4c9_property_num_conversion_events_ab2", - "contacts_4c9_property_num_conversion_events_ab3", - "contacts_4e2_property_hs_calculated_phone_number", - "contacts_4e2_property_hs_calculated_phone_number_ab1", - "contacts_4e2_property_hs_calculated_phone_number_ab2", - "contacts_4e2_property_hs_calculated_phone_number_ab3", - "contacts_4fc_property_num_unique_conversion_events", - "contacts_4fc_property_num_unique_conversion_events_ab1", - "contacts_4fc_property_num_unique_conversion_events_ab2", - "contacts_4fc_property_num_unique_conversion_events_ab3", - "contacts_503_property_firstname", - "contacts_503_property_firstname_ab1", - "contacts_503_property_firstname_ab2", - "contacts_503_property_firstname_ab3", - "contacts_505_property_hs_email_bounce", - "contacts_505_property_hs_email_bounce_ab1", - "contacts_505_property_hs_email_bounce_ab2", - "contacts_505_property_hs_email_bounce_ab3", - "contacts_507_property_seniority", - "contacts_507_property_seniority_ab1", - "contacts_507_property_seniority_ab2", - "contacts_507_property_seniority_ab3", - "contacts_516_property_start_date", - "contacts_516_property_start_date_ab1", - "contacts_516_property_start_date_ab2", - "contacts_516_property_start_date_ab3", - "contacts_520_property_hs_lastmodifieddate", - "contacts_520_property_hs_lastmodifieddate_ab1", - "contacts_520_property_hs_lastmodifieddate_ab2", - "contacts_520_property_hs_lastmodifieddate_ab3", - "contacts_541_property_hs_lifecyclestage_subscriber_date", - "contacts_541_property_hs_lifecyclestage_subscriber_date_ab1", - "contacts_541_property_hs_lifecyclestage_subscriber_date_ab2", - "contacts_541_property_hs_lifecyclestage_subscriber_date_ab3", - "contacts_546_property_hs_buying_role", - "contacts_546_property_hs_buying_role_ab1", - "contacts_546_property_hs_buying_role_ab2", - "contacts_546_property_hs_buying_role_ab3", - "contacts_569_property_num_associated_deals", - "contacts_569_property_num_associated_deals_ab1", - "contacts_569_property_num_associated_deals_ab2", - "contacts_569_property_num_associated_deals_ab3", - "contacts_58a_property_annualrevenue", - "contacts_58a_property_annualrevenue_ab1", - "contacts_58a_property_annualrevenue_ab2", - "contacts_58a_property_annualrevenue_ab3", - "contacts_5a2_list_memberships", - "contacts_5a2_list_memberships_ab1", - "contacts_5a2_list_memberships_ab2", - "contacts_5a2_list_memberships_ab3", - "contacts_5b6_property_hs_calculated_merged_vids", - "contacts_5b6_property_hs_calculated_merged_vids_ab1", - "contacts_5b6_property_hs_calculated_merged_vids_ab2", - "contacts_5b6_property_hs_calculated_merged_vids_ab3", - "contacts_5c6_property_hs_sales_email_last_clicked", - "contacts_5c6_property_hs_sales_email_last_clicked_ab1", - "contacts_5c6_property_hs_sales_email_last_clicked_ab2", - "contacts_5c6_property_hs_sales_email_last_clicked_ab3", - "contacts_5cb_property_hs_sales_email_last_opened", - "contacts_5cb_property_hs_sales_email_last_opened_ab1", - "contacts_5cb_property_hs_sales_email_last_opened_ab2", - "contacts_5cb_property_hs_sales_email_last_opened_ab3", - "contacts_5fe_property_lastname", - "contacts_5fe_property_lastname_ab1", - "contacts_5fe_property_lastname_ab2", - "contacts_5fe_property_lastname_ab3", - "contacts_600_property_hs_is_contact", - "contacts_600_property_hs_is_contact_ab1", - "contacts_600_property_hs_is_contact_ab2", - "contacts_600_property_hs_is_contact_ab3", - "contacts_606_property_hs_analytics_num_visits", - "contacts_606_property_hs_analytics_num_visits_ab1", - "contacts_606_property_hs_analytics_num_visits_ab2", - "contacts_606_property_hs_analytics_num_visits_ab3", - "contacts_646_properties_versions", - "contacts_646_properties_versions_ab1", - "contacts_646_properties_versions_ab2", - "contacts_646_properties_versions_ab3", - "contacts_65f_property_hs_lead_status", - "contacts_65f_property_hs_lead_status_ab1", - "contacts_65f_property_hs_lead_status_ab2", - "contacts_65f_property_hs_lead_status_ab3", - "contacts_663_property_hs_ip_timezone", - "contacts_663_property_hs_ip_timezone_ab1", - "contacts_663_property_hs_ip_timezone_ab2", - "contacts_663_property_hs_ip_timezone_ab3", - "contacts_663_property_marital_status", - "contacts_663_property_marital_status_ab1", - "contacts_663_property_marital_status_ab2", - "contacts_663_property_marital_status_ab3", - "contacts_673_property_associatedcompanyid", - "contacts_673_property_associatedcompanyid_ab1", - "contacts_673_property_associatedcompanyid_ab2", - "contacts_673_property_associatedcompanyid_ab3", - "contacts_688_property_hs_all_team_ids", - "contacts_688_property_hs_all_team_ids_ab1", - "contacts_688_property_hs_all_team_ids_ab2", - "contacts_688_property_hs_all_team_ids_ab3", - "contacts_68d_property_hs_email_last_click_date", - "contacts_68d_property_hs_email_last_click_date_ab1", - "contacts_68d_property_hs_email_last_click_date_ab2", - "contacts_68d_property_hs_email_last_click_date_ab3", - "contacts_690_property_hs_language", - "contacts_690_property_hs_language_ab1", - "contacts_690_property_hs_language_ab2", - "contacts_690_property_hs_language_ab3", - "contacts_6ee_property_hs_analytics_first_timestamp", - "contacts_6ee_property_hs_analytics_first_timestamp_ab1", - "contacts_6ee_property_hs_analytics_first_timestamp_ab2", - "contacts_6ee_property_hs_analytics_first_timestamp_ab3", - "contacts_6f4_property_hs_analytics_revenue", - "contacts_6f4_property_hs_analytics_revenue_ab1", - "contacts_6f4_property_hs_analytics_revenue_ab2", - "contacts_6f4_property_hs_analytics_revenue_ab3", - "contacts_6fa_property_hs_object_id", - "contacts_6fa_property_hs_object_id_ab1", - "contacts_6fa_property_hs_object_id_ab2", - "contacts_6fa_property_hs_object_id_ab3", - "contacts_6ff_property_hs_analytics_last_timestamp", - "contacts_6ff_property_hs_analytics_last_timestamp_ab1", - "contacts_6ff_property_hs_analytics_last_timestamp_ab2", - "contacts_6ff_property_hs_analytics_last_timestamp_ab3", - "contacts_713_property_first_conversion_date", - "contacts_713_property_first_conversion_date_ab1", - "contacts_713_property_first_conversion_date_ab2", - "contacts_713_property_first_conversion_date_ab3", - "contacts_71c_property_notes_last_updated", - "contacts_71c_property_notes_last_updated_ab1", - "contacts_71c_property_notes_last_updated_ab2", - "contacts_71c_property_notes_last_updated_ab3", - "contacts_744_property_company_size", - "contacts_744_property_company_size_ab1", - "contacts_744_property_company_size_ab2", - "contacts_744_property_company_size_ab3", - "contacts_759_property_hs_analytics_source_data_1", - "contacts_759_property_hs_analytics_source_data_1_ab1", - "contacts_759_property_hs_analytics_source_data_1_ab2", - "contacts_759_property_hs_analytics_source_data_1_ab3", - "contacts_75f_property_hs_lifecyclestage_evangelist_date", - "contacts_75f_property_hs_lifecyclestage_evangelist_date_ab1", - "contacts_75f_property_hs_lifecyclestage_evangelist_date_ab2", - "contacts_75f_property_hs_lifecyclestage_evangelist_date_ab3", - "contacts_79b_property_mobilephone", - "contacts_79b_property_mobilephone_ab1", - "contacts_79b_property_mobilephone_ab2", - "contacts_79b_property_mobilephone_ab3", - "contacts_7aa_property_hs_user_ids_of_all_owners", - "contacts_7aa_property_hs_user_ids_of_all_owners_ab1", - "contacts_7aa_property_hs_user_ids_of_all_owners_ab2", - "contacts_7aa_property_hs_user_ids_of_all_owners_ab3", - "contacts_7b0_property_days_to_close", - "contacts_7b0_property_days_to_close_ab1", - "contacts_7b0_property_days_to_close_ab2", - "contacts_7b0_property_days_to_close_ab3", - "contacts_811_property_hs_analytics_last_touch_converting_campaign", - "contacts_811_property_hs_analytics_last_touch_converting_campaign_ab1", - "contacts_811_property_hs_analytics_last_touch_converting_campaign_ab2", - "contacts_811_property_hs_analytics_last_touch_converting_campaign_ab3", - "contacts_822_property_hs_email_last_email_name", - "contacts_822_property_hs_email_last_email_name_ab1", - "contacts_822_property_hs_email_last_email_name_ab2", - "contacts_822_property_hs_email_last_email_name_ab3", - "contacts_86f_property_company", - "contacts_86f_property_company_ab1", - "contacts_86f_property_company_ab2", - "contacts_86f_property_company_ab3", - "contacts_886_property_hs_all_accessible_team_ids", - "contacts_886_property_hs_all_accessible_team_ids_ab1", - "contacts_886_property_hs_all_accessible_team_ids_ab2", - "contacts_886_property_hs_all_accessible_team_ids_ab3", - "contacts_893_property_message", - "contacts_893_property_message_ab1", - "contacts_893_property_message_ab2", - "contacts_893_property_message_ab3", - "contacts_8ae_property_gender", - "contacts_8ae_property_gender_ab1", - "contacts_8ae_property_gender_ab2", - "contacts_8ae_property_gender_ab3", - "contacts_8c7_property_num_contacted_notes", - "contacts_8c7_property_num_contacted_notes_ab1", - "contacts_8c7_property_num_contacted_notes_ab2", - "contacts_8c7_property_num_contacted_notes_ab3", - "contacts_8ca_property_total_revenue", - "contacts_8ca_property_total_revenue_ab1", - "contacts_8ca_property_total_revenue_ab2", - "contacts_8ca_property_total_revenue_ab3", - "contacts_8cb_property_hs_analytics_last_visit_timestamp", - "contacts_8cb_property_hs_analytics_last_visit_timestamp_ab1", - "contacts_8cb_property_hs_analytics_last_visit_timestamp_ab2", - "contacts_8cb_property_hs_analytics_last_visit_timestamp_ab3", - "contacts_8cd_property_surveymonkeyeventlastupdated", - "contacts_8cd_property_surveymonkeyeventlastupdated_ab1", - "contacts_8cd_property_surveymonkeyeventlastupdated_ab2", - "contacts_8cd_property_surveymonkeyeventlastupdated_ab3", - "contacts_8ed_property_hs_all_owner_ids", - "contacts_8ed_property_hs_all_owner_ids_ab1", - "contacts_8ed_property_hs_all_owner_ids_ab2", - "contacts_8ed_property_hs_all_owner_ids_ab3", - "contacts_901_property_hs_emailconfirmationstatus", - "contacts_901_property_hs_emailconfirmationstatus_ab1", - "contacts_901_property_hs_emailconfirmationstatus_ab2", - "contacts_901_property_hs_emailconfirmationstatus_ab3", - "contacts_936_property_hs_email_hard_bounce_reason", - "contacts_936_property_hs_email_hard_bounce_reason_ab1", - "contacts_936_property_hs_email_hard_bounce_reason_ab2", - "contacts_936_property_hs_email_hard_bounce_reason_ab3", - "contacts_938_property_hs_email_first_open_date", - "contacts_938_property_hs_email_first_open_date_ab1", - "contacts_938_property_hs_email_first_open_date_ab2", - "contacts_938_property_hs_email_first_open_date_ab3", - "contacts_964_property_notes_last_contacted", - "contacts_964_property_notes_last_contacted_ab1", - "contacts_964_property_notes_last_contacted_ab2", - "contacts_964_property_notes_last_contacted_ab3", - "contacts_982_form_submissions", - "contacts_982_form_submissions_ab1", - "contacts_982_form_submissions_ab2", - "contacts_982_form_submissions_ab3", - "contacts_98a_property_hs_content_membership_notes", - "contacts_98a_property_hs_content_membership_notes_ab1", - "contacts_98a_property_hs_content_membership_notes_ab2", - "contacts_98a_property_hs_content_membership_notes_ab3", - "contacts_994_property_hs_analytics_source_data_2", - "contacts_994_property_hs_analytics_source_data_2_ab1", - "contacts_994_property_hs_analytics_source_data_2_ab2", - "contacts_994_property_hs_analytics_source_data_2_ab3", - "contacts_99b_property_lastmodifieddate", - "contacts_99b_property_lastmodifieddate_ab1", - "contacts_99b_property_lastmodifieddate_ab2", - "contacts_99b_property_lastmodifieddate_ab3", - "contacts_9b0_property_hs_content_membership_status", - "contacts_9b0_property_hs_content_membership_status_ab1", - "contacts_9b0_property_hs_content_membership_status_ab2", - "contacts_9b0_property_hs_content_membership_status_ab3", - "contacts_9c3_property_hs_searchable_calculated_phone_number", - "contacts_9c3_property_hs_searchable_calculated_phone_number_ab1", - "contacts_9c3_property_hs_searchable_calculated_phone_number_ab2", - "contacts_9c3_property_hs_searchable_calculated_phone_number_ab3", - "contacts_9ca_property_ip_state_code", - "contacts_9ca_property_ip_state_code_ab1", - "contacts_9ca_property_ip_state_code_ab2", - "contacts_9ca_property_ip_state_code_ab3", - "contacts_9dd_property_hs_testrollback", - "contacts_9dd_property_hs_testrollback_ab1", - "contacts_9dd_property_hs_testrollback_ab2", - "contacts_9dd_property_hs_testrollback_ab3", - "contacts_9de_property_hs_email_first_click_date", - "contacts_9de_property_hs_email_first_click_date_ab1", - "contacts_9de_property_hs_email_first_click_date_ab2", - "contacts_9de_property_hs_email_first_click_date_ab3", - "contacts_9fe_property_hs_created_by_conversations", - "contacts_9fe_property_hs_created_by_conversations_ab1", - "contacts_9fe_property_hs_created_by_conversations_ab2", - "contacts_9fe_property_hs_created_by_conversations_ab3", - "contacts_a25_property_hs_latest_meeting_activity", - "contacts_a25_property_hs_latest_meeting_activity_ab1", - "contacts_a25_property_hs_latest_meeting_activity_ab2", - "contacts_a25_property_hs_latest_meeting_activity_ab3", - "contacts_a2f_property_hs_sequences_is_enrolled", - "contacts_a2f_property_hs_sequences_is_enrolled_ab1", - "contacts_a2f_property_hs_sequences_is_enrolled_ab2", - "contacts_a2f_property_hs_sequences_is_enrolled_ab3", - "contacts_a60_property_hs_analytics_first_touch_converting_campaign", - "contacts_a60_property_hs_analytics_first_touch_converting_campaign_ab1", - "contacts_a60_property_hs_analytics_first_touch_converting_campaign_ab2", - "contacts_a60_property_hs_analytics_first_touch_converting_campaign_ab3", - "contacts_a6f_property_first_deal_created_date", - "contacts_a6f_property_first_deal_created_date_ab1", - "contacts_a6f_property_first_deal_created_date_ab2", - "contacts_a6f_property_first_deal_created_date_ab3", - "contacts_a76_property_field_of_study", - "contacts_a76_property_field_of_study_ab1", - "contacts_a76_property_field_of_study_ab2", - "contacts_a76_property_field_of_study_ab3", - "contacts_a85_property_hs_analytics_average_page_views", - "contacts_a85_property_hs_analytics_average_page_views_ab1", - "contacts_a85_property_hs_analytics_average_page_views_ab2", - "contacts_a85_property_hs_analytics_average_page_views_ab3", - "contacts_a92_property_hs_sales_email_last_replied", - "contacts_a92_property_hs_sales_email_last_replied_ab1", - "contacts_a92_property_hs_sales_email_last_replied_ab2", - "contacts_a92_property_hs_sales_email_last_replied_ab3", - "contacts_aa6_property_hs_analytics_first_visit_timestamp", - "contacts_aa6_property_hs_analytics_first_visit_timestamp_ab1", - "contacts_aa6_property_hs_analytics_first_visit_timestamp_ab2", - "contacts_aa6_property_hs_analytics_first_visit_timestamp_ab3", - "contacts_aa8_property_hubspot_owner_assigneddate", - "contacts_aa8_property_hubspot_owner_assigneddate_ab1", - "contacts_aa8_property_hubspot_owner_assigneddate_ab2", - "contacts_aa8_property_hubspot_owner_assigneddate_ab3", - "contacts_ab7_property_ip_state", - "contacts_ab7_property_ip_state_ab1", - "contacts_ab7_property_ip_state_ab2", - "contacts_ab7_property_ip_state_ab3", - "contacts_ac7_property_hs_email_sends_since_last_engagement", - "contacts_ac7_property_hs_email_sends_since_last_engagement_ab1", - "contacts_ac7_property_hs_email_sends_since_last_engagement_ab2", - "contacts_ac7_property_hs_email_sends_since_last_engagement_ab3", - "contacts_ac8_property_ip_city", - "contacts_ac8_property_ip_city_ab1", - "contacts_ac8_property_ip_city_ab2", - "contacts_ac8_property_ip_city_ab3", - "contacts_aff_property_recent_deal_close_date", - "contacts_aff_property_recent_deal_close_date_ab1", - "contacts_aff_property_recent_deal_close_date_ab2", - "contacts_aff_property_recent_deal_close_date_ab3", - "contacts_associated_company_006_property_num_notes", - "contacts_associated_company_006_property_num_notes_ab1", - "contacts_associated_company_006_property_num_notes_ab2", - "contacts_associated_company_006_property_num_notes_ab3", - "contacts_associated_company_041_property_is_public", - "contacts_associated_company_041_property_is_public_ab1", - "contacts_associated_company_041_property_is_public_ab2", - "contacts_associated_company_041_property_is_public_ab3", - "contacts_associated_company_04f_property_hs_num_blockers", - "contacts_associated_company_04f_property_hs_num_blockers_ab1", - "contacts_associated_company_04f_property_hs_num_blockers_ab2", - "contacts_associated_company_04f_property_hs_num_blockers_ab3", - "contacts_associated_company_05d_property_hs_object_id", - "contacts_associated_company_05d_property_hs_object_id_ab1", - "contacts_associated_company_05d_property_hs_object_id_ab2", - "contacts_associated_company_05d_property_hs_object_id_ab3", - "contacts_associated_company_087_property_hs_lastmodifieddate", - "contacts_associated_company_087_property_hs_lastmodifieddate_ab1", - "contacts_associated_company_087_property_hs_lastmodifieddate_ab2", - "contacts_associated_company_087_property_hs_lastmodifieddate_ab3", - "contacts_associated_company_089_property_hs_num_decision_makers", - "contacts_associated_company_089_property_hs_num_decision_makers_ab1", - "contacts_associated_company_089_property_hs_num_decision_makers_ab2", - "contacts_associated_company_089_property_hs_num_decision_makers_ab3", - "contacts_associated_company_09c_property_hs_additional_domains", - "contacts_associated_company_09c_property_hs_additional_domains_ab1", - "contacts_associated_company_09c_property_hs_additional_domains_ab2", - "contacts_associated_company_09c_property_hs_additional_domains_ab3", - "contacts_associated_company_0db_property_hs_analytics_first_timestamp", - "contacts_associated_company_0db_property_hs_analytics_first_timestamp_ab1", - "contacts_associated_company_0db_property_hs_analytics_first_timestamp_ab2", - "contacts_associated_company_0db_property_hs_analytics_first_timestamp_ab3", - "contacts_associated_company_0fe_property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1", - "contacts_associated_company_0fe_property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab1", - "contacts_associated_company_0fe_property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab2", - "contacts_associated_company_0fe_property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab3", - "contacts_associated_company_107_property_linkedinbio", - "contacts_associated_company_107_property_linkedinbio_ab1", - "contacts_associated_company_107_property_linkedinbio_ab2", - "contacts_associated_company_107_property_linkedinbio_ab3", - "contacts_associated_company_12c_property_first_conversion_date_timestamp_earliest_value_61f58f2c", - "contacts_associated_company_12c_property_first_conversion_date_timestamp_earliest_value_61f58f2c_ab1", - "contacts_associated_company_12c_property_first_conversion_date_timestamp_earliest_value_61f58f2c_ab2", - "contacts_associated_company_12c_property_first_conversion_date_timestamp_earliest_value_61f58f2c_ab3", - "contacts_associated_company_147_property_notes_next_activity_date", - "contacts_associated_company_147_property_notes_next_activity_date_ab1", - "contacts_associated_company_147_property_notes_next_activity_date_ab2", - "contacts_associated_company_147_property_notes_next_activity_date_ab3", - "contacts_associated_company_16f_property_hs_lead_status", - "contacts_associated_company_16f_property_hs_lead_status_ab1", - "contacts_associated_company_16f_property_hs_lead_status_ab2", - "contacts_associated_company_16f_property_hs_lead_status_ab3", - "contacts_associated_company_171_property_address", - "contacts_associated_company_171_property_address_ab1", - "contacts_associated_company_171_property_address_ab2", - "contacts_associated_company_171_property_address_ab3", - "contacts_associated_company_1bc_property_hs_last_open_task_date", - "contacts_associated_company_1bc_property_hs_last_open_task_date_ab1", - "contacts_associated_company_1bc_property_hs_last_open_task_date_ab2", - "contacts_associated_company_1bc_property_hs_last_open_task_date_ab3", - "contacts_associated_company_1cb_property_engagements_last_meeting_booked", - "contacts_associated_company_1cb_property_engagements_last_meeting_booked_ab1", - "contacts_associated_company_1cb_property_engagements_last_meeting_booked_ab2", - "contacts_associated_company_1cb_property_engagements_last_meeting_booked_ab3", - "contacts_associated_company_1d9_property_hs_analytics_num_visits", - "contacts_associated_company_1d9_property_hs_analytics_num_visits_ab1", - "contacts_associated_company_1d9_property_hs_analytics_num_visits_ab2", - "contacts_associated_company_1d9_property_hs_analytics_num_visits_ab3", - "contacts_associated_company_1e5_property_hs_last_logged_call_date", - "contacts_associated_company_1e5_property_hs_last_logged_call_date_ab1", - "contacts_associated_company_1e5_property_hs_last_logged_call_date_ab2", - "contacts_associated_company_1e5_property_hs_last_logged_call_date_ab3", - "contacts_associated_company_1e6_property_facebook_company_page", - "contacts_associated_company_1e6_property_facebook_company_page_ab1", - "contacts_associated_company_1e6_property_facebook_company_page_ab2", - "contacts_associated_company_1e6_property_facebook_company_page_ab3", - "contacts_associated_company_1f5_property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae", - "contacts_associated_company_1f5_property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab1", - "contacts_associated_company_1f5_property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab2", - "contacts_associated_company_1f5_property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab3", - "contacts_associated_company_211_property_closedate", - "contacts_associated_company_211_property_closedate_ab1", - "contacts_associated_company_211_property_closedate_ab2", - "contacts_associated_company_211_property_closedate_ab3", - "contacts_associated_company_246_property_closedate_timestamp_earliest_value_a2a17e6e", - "contacts_associated_company_246_property_closedate_timestamp_earliest_value_a2a17e6e_ab1", - "contacts_associated_company_246_property_closedate_timestamp_earliest_value_a2a17e6e_ab2", - "contacts_associated_company_246_property_closedate_timestamp_earliest_value_a2a17e6e_ab3", - "contacts_associated_company_24d_property_hs_last_sales_activity_date", - "contacts_associated_company_24d_property_hs_last_sales_activity_date_ab1", - "contacts_associated_company_24d_property_hs_last_sales_activity_date_ab2", - "contacts_associated_company_24d_property_hs_last_sales_activity_date_ab3", - "contacts_associated_company_283_property_description", - "contacts_associated_company_283_property_description_ab1", - "contacts_associated_company_283_property_description_ab2", - "contacts_associated_company_283_property_description_ab3", - "contacts_associated_company_2bf_property_hs_analytics_num_visits_cardinality_sum_53d952a6", - "contacts_associated_company_2bf_property_hs_analytics_num_visits_cardinality_sum_53d952a6_ab1", - "contacts_associated_company_2bf_property_hs_analytics_num_visits_cardinality_sum_53d952a6_ab2", - "contacts_associated_company_2bf_property_hs_analytics_num_visits_cardinality_sum_53d952a6_ab3", - "contacts_associated_company_2cc_property_domain", - "contacts_associated_company_2cc_property_domain_ab1", - "contacts_associated_company_2cc_property_domain_ab2", - "contacts_associated_company_2cc_property_domain_ab3", - "contacts_associated_company_300_property_hs_analytics_source_data_1", - "contacts_associated_company_300_property_hs_analytics_source_data_1_ab1", - "contacts_associated_company_300_property_hs_analytics_source_data_1_ab2", - "contacts_associated_company_300_property_hs_analytics_source_data_1_ab3", - "contacts_associated_company_380_property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e", - "contacts_associated_company_380_property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab1", - "contacts_associated_company_380_property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab2", - "contacts_associated_company_380_property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab3", - "contacts_associated_company_3aa_property_createdate", - "contacts_associated_company_3aa_property_createdate_ab1", - "contacts_associated_company_3aa_property_createdate_ab2", - "contacts_associated_company_3aa_property_createdate_ab3", - "contacts_associated_company_3d7_property_num_associated_contacts", - "contacts_associated_company_3d7_property_num_associated_contacts_ab1", - "contacts_associated_company_3d7_property_num_associated_contacts_ab2", - "contacts_associated_company_3d7_property_num_associated_contacts_ab3", - "contacts_associated_company_405_property_hs_target_account_recommendation_state", - "contacts_associated_company_405_property_hs_target_account_recommendation_state_ab1", - "contacts_associated_company_405_property_hs_target_account_recommendation_state_ab2", - "contacts_associated_company_405_property_hs_target_account_recommendation_state_ab3", - "contacts_associated_company_44b_property_hs_ideal_customer_profile", - "contacts_associated_company_44b_property_hs_ideal_customer_profile_ab1", - "contacts_associated_company_44b_property_hs_ideal_customer_profile_ab2", - "contacts_associated_company_44b_property_hs_ideal_customer_profile_ab3", - "contacts_associated_company_457_property_state", - "contacts_associated_company_457_property_state_ab1", - "contacts_associated_company_457_property_state_ab2", - "contacts_associated_company_457_property_state_ab3", - "contacts_associated_company_459_property_notes_last_updated", - "contacts_associated_company_459_property_notes_last_updated_ab1", - "contacts_associated_company_459_property_notes_last_updated_ab2", - "contacts_associated_company_459_property_notes_last_updated_ab3", - "contacts_associated_company_47a_property_engagements_last_meeting_booked_source", - "contacts_associated_company_47a_property_engagements_last_meeting_booked_source_ab1", - "contacts_associated_company_47a_property_engagements_last_meeting_booked_source_ab2", - "contacts_associated_company_47a_property_engagements_last_meeting_booked_source_ab3", - "contacts_associated_company_51e_property_days_to_close", - "contacts_associated_company_51e_property_days_to_close_ab1", - "contacts_associated_company_51e_property_days_to_close_ab2", - "contacts_associated_company_51e_property_days_to_close_ab3", - "contacts_associated_company_521_property_hs_target_account_probability", - "contacts_associated_company_521_property_hs_target_account_probability_ab1", - "contacts_associated_company_521_property_hs_target_account_probability_ab2", - "contacts_associated_company_521_property_hs_target_account_probability_ab3", - "contacts_associated_company_524_property_hs_analytics_source_timestamp_earliest_value_25a3a52c", - "contacts_associated_company_524_property_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab1", - "contacts_associated_company_524_property_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab2", - "contacts_associated_company_524_property_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab3", - "contacts_associated_company_542_property_hs_target_account", - "contacts_associated_company_542_property_hs_target_account_ab1", - "contacts_associated_company_542_property_hs_target_account_ab2", - "contacts_associated_company_542_property_hs_target_account_ab3", - "contacts_associated_company_554_property_first_deal_created_date", - "contacts_associated_company_554_property_first_deal_created_date_ab1", - "contacts_associated_company_554_property_first_deal_created_date_ab2", - "contacts_associated_company_554_property_first_deal_created_date_ab3", - "contacts_associated_company_554_property_total_money_raised", - "contacts_associated_company_554_property_total_money_raised_ab1", - "contacts_associated_company_554_property_total_money_raised_ab2", - "contacts_associated_company_554_property_total_money_raised_ab3", - "contacts_associated_company_582_property_hubspot_owner_assigneddate", - "contacts_associated_company_582_property_hubspot_owner_assigneddate_ab1", - "contacts_associated_company_582_property_hubspot_owner_assigneddate_ab2", - "contacts_associated_company_582_property_hubspot_owner_assigneddate_ab3", - "contacts_associated_company_59c_property_num_conversion_events_cardinality_sum_d095f14b", - "contacts_associated_company_59c_property_num_conversion_events_cardinality_sum_d095f14b_ab1", - "contacts_associated_company_59c_property_num_conversion_events_cardinality_sum_d095f14b_ab2", - "contacts_associated_company_59c_property_num_conversion_events_cardinality_sum_d095f14b_ab3", - "contacts_associated_company_5e3_property_hs_all_accessible_team_ids", - "contacts_associated_company_5e3_property_hs_all_accessible_team_ids_ab1", - "contacts_associated_company_5e3_property_hs_all_accessible_team_ids_ab2", - "contacts_associated_company_5e3_property_hs_all_accessible_team_ids_ab3", - "contacts_associated_company_5e6_properties_versions", - "contacts_associated_company_5e6_properties_versions_ab1", - "contacts_associated_company_5e6_properties_versions_ab2", - "contacts_associated_company_5e6_properties_versions_ab3", - "contacts_associated_company_610_property_hs_analytics_last_visit_timestamp", - "contacts_associated_company_610_property_hs_analytics_last_visit_timestamp_ab1", - "contacts_associated_company_610_property_hs_analytics_last_visit_timestamp_ab2", - "contacts_associated_company_610_property_hs_analytics_last_visit_timestamp_ab3", - "contacts_associated_company_615_property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10", - "contacts_associated_company_615_property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab1", - "contacts_associated_company_615_property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab2", - "contacts_associated_company_615_property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab3", - "contacts_associated_company_621_property_address2", - "contacts_associated_company_621_property_address2_ab1", - "contacts_associated_company_621_property_address2_ab2", - "contacts_associated_company_621_property_address2_ab3", - "contacts_associated_company_622_property_hs_analytics_last_touch_converting_campaign", - "contacts_associated_company_622_property_hs_analytics_last_touch_converting_campaign_ab1", - "contacts_associated_company_622_property_hs_analytics_last_touch_converting_campaign_ab2", - "contacts_associated_company_622_property_hs_analytics_last_touch_converting_campaign_ab3", - "contacts_associated_company_633_property_hs_all_owner_ids", - "contacts_associated_company_633_property_hs_all_owner_ids_ab1", - "contacts_associated_company_633_property_hs_all_owner_ids_ab2", - "contacts_associated_company_633_property_hs_all_owner_ids_ab3", - "contacts_associated_company_684_property_engagements_last_meeting_booked_medium", - "contacts_associated_company_684_property_engagements_last_meeting_booked_medium_ab1", - "contacts_associated_company_684_property_engagements_last_meeting_booked_medium_ab2", - "contacts_associated_company_684_property_engagements_last_meeting_booked_medium_ab3", - "contacts_associated_company_6b4_property_numberofemployees", - "contacts_associated_company_6b4_property_numberofemployees_ab1", - "contacts_associated_company_6b4_property_numberofemployees_ab2", - "contacts_associated_company_6b4_property_numberofemployees_ab3", - "contacts_associated_company_6db_property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a", - "contacts_associated_company_6db_property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab1", - "contacts_associated_company_6db_property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab2", - "contacts_associated_company_6db_property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab3", - "contacts_associated_company_710_property_hs_is_target_account", - "contacts_associated_company_710_property_hs_is_target_account_ab1", - "contacts_associated_company_710_property_hs_is_target_account_ab2", - "contacts_associated_company_710_property_hs_is_target_account_ab3", - "contacts_associated_company_71b_property_hs_num_child_companies", - "contacts_associated_company_71b_property_hs_num_child_companies_ab1", - "contacts_associated_company_71b_property_hs_num_child_companies_ab2", - "contacts_associated_company_71b_property_hs_num_child_companies_ab3", - "contacts_associated_company_772_property_hs_analytics_first_touch_converting_campaign", - "contacts_associated_company_772_property_hs_analytics_first_touch_converting_campaign_ab1", - "contacts_associated_company_772_property_hs_analytics_first_touch_converting_campaign_ab2", - "contacts_associated_company_772_property_hs_analytics_first_touch_converting_campaign_ab3", - "contacts_associated_company_792_property_hs_createdate", - "contacts_associated_company_792_property_hs_createdate_ab1", - "contacts_associated_company_792_property_hs_createdate_ab2", - "contacts_associated_company_792_property_hs_createdate_ab3", - "contacts_associated_company_79b_property_notes_last_contacted", - "contacts_associated_company_79b_property_notes_last_contacted_ab1", - "contacts_associated_company_79b_property_notes_last_contacted_ab2", - "contacts_associated_company_79b_property_notes_last_contacted_ab3", - "contacts_associated_company_7bd_property_twitterhandle", - "contacts_associated_company_7bd_property_twitterhandle_ab1", - "contacts_associated_company_7bd_property_twitterhandle_ab2", - "contacts_associated_company_7bd_property_twitterhandle_ab3", - "contacts_associated_company_7d9_property_facebookfans", - "contacts_associated_company_7d9_property_facebookfans_ab1", - "contacts_associated_company_7d9_property_facebookfans_ab2", - "contacts_associated_company_7d9_property_facebookfans_ab3", - "contacts_associated_company_801_property_first_contact_createdate", - "contacts_associated_company_801_property_first_contact_createdate_ab1", - "contacts_associated_company_801_property_first_contact_createdate_ab2", - "contacts_associated_company_801_property_first_contact_createdate_ab3", - "contacts_associated_company_804_property_lifecyclestage", - "contacts_associated_company_804_property_lifecyclestage_ab1", - "contacts_associated_company_804_property_lifecyclestage_ab2", - "contacts_associated_company_804_property_lifecyclestage_ab3", - "contacts_associated_company_810_property_hs_updated_by_user_id", - "contacts_associated_company_810_property_hs_updated_by_user_id_ab1", - "contacts_associated_company_810_property_hs_updated_by_user_id_ab2", - "contacts_associated_company_810_property_hs_updated_by_user_id_ab3", - "contacts_associated_company_86d_property_twitterfollowers", - "contacts_associated_company_86d_property_twitterfollowers_ab1", - "contacts_associated_company_86d_property_twitterfollowers_ab2", - "contacts_associated_company_86d_property_twitterfollowers_ab3", - "contacts_associated_company_872_property_industry", - "contacts_associated_company_872_property_industry_ab1", - "contacts_associated_company_872_property_industry_ab2", - "contacts_associated_company_872_property_industry_ab3", - "contacts_associated_company_883_property_phone", - "contacts_associated_company_883_property_phone_ab1", - "contacts_associated_company_883_property_phone_ab2", - "contacts_associated_company_883_property_phone_ab3", - "contacts_associated_company_899_property_hs_analytics_num_page_views_cardinality_sum_e46e85b0", - "contacts_associated_company_899_property_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab1", - "contacts_associated_company_899_property_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab2", - "contacts_associated_company_899_property_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab3", - "contacts_associated_company_8e9_property_hubspot_team_id", - "contacts_associated_company_8e9_property_hubspot_team_id_ab1", - "contacts_associated_company_8e9_property_hubspot_team_id_ab2", - "contacts_associated_company_8e9_property_hubspot_team_id_ab3", - "contacts_associated_company_8ef_property_zip", - "contacts_associated_company_8ef_property_zip_ab1", - "contacts_associated_company_8ef_property_zip_ab2", - "contacts_associated_company_8ef_property_zip_ab3", - "contacts_associated_company_924_property_hs_last_booked_meeting_date", - "contacts_associated_company_924_property_hs_last_booked_meeting_date_ab1", - "contacts_associated_company_924_property_hs_last_booked_meeting_date_ab2", - "contacts_associated_company_924_property_hs_last_booked_meeting_date_ab3", - "contacts_associated_company_93b_property_hs_latest_meeting_activity", - "contacts_associated_company_93b_property_hs_latest_meeting_activity_ab1", - "contacts_associated_company_93b_property_hs_latest_meeting_activity_ab2", - "contacts_associated_company_93b_property_hs_latest_meeting_activity_ab3", - "contacts_associated_company_973_property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce", - "contacts_associated_company_973_property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab1", - "contacts_associated_company_973_property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab2", - "contacts_associated_company_973_property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab3", - "contacts_associated_company_98c_property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30", - "contacts_associated_company_98c_property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab1", - "contacts_associated_company_98c_property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab2", - "contacts_associated_company_98c_property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab3", - "contacts_associated_company_9a4_property_hs_analytics_first_visit_timestamp", - "contacts_associated_company_9a4_property_hs_analytics_first_visit_timestamp_ab1", - "contacts_associated_company_9a4_property_hs_analytics_first_visit_timestamp_ab2", - "contacts_associated_company_9a4_property_hs_analytics_first_visit_timestamp_ab3", - "contacts_associated_company_9b2_property_web_technologies", - "contacts_associated_company_9b2_property_web_technologies_ab1", - "contacts_associated_company_9b2_property_web_technologies_ab2", - "contacts_associated_company_9b2_property_web_technologies_ab3", - "contacts_associated_company_9b7_property_hs_created_by_user_id", - "contacts_associated_company_9b7_property_hs_created_by_user_id_ab1", - "contacts_associated_company_9b7_property_hs_created_by_user_id_ab2", - "contacts_associated_company_9b7_property_hs_created_by_user_id_ab3", - "contacts_associated_company_9d3_property_num_associated_deals", - "contacts_associated_company_9d3_property_num_associated_deals_ab1", - "contacts_associated_company_9d3_property_num_associated_deals_ab2", - "contacts_associated_company_9d3_property_num_associated_deals_ab3", - "contacts_associated_company_a22_property_annualrevenue", - "contacts_associated_company_a22_property_annualrevenue_ab1", - "contacts_associated_company_a22_property_annualrevenue_ab2", - "contacts_associated_company_a22_property_annualrevenue_ab3", - "contacts_associated_company_a35_property_timezone", - "contacts_associated_company_a35_property_timezone_ab1", - "contacts_associated_company_a35_property_timezone_ab2", - "contacts_associated_company_a35_property_timezone_ab3", - "contacts_associated_company_a63_property_website", - "contacts_associated_company_a63_property_website_ab1", - "contacts_associated_company_a63_property_website_ab2", - "contacts_associated_company_a63_property_website_ab3", - "contacts_associated_company_a94_property_hs_total_deal_value", - "contacts_associated_company_a94_property_hs_total_deal_value_ab1", - "contacts_associated_company_a94_property_hs_total_deal_value_ab2", - "contacts_associated_company_a94_property_hs_total_deal_value_ab3", - "contacts_associated_company_abc_property_total_revenue", - "contacts_associated_company_abc_property_total_revenue_ab1", - "contacts_associated_company_abc_property_total_revenue_ab2", - "contacts_associated_company_abc_property_total_revenue_ab3", - "contacts_associated_company_ae9_property_country", - "contacts_associated_company_ae9_property_country_ab1", - "contacts_associated_company_ae9_property_country_ab2", - "contacts_associated_company_ae9_property_country_ab3", - "contacts_associated_company_b06_property_hs_merged_object_ids", - "contacts_associated_company_b06_property_hs_merged_object_ids_ab1", - "contacts_associated_company_b06_property_hs_merged_object_ids_ab2", - "contacts_associated_company_b06_property_hs_merged_object_ids_ab3", - "contacts_associated_company_b80_property_recent_deal_close_date", - "contacts_associated_company_b80_property_recent_deal_close_date_ab1", - "contacts_associated_company_b80_property_recent_deal_close_date_ab2", - "contacts_associated_company_b80_property_recent_deal_close_date_ab3", - "contacts_associated_company_bb4_property_num_contacted_notes", - "contacts_associated_company_bb4_property_num_contacted_notes_ab1", - "contacts_associated_company_bb4_property_num_contacted_notes_ab2", - "contacts_associated_company_bb4_property_num_contacted_notes_ab3", - "contacts_associated_company_bd1_property_hs_target_account_recommendation_snooze_time", - "contacts_associated_company_bd1_property_hs_target_account_recommendation_snooze_time_ab1", - "contacts_associated_company_bd1_property_hs_target_account_recommendation_snooze_time_ab2", - "contacts_associated_company_bd1_property_hs_target_account_recommendation_snooze_time_ab3", - "contacts_associated_company_beb_properties", - "contacts_associated_company_beb_properties_ab1", - "contacts_associated_company_beb_properties_ab2", - "contacts_associated_company_beb_properties_ab3", - "contacts_associated_company_c3b_property_hs_sales_email_last_replied", - "contacts_associated_company_c3b_property_hs_sales_email_last_replied_ab1", - "contacts_associated_company_c3b_property_hs_sales_email_last_replied_ab2", - "contacts_associated_company_c3b_property_hs_sales_email_last_replied_ab3", - "contacts_associated_company_c5f_property_type", - "contacts_associated_company_c5f_property_type_ab1", - "contacts_associated_company_c5f_property_type_ab2", - "contacts_associated_company_c5f_property_type_ab3", - "contacts_associated_company_c7d_property_hs_user_ids_of_all_owners", - "contacts_associated_company_c7d_property_hs_user_ids_of_all_owners_ab1", - "contacts_associated_company_c7d_property_hs_user_ids_of_all_owners_ab2", - "contacts_associated_company_c7d_property_hs_user_ids_of_all_owners_ab3", - "contacts_associated_company_ca1_property_linkedin_company_page", - "contacts_associated_company_ca1_property_linkedin_company_page_ab1", - "contacts_associated_company_ca1_property_linkedin_company_page_ab2", - "contacts_associated_company_ca1_property_linkedin_company_page_ab3", - "contacts_associated_company_cd8_property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a", - "contacts_associated_company_cd8_property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab1", - "contacts_associated_company_cd8_property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab2", - "contacts_associated_company_cd8_property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab3", - "contacts_associated_company_d03_property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400", - "contacts_associated_company_d03_property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab1", - "contacts_associated_company_d03_property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab2", - "contacts_associated_company_d03_property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab3", - "contacts_associated_company_d05_property_twitterbio", - "contacts_associated_company_d05_property_twitterbio_ab1", - "contacts_associated_company_d05_property_twitterbio_ab2", - "contacts_associated_company_d05_property_twitterbio_ab3", - "contacts_associated_company_d47_property_founded_year", - "contacts_associated_company_d47_property_founded_year_ab1", - "contacts_associated_company_d47_property_founded_year_ab2", - "contacts_associated_company_d47_property_founded_year_ab3", - "contacts_associated_company_d56_property_recent_conversion_event_name_timestamp_latest_value_66c820bf", - "contacts_associated_company_d56_property_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab1", - "contacts_associated_company_d56_property_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab2", - "contacts_associated_company_d56_property_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab3", - "contacts_associated_company_da3_property_hubspot_owner_id", - "contacts_associated_company_da3_property_hubspot_owner_id_ab1", - "contacts_associated_company_da3_property_hubspot_owner_id_ab2", - "contacts_associated_company_da3_property_hubspot_owner_id_ab3", - "contacts_associated_company_e17_property_hs_avatar_filemanager_key", - "contacts_associated_company_e17_property_hs_avatar_filemanager_key_ab1", - "contacts_associated_company_e17_property_hs_avatar_filemanager_key_ab2", - "contacts_associated_company_e17_property_hs_avatar_filemanager_key_ab3", - "contacts_associated_company_e1e_property_engagements_last_meeting_booked_campaign", - "contacts_associated_company_e1e_property_engagements_last_meeting_booked_campaign_ab1", - "contacts_associated_company_e1e_property_engagements_last_meeting_booked_campaign_ab2", - "contacts_associated_company_e1e_property_engagements_last_meeting_booked_campaign_ab3", - "contacts_associated_company_e1f_property_hs_all_team_ids", - "contacts_associated_company_e1f_property_hs_all_team_ids_ab1", - "contacts_associated_company_e1f_property_hs_all_team_ids_ab2", - "contacts_associated_company_e1f_property_hs_all_team_ids_ab3", - "contacts_associated_company_e2c_property_about_us", - "contacts_associated_company_e2c_property_about_us_ab1", - "contacts_associated_company_e2c_property_about_us_ab2", - "contacts_associated_company_e2c_property_about_us_ab3", - "contacts_associated_company_e2c_property_recent_conversion_date_timestamp_latest_value_72856da1", - "contacts_associated_company_e2c_property_recent_conversion_date_timestamp_latest_value_72856da1_ab1", - "contacts_associated_company_e2c_property_recent_conversion_date_timestamp_latest_value_72856da1_ab2", - "contacts_associated_company_e2c_property_recent_conversion_date_timestamp_latest_value_72856da1_ab3", - "contacts_associated_company_e56_property_hs_analytics_source_data_2", - "contacts_associated_company_e56_property_hs_analytics_source_data_2_ab1", - "contacts_associated_company_e56_property_hs_analytics_source_data_2_ab2", - "contacts_associated_company_e56_property_hs_analytics_source_data_2_ab3", - "contacts_associated_company_e59_property_first_contact_createdate_timestamp_earliest_value_78b50eea", - "contacts_associated_company_e59_property_first_contact_createdate_timestamp_earliest_value_78b50eea_ab1", - "contacts_associated_company_e59_property_first_contact_createdate_timestamp_earliest_value_78b50eea_ab2", - "contacts_associated_company_e59_property_first_contact_createdate_timestamp_earliest_value_78b50eea_ab3", - "contacts_associated_company_e81_property_hs_last_sales_activity_timestamp", - "contacts_associated_company_e81_property_hs_last_sales_activity_timestamp_ab1", - "contacts_associated_company_e81_property_hs_last_sales_activity_timestamp_ab2", - "contacts_associated_company_e81_property_hs_last_sales_activity_timestamp_ab3", - "contacts_associated_company_e8e_property_googleplus_page", - "contacts_associated_company_e8e_property_googleplus_page_ab1", - "contacts_associated_company_e8e_property_googleplus_page_ab2", - "contacts_associated_company_e8e_property_googleplus_page_ab3", - "contacts_associated_company_ed5_property_city", - "contacts_associated_company_ed5_property_city_ab1", - "contacts_associated_company_ed5_property_city_ab2", - "contacts_associated_company_ed5_property_city_ab3", - "contacts_associated_company_ed6_property_hs_analytics_num_page_views", - "contacts_associated_company_ed6_property_hs_analytics_num_page_views_ab1", - "contacts_associated_company_ed6_property_hs_analytics_num_page_views_ab2", - "contacts_associated_company_ed6_property_hs_analytics_num_page_views_ab3", - "contacts_associated_company_eec_property_hs_analytics_source", - "contacts_associated_company_eec_property_hs_analytics_source_ab1", - "contacts_associated_company_eec_property_hs_analytics_source_ab2", - "contacts_associated_company_eec_property_hs_analytics_source_ab3", - "contacts_associated_company_eed_property_name", - "contacts_associated_company_eed_property_name_ab1", - "contacts_associated_company_eed_property_name_ab2", - "contacts_associated_company_eed_property_name_ab3", - "contacts_associated_company_f09_property_recent_deal_amount", - "contacts_associated_company_f09_property_recent_deal_amount_ab1", - "contacts_associated_company_f09_property_recent_deal_amount_ab2", - "contacts_associated_company_f09_property_recent_deal_amount_ab3", - "contacts_associated_company_f1e_property_hs_parent_company_id", - "contacts_associated_company_f1e_property_hs_parent_company_id_ab1", - "contacts_associated_company_f1e_property_hs_parent_company_id_ab2", - "contacts_associated_company_f1e_property_hs_parent_company_id_ab3", - "contacts_associated_company_f65_property_hs_num_contacts_with_buying_roles", - "contacts_associated_company_f65_property_hs_num_contacts_with_buying_roles_ab1", - "contacts_associated_company_f65_property_hs_num_contacts_with_buying_roles_ab2", - "contacts_associated_company_f65_property_hs_num_contacts_with_buying_roles_ab3", - "contacts_associated_company_f7f_property_hs_num_open_deals", - "contacts_associated_company_f7f_property_hs_num_open_deals_ab1", - "contacts_associated_company_f7f_property_hs_num_open_deals_ab2", - "contacts_associated_company_f7f_property_hs_num_open_deals_ab3", - "contacts_associated_company_fc8_property_first_conversion_event_name_timestamp_earliest_value_68ddae0a", - "contacts_associated_company_fc8_property_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab1", - "contacts_associated_company_fc8_property_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab2", - "contacts_associated_company_fc8_property_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab3", - "contacts_associated_company_ff0_property_hs_analytics_last_timestamp", - "contacts_associated_company_ff0_property_hs_analytics_last_timestamp_ab1", - "contacts_associated_company_ff0_property_hs_analytics_last_timestamp_ab2", - "contacts_associated_company_ff0_property_hs_analytics_last_timestamp_ab3", - "contacts_associated_company_properties_01f_industry", - "contacts_associated_company_properties_01f_industry_ab1", - "contacts_associated_company_properties_01f_industry_ab2", - "contacts_associated_company_properties_01f_industry_ab3", - "contacts_associated_company_properties_027_hs_target_account_recommendation_state", - "contacts_associated_company_properties_027_hs_target_account_recommendation_state_ab1", - "contacts_associated_company_properties_027_hs_target_account_recommendation_state_ab2", - "contacts_associated_company_properties_027_hs_target_account_recommendation_state_ab3", - "contacts_associated_company_properties_05c_hubspot_owner_assigneddate", - "contacts_associated_company_properties_05c_hubspot_owner_assigneddate_ab1", - "contacts_associated_company_properties_05c_hubspot_owner_assigneddate_ab2", - "contacts_associated_company_properties_05c_hubspot_owner_assigneddate_ab3", - "contacts_associated_company_properties_060_createdate", - "contacts_associated_company_properties_060_createdate_ab1", - "contacts_associated_company_properties_060_createdate_ab2", - "contacts_associated_company_properties_060_createdate_ab3", - "contacts_associated_company_properties_074_recent_conversion_event_name_timestamp_latest_value_66c820bf", - "contacts_associated_company_properties_074_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab1", - "contacts_associated_company_properties_074_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab2", - "contacts_associated_company_properties_074_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab3", - "contacts_associated_company_properties_087_num_associated_contacts", - "contacts_associated_company_properties_087_num_associated_contacts_ab1", - "contacts_associated_company_properties_087_num_associated_contacts_ab2", - "contacts_associated_company_properties_087_num_associated_contacts_ab3", - "contacts_associated_company_properties_0ab_linkedinbio", - "contacts_associated_company_properties_0ab_linkedinbio_ab1", - "contacts_associated_company_properties_0ab_linkedinbio_ab2", - "contacts_associated_company_properties_0ab_linkedinbio_ab3", - "contacts_associated_company_properties_0df_hs_created_by_user_id", - "contacts_associated_company_properties_0df_hs_created_by_user_id_ab1", - "contacts_associated_company_properties_0df_hs_created_by_user_id_ab2", - "contacts_associated_company_properties_0df_hs_created_by_user_id_ab3", - "contacts_associated_company_properties_102_phone", - "contacts_associated_company_properties_102_phone_ab1", - "contacts_associated_company_properties_102_phone_ab2", - "contacts_associated_company_properties_102_phone_ab3", - "contacts_associated_company_properties_123_country", - "contacts_associated_company_properties_123_country_ab1", - "contacts_associated_company_properties_123_country_ab2", - "contacts_associated_company_properties_123_country_ab3", - "contacts_associated_company_properties_129_hs_createdate", - "contacts_associated_company_properties_129_hs_createdate_ab1", - "contacts_associated_company_properties_129_hs_createdate_ab2", - "contacts_associated_company_properties_129_hs_createdate_ab3", - "contacts_associated_company_properties_138_hs_user_ids_of_all_owners", - "contacts_associated_company_properties_138_hs_user_ids_of_all_owners_ab1", - "contacts_associated_company_properties_138_hs_user_ids_of_all_owners_ab2", - "contacts_associated_company_properties_138_hs_user_ids_of_all_owners_ab3", - "contacts_associated_company_properties_14a_days_to_close", - "contacts_associated_company_properties_14a_days_to_close_ab1", - "contacts_associated_company_properties_14a_days_to_close_ab2", - "contacts_associated_company_properties_14a_days_to_close_ab3", - "contacts_associated_company_properties_152_about_us", - "contacts_associated_company_properties_152_about_us_ab1", - "contacts_associated_company_properties_152_about_us_ab2", - "contacts_associated_company_properties_152_about_us_ab3", - "contacts_associated_company_properties_15c_timezone", - "contacts_associated_company_properties_15c_timezone_ab1", - "contacts_associated_company_properties_15c_timezone_ab2", - "contacts_associated_company_properties_15c_timezone_ab3", - "contacts_associated_company_properties_174_hs_last_sales_activity_date", - "contacts_associated_company_properties_174_hs_last_sales_activity_date_ab1", - "contacts_associated_company_properties_174_hs_last_sales_activity_date_ab2", - "contacts_associated_company_properties_174_hs_last_sales_activity_date_ab3", - "contacts_associated_company_properties_19c_recent_deal_close_date", - "contacts_associated_company_properties_19c_recent_deal_close_date_ab1", - "contacts_associated_company_properties_19c_recent_deal_close_date_ab2", - "contacts_associated_company_properties_19c_recent_deal_close_date_ab3", - "contacts_associated_company_properties_1a0_num_notes", - "contacts_associated_company_properties_1a0_num_notes_ab1", - "contacts_associated_company_properties_1a0_num_notes_ab2", - "contacts_associated_company_properties_1a0_num_notes_ab3", - "contacts_associated_company_properties_1e1_hs_all_team_ids", - "contacts_associated_company_properties_1e1_hs_all_team_ids_ab1", - "contacts_associated_company_properties_1e1_hs_all_team_ids_ab2", - "contacts_associated_company_properties_1e1_hs_all_team_ids_ab3", - "contacts_associated_company_properties_20d_hs_latest_meeting_activity", - "contacts_associated_company_properties_20d_hs_latest_meeting_activity_ab1", - "contacts_associated_company_properties_20d_hs_latest_meeting_activity_ab2", - "contacts_associated_company_properties_20d_hs_latest_meeting_activity_ab3", - "contacts_associated_company_properties_290_total_revenue", - "contacts_associated_company_properties_290_total_revenue_ab1", - "contacts_associated_company_properties_290_total_revenue_ab2", - "contacts_associated_company_properties_290_total_revenue_ab3", - "contacts_associated_company_properties_2b8_first_deal_created_date", - "contacts_associated_company_properties_2b8_first_deal_created_date_ab1", - "contacts_associated_company_properties_2b8_first_deal_created_date_ab2", - "contacts_associated_company_properties_2b8_first_deal_created_date_ab3", - "contacts_associated_company_properties_2b8_hs_num_child_companies", - "contacts_associated_company_properties_2b8_hs_num_child_companies_ab1", - "contacts_associated_company_properties_2b8_hs_num_child_companies_ab2", - "contacts_associated_company_properties_2b8_hs_num_child_companies_ab3", - "contacts_associated_company_properties_2d0_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10", - "contacts_associated_company_properties_2d0_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab1", - "contacts_associated_company_properties_2d0_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab2", - "contacts_associated_company_properties_2d0_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab3", - "contacts_associated_company_properties_3ae_hs_analytics_first_touch_converting_campaign", - "contacts_associated_company_properties_3ae_hs_analytics_first_touch_converting_campaign_ab1", - "contacts_associated_company_properties_3ae_hs_analytics_first_touch_converting_campaign_ab2", - "contacts_associated_company_properties_3ae_hs_analytics_first_touch_converting_campaign_ab3", - "contacts_associated_company_properties_403_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1", - "contacts_associated_company_properties_403_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab1", - "contacts_associated_company_properties_403_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab2", - "contacts_associated_company_properties_403_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab3", - "contacts_associated_company_properties_411_hs_additional_domains", - "contacts_associated_company_properties_411_hs_additional_domains_ab1", - "contacts_associated_company_properties_411_hs_additional_domains_ab2", - "contacts_associated_company_properties_411_hs_additional_domains_ab3", - "contacts_associated_company_properties_447_hs_lastmodifieddate", - "contacts_associated_company_properties_447_hs_lastmodifieddate_ab1", - "contacts_associated_company_properties_447_hs_lastmodifieddate_ab2", - "contacts_associated_company_properties_447_hs_lastmodifieddate_ab3", - "contacts_associated_company_properties_46a_total_money_raised", - "contacts_associated_company_properties_46a_total_money_raised_ab1", - "contacts_associated_company_properties_46a_total_money_raised_ab2", - "contacts_associated_company_properties_46a_total_money_raised_ab3", - "contacts_associated_company_properties_4b1_first_contact_createdate", - "contacts_associated_company_properties_4b1_first_contact_createdate_ab1", - "contacts_associated_company_properties_4b1_first_contact_createdate_ab2", - "contacts_associated_company_properties_4b1_first_contact_createdate_ab3", - "contacts_associated_company_properties_51f_twitterhandle", - "contacts_associated_company_properties_51f_twitterhandle_ab1", - "contacts_associated_company_properties_51f_twitterhandle_ab2", - "contacts_associated_company_properties_51f_twitterhandle_ab3", - "contacts_associated_company_properties_533_facebookfans", - "contacts_associated_company_properties_533_facebookfans_ab1", - "contacts_associated_company_properties_533_facebookfans_ab2", - "contacts_associated_company_properties_533_facebookfans_ab3", - "contacts_associated_company_properties_541_annualrevenue", - "contacts_associated_company_properties_541_annualrevenue_ab1", - "contacts_associated_company_properties_541_annualrevenue_ab2", - "contacts_associated_company_properties_541_annualrevenue_ab3", - "contacts_associated_company_properties_560_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400", - "contacts_associated_company_properties_560_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab1", - "contacts_associated_company_properties_560_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab2", - "contacts_associated_company_properties_560_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab3", - "contacts_associated_company_properties_57a_hs_predictivecontactscore_v2_next_max_max_d4e58c1e", - "contacts_associated_company_properties_57a_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab1", - "contacts_associated_company_properties_57a_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab2", - "contacts_associated_company_properties_57a_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab3", - "contacts_associated_company_properties_57b_first_conversion_event_name_timestamp_earliest_value_68ddae0a", - "contacts_associated_company_properties_57b_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab1", - "contacts_associated_company_properties_57b_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab2", - "contacts_associated_company_properties_57b_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab3", - "contacts_associated_company_properties_57d_hs_total_deal_value", - "contacts_associated_company_properties_57d_hs_total_deal_value_ab1", - "contacts_associated_company_properties_57d_hs_total_deal_value_ab2", - "contacts_associated_company_properties_57d_hs_total_deal_value_ab3", - "contacts_associated_company_properties_5ac_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce", - "contacts_associated_company_properties_5ac_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab1", - "contacts_associated_company_properties_5ac_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab2", - "contacts_associated_company_properties_5ac_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab3", - "contacts_associated_company_properties_5e7_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae", - "contacts_associated_company_properties_5e7_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab1", - "contacts_associated_company_properties_5e7_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab2", - "contacts_associated_company_properties_5e7_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab3", - "contacts_associated_company_properties_5fe_zip", - "contacts_associated_company_properties_5fe_zip_ab1", - "contacts_associated_company_properties_5fe_zip_ab2", - "contacts_associated_company_properties_5fe_zip_ab3", - "contacts_associated_company_properties_685_hs_analytics_num_visits", - "contacts_associated_company_properties_685_hs_analytics_num_visits_ab1", - "contacts_associated_company_properties_685_hs_analytics_num_visits_ab2", - "contacts_associated_company_properties_685_hs_analytics_num_visits_ab3", - "contacts_associated_company_properties_6c3_hs_analytics_last_touch_converting_campaign", - "contacts_associated_company_properties_6c3_hs_analytics_last_touch_converting_campaign_ab1", - "contacts_associated_company_properties_6c3_hs_analytics_last_touch_converting_campaign_ab2", - "contacts_associated_company_properties_6c3_hs_analytics_last_touch_converting_campaign_ab3", - "contacts_associated_company_properties_6d9_numberofemployees", - "contacts_associated_company_properties_6d9_numberofemployees_ab1", - "contacts_associated_company_properties_6d9_numberofemployees_ab2", - "contacts_associated_company_properties_6d9_numberofemployees_ab3", - "contacts_associated_company_properties_6ef_engagements_last_meeting_booked", - "contacts_associated_company_properties_6ef_engagements_last_meeting_booked_ab1", - "contacts_associated_company_properties_6ef_engagements_last_meeting_booked_ab2", - "contacts_associated_company_properties_6ef_engagements_last_meeting_booked_ab3", - "contacts_associated_company_properties_70e_hs_analytics_first_visit_timestamp", - "contacts_associated_company_properties_70e_hs_analytics_first_visit_timestamp_ab1", - "contacts_associated_company_properties_70e_hs_analytics_first_visit_timestamp_ab2", - "contacts_associated_company_properties_70e_hs_analytics_first_visit_timestamp_ab3", - "contacts_associated_company_properties_719_num_associated_deals", - "contacts_associated_company_properties_719_num_associated_deals_ab1", - "contacts_associated_company_properties_719_num_associated_deals_ab2", - "contacts_associated_company_properties_719_num_associated_deals_ab3", - "contacts_associated_company_properties_738_hs_all_accessible_team_ids", - "contacts_associated_company_properties_738_hs_all_accessible_team_ids_ab1", - "contacts_associated_company_properties_738_hs_all_accessible_team_ids_ab2", - "contacts_associated_company_properties_738_hs_all_accessible_team_ids_ab3", - "contacts_associated_company_properties_76b_web_technologies", - "contacts_associated_company_properties_76b_web_technologies_ab1", - "contacts_associated_company_properties_76b_web_technologies_ab2", - "contacts_associated_company_properties_76b_web_technologies_ab3", - "contacts_associated_company_properties_785_hs_sales_email_last_replied", - "contacts_associated_company_properties_785_hs_sales_email_last_replied_ab1", - "contacts_associated_company_properties_785_hs_sales_email_last_replied_ab2", - "contacts_associated_company_properties_785_hs_sales_email_last_replied_ab3", - "contacts_associated_company_properties_79e_hs_object_id", - "contacts_associated_company_properties_79e_hs_object_id_ab1", - "contacts_associated_company_properties_79e_hs_object_id_ab2", - "contacts_associated_company_properties_79e_hs_object_id_ab3", - "contacts_associated_company_properties_7e5_recent_conversion_date_timestamp_latest_value_72856da1", - "contacts_associated_company_properties_7e5_recent_conversion_date_timestamp_latest_value_72856da1_ab1", - "contacts_associated_company_properties_7e5_recent_conversion_date_timestamp_latest_value_72856da1_ab2", - "contacts_associated_company_properties_7e5_recent_conversion_date_timestamp_latest_value_72856da1_ab3", - "contacts_associated_company_properties_80f_notes_last_contacted", - "contacts_associated_company_properties_80f_notes_last_contacted_ab1", - "contacts_associated_company_properties_80f_notes_last_contacted_ab2", - "contacts_associated_company_properties_80f_notes_last_contacted_ab3", - "contacts_associated_company_properties_810_googleplus_page", - "contacts_associated_company_properties_810_googleplus_page_ab1", - "contacts_associated_company_properties_810_googleplus_page_ab2", - "contacts_associated_company_properties_810_googleplus_page_ab3", - "contacts_associated_company_properties_818_hs_analytics_first_timestamp", - "contacts_associated_company_properties_818_hs_analytics_first_timestamp_ab1", - "contacts_associated_company_properties_818_hs_analytics_first_timestamp_ab2", - "contacts_associated_company_properties_818_hs_analytics_first_timestamp_ab3", - "contacts_associated_company_properties_81d_num_contacted_notes", - "contacts_associated_company_properties_81d_num_contacted_notes_ab1", - "contacts_associated_company_properties_81d_num_contacted_notes_ab2", - "contacts_associated_company_properties_81d_num_contacted_notes_ab3", - "contacts_associated_company_properties_82e_address", - "contacts_associated_company_properties_82e_address_ab1", - "contacts_associated_company_properties_82e_address_ab2", - "contacts_associated_company_properties_82e_address_ab3", - "contacts_associated_company_properties_839_address2", - "contacts_associated_company_properties_839_address2_ab1", - "contacts_associated_company_properties_839_address2_ab2", - "contacts_associated_company_properties_839_address2_ab3", - "contacts_associated_company_properties_85e_hs_analytics_source_data_1", - "contacts_associated_company_properties_85e_hs_analytics_source_data_1_ab1", - "contacts_associated_company_properties_85e_hs_analytics_source_data_1_ab2", - "contacts_associated_company_properties_85e_hs_analytics_source_data_1_ab3", - "contacts_associated_company_properties_869_hs_ideal_customer_profile", - "contacts_associated_company_properties_869_hs_ideal_customer_profile_ab1", - "contacts_associated_company_properties_869_hs_ideal_customer_profile_ab2", - "contacts_associated_company_properties_869_hs_ideal_customer_profile_ab3", - "contacts_associated_company_properties_86c_hs_updated_by_user_id", - "contacts_associated_company_properties_86c_hs_updated_by_user_id_ab1", - "contacts_associated_company_properties_86c_hs_updated_by_user_id_ab2", - "contacts_associated_company_properties_86c_hs_updated_by_user_id_ab3", - "contacts_associated_company_properties_87a_num_conversion_events_cardinality_sum_d095f14b", - "contacts_associated_company_properties_87a_num_conversion_events_cardinality_sum_d095f14b_ab1", - "contacts_associated_company_properties_87a_num_conversion_events_cardinality_sum_d095f14b_ab2", - "contacts_associated_company_properties_87a_num_conversion_events_cardinality_sum_d095f14b_ab3", - "contacts_associated_company_properties_882_hubspot_owner_id", - "contacts_associated_company_properties_882_hubspot_owner_id_ab1", - "contacts_associated_company_properties_882_hubspot_owner_id_ab2", - "contacts_associated_company_properties_882_hubspot_owner_id_ab3", - "contacts_associated_company_properties_883_first_conversion_date_timestamp_earliest_value_61f58f2c", - "contacts_associated_company_properties_883_first_conversion_date_timestamp_earliest_value_61f58f2c_ab1", - "contacts_associated_company_properties_883_first_conversion_date_timestamp_earliest_value_61f58f2c_ab2", - "contacts_associated_company_properties_883_first_conversion_date_timestamp_earliest_value_61f58f2c_ab3", - "contacts_associated_company_properties_8b4_description", - "contacts_associated_company_properties_8b4_description_ab1", - "contacts_associated_company_properties_8b4_description_ab2", - "contacts_associated_company_properties_8b4_description_ab3", - "contacts_associated_company_properties_8cf_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30", - "contacts_associated_company_properties_8cf_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab1", - "contacts_associated_company_properties_8cf_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab2", - "contacts_associated_company_properties_8cf_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab3", - "contacts_associated_company_properties_91f_city", - "contacts_associated_company_properties_91f_city_ab1", - "contacts_associated_company_properties_91f_city_ab2", - "contacts_associated_company_properties_91f_city_ab3", - "contacts_associated_company_properties_937_closedate_timestamp_earliest_value_a2a17e6e", - "contacts_associated_company_properties_937_closedate_timestamp_earliest_value_a2a17e6e_ab1", - "contacts_associated_company_properties_937_closedate_timestamp_earliest_value_a2a17e6e_ab2", - "contacts_associated_company_properties_937_closedate_timestamp_earliest_value_a2a17e6e_ab3", - "contacts_associated_company_properties_93c_state", - "contacts_associated_company_properties_93c_state_ab1", - "contacts_associated_company_properties_93c_state_ab2", - "contacts_associated_company_properties_93c_state_ab3", - "contacts_associated_company_properties_946_hs_last_open_task_date", - "contacts_associated_company_properties_946_hs_last_open_task_date_ab1", - "contacts_associated_company_properties_946_hs_last_open_task_date_ab2", - "contacts_associated_company_properties_946_hs_last_open_task_date_ab3", - "contacts_associated_company_properties_953_hs_merged_object_ids", - "contacts_associated_company_properties_953_hs_merged_object_ids_ab1", - "contacts_associated_company_properties_953_hs_merged_object_ids_ab2", - "contacts_associated_company_properties_953_hs_merged_object_ids_ab3", - "contacts_associated_company_properties_9bf_linkedin_company_page", - "contacts_associated_company_properties_9bf_linkedin_company_page_ab1", - "contacts_associated_company_properties_9bf_linkedin_company_page_ab2", - "contacts_associated_company_properties_9bf_linkedin_company_page_ab3", - "contacts_associated_company_properties_9d6_hs_target_account_recommendation_snooze_time", - "contacts_associated_company_properties_9d6_hs_target_account_recommendation_snooze_time_ab1", - "contacts_associated_company_properties_9d6_hs_target_account_recommendation_snooze_time_ab2", - "contacts_associated_company_properties_9d6_hs_target_account_recommendation_snooze_time_ab3", - "contacts_associated_company_properties_9da_hs_last_logged_call_date", - "contacts_associated_company_properties_9da_hs_last_logged_call_date_ab1", - "contacts_associated_company_properties_9da_hs_last_logged_call_date_ab2", - "contacts_associated_company_properties_9da_hs_last_logged_call_date_ab3", - "contacts_associated_company_properties_a2f_hs_all_owner_ids", - "contacts_associated_company_properties_a2f_hs_all_owner_ids_ab1", - "contacts_associated_company_properties_a2f_hs_all_owner_ids_ab2", - "contacts_associated_company_properties_a2f_hs_all_owner_ids_ab3", - "contacts_associated_company_properties_a64_lifecyclestage", - "contacts_associated_company_properties_a64_lifecyclestage_ab1", - "contacts_associated_company_properties_a64_lifecyclestage_ab2", - "contacts_associated_company_properties_a64_lifecyclestage_ab3", - "contacts_associated_company_properties_a73_facebook_company_page", - "contacts_associated_company_properties_a73_facebook_company_page_ab1", - "contacts_associated_company_properties_a73_facebook_company_page_ab2", - "contacts_associated_company_properties_a73_facebook_company_page_ab3", - "contacts_associated_company_properties_aa0_founded_year", - "contacts_associated_company_properties_aa0_founded_year_ab1", - "contacts_associated_company_properties_aa0_founded_year_ab2", - "contacts_associated_company_properties_aa0_founded_year_ab3", - "contacts_associated_company_properties_acd_domain", - "contacts_associated_company_properties_acd_domain_ab1", - "contacts_associated_company_properties_acd_domain_ab2", - "contacts_associated_company_properties_acd_domain_ab3", - "contacts_associated_company_properties_b4e_hs_last_booked_meeting_date", - "contacts_associated_company_properties_b4e_hs_last_booked_meeting_date_ab1", - "contacts_associated_company_properties_b4e_hs_last_booked_meeting_date_ab2", - "contacts_associated_company_properties_b4e_hs_last_booked_meeting_date_ab3", - "contacts_associated_company_properties_bc4_hs_target_account", - "contacts_associated_company_properties_bc4_hs_target_account_ab1", - "contacts_associated_company_properties_bc4_hs_target_account_ab2", - "contacts_associated_company_properties_bc4_hs_target_account_ab3", - "contacts_associated_company_properties_bc9_hs_num_blockers", - "contacts_associated_company_properties_bc9_hs_num_blockers_ab1", - "contacts_associated_company_properties_bc9_hs_num_blockers_ab2", - "contacts_associated_company_properties_bc9_hs_num_blockers_ab3", - "contacts_associated_company_properties_bcb_twitterbio", - "contacts_associated_company_properties_bcb_twitterbio_ab1", - "contacts_associated_company_properties_bcb_twitterbio_ab2", - "contacts_associated_company_properties_bcb_twitterbio_ab3", - "contacts_associated_company_properties_be9_hs_analytics_source_data_2", - "contacts_associated_company_properties_be9_hs_analytics_source_data_2_ab1", - "contacts_associated_company_properties_be9_hs_analytics_source_data_2_ab2", - "contacts_associated_company_properties_be9_hs_analytics_source_data_2_ab3", - "contacts_associated_company_properties_bf0_name", - "contacts_associated_company_properties_bf0_name_ab1", - "contacts_associated_company_properties_bf0_name_ab2", - "contacts_associated_company_properties_bf0_name_ab3", - "contacts_associated_company_properties_bf1_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a", - "contacts_associated_company_properties_bf1_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab1", - "contacts_associated_company_properties_bf1_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab2", - "contacts_associated_company_properties_bf1_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab3", - "contacts_associated_company_properties_c38_hs_is_target_account", - "contacts_associated_company_properties_c38_hs_is_target_account_ab1", - "contacts_associated_company_properties_c38_hs_is_target_account_ab2", - "contacts_associated_company_properties_c38_hs_is_target_account_ab3", - "contacts_associated_company_properties_c70_hs_target_account_probability", - "contacts_associated_company_properties_c70_hs_target_account_probability_ab1", - "contacts_associated_company_properties_c70_hs_target_account_probability_ab2", - "contacts_associated_company_properties_c70_hs_target_account_probability_ab3", - "contacts_associated_company_properties_cd0_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a", - "contacts_associated_company_properties_cd0_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab1", - "contacts_associated_company_properties_cd0_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab2", - "contacts_associated_company_properties_cd0_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab3", - "contacts_associated_company_properties_cf9_engagements_last_meeting_booked_medium", - "contacts_associated_company_properties_cf9_engagements_last_meeting_booked_medium_ab1", - "contacts_associated_company_properties_cf9_engagements_last_meeting_booked_medium_ab2", - "contacts_associated_company_properties_cf9_engagements_last_meeting_booked_medium_ab3", - "contacts_associated_company_properties_cfe_first_contact_createdate_timestamp_earliest_value_78b50eea", - "contacts_associated_company_properties_cfe_first_contact_createdate_timestamp_earliest_value_78b50eea_ab1", - "contacts_associated_company_properties_cfe_first_contact_createdate_timestamp_earliest_value_78b50eea_ab2", - "contacts_associated_company_properties_cfe_first_contact_createdate_timestamp_earliest_value_78b50eea_ab3", - "contacts_associated_company_properties_d1f_hs_analytics_source", - "contacts_associated_company_properties_d1f_hs_analytics_source_ab1", - "contacts_associated_company_properties_d1f_hs_analytics_source_ab2", - "contacts_associated_company_properties_d1f_hs_analytics_source_ab3", - "contacts_associated_company_properties_d24_twitterfollowers", - "contacts_associated_company_properties_d24_twitterfollowers_ab1", - "contacts_associated_company_properties_d24_twitterfollowers_ab2", - "contacts_associated_company_properties_d24_twitterfollowers_ab3", - "contacts_associated_company_properties_d32_hs_analytics_num_page_views_cardinality_sum_e46e85b0", - "contacts_associated_company_properties_d32_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab1", - "contacts_associated_company_properties_d32_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab2", - "contacts_associated_company_properties_d32_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab3", - "contacts_associated_company_properties_d43_hs_num_decision_makers", - "contacts_associated_company_properties_d43_hs_num_decision_makers_ab1", - "contacts_associated_company_properties_d43_hs_num_decision_makers_ab2", - "contacts_associated_company_properties_d43_hs_num_decision_makers_ab3", - "contacts_associated_company_properties_d52_hubspot_team_id", - "contacts_associated_company_properties_d52_hubspot_team_id_ab1", - "contacts_associated_company_properties_d52_hubspot_team_id_ab2", - "contacts_associated_company_properties_d52_hubspot_team_id_ab3", - "contacts_associated_company_properties_d5a_hs_analytics_num_page_views", - "contacts_associated_company_properties_d5a_hs_analytics_num_page_views_ab1", - "contacts_associated_company_properties_d5a_hs_analytics_num_page_views_ab2", - "contacts_associated_company_properties_d5a_hs_analytics_num_page_views_ab3", - "contacts_associated_company_properties_d97_hs_analytics_num_visits_cardinality_sum_53d952a6", - "contacts_associated_company_properties_d97_hs_analytics_num_visits_cardinality_sum_53d952a6_ab1", - "contacts_associated_company_properties_d97_hs_analytics_num_visits_cardinality_sum_53d952a6_ab2", - "contacts_associated_company_properties_d97_hs_analytics_num_visits_cardinality_sum_53d952a6_ab3", - "contacts_associated_company_properties_d9f_is_public", - "contacts_associated_company_properties_d9f_is_public_ab1", - "contacts_associated_company_properties_d9f_is_public_ab2", - "contacts_associated_company_properties_d9f_is_public_ab3", - "contacts_associated_company_properties_db2_hs_avatar_filemanager_key", - "contacts_associated_company_properties_db2_hs_avatar_filemanager_key_ab1", - "contacts_associated_company_properties_db2_hs_avatar_filemanager_key_ab2", - "contacts_associated_company_properties_db2_hs_avatar_filemanager_key_ab3", - "contacts_associated_company_properties_dbb_closedate", - "contacts_associated_company_properties_dbb_closedate_ab1", - "contacts_associated_company_properties_dbb_closedate_ab2", - "contacts_associated_company_properties_dbb_closedate_ab3", - "contacts_associated_company_properties_e23_hs_num_contacts_with_buying_roles", - "contacts_associated_company_properties_e23_hs_num_contacts_with_buying_roles_ab1", - "contacts_associated_company_properties_e23_hs_num_contacts_with_buying_roles_ab2", - "contacts_associated_company_properties_e23_hs_num_contacts_with_buying_roles_ab3", - "contacts_associated_company_properties_e8e_hs_analytics_last_visit_timestamp", - "contacts_associated_company_properties_e8e_hs_analytics_last_visit_timestamp_ab1", - "contacts_associated_company_properties_e8e_hs_analytics_last_visit_timestamp_ab2", - "contacts_associated_company_properties_e8e_hs_analytics_last_visit_timestamp_ab3", - "contacts_associated_company_properties_ea6_engagements_last_meeting_booked_source", - "contacts_associated_company_properties_ea6_engagements_last_meeting_booked_source_ab1", - "contacts_associated_company_properties_ea6_engagements_last_meeting_booked_source_ab2", - "contacts_associated_company_properties_ea6_engagements_last_meeting_booked_source_ab3", - "contacts_associated_company_properties_edd_hs_parent_company_id", - "contacts_associated_company_properties_edd_hs_parent_company_id_ab1", - "contacts_associated_company_properties_edd_hs_parent_company_id_ab2", - "contacts_associated_company_properties_edd_hs_parent_company_id_ab3", - "contacts_associated_company_properties_eef_engagements_last_meeting_booked_campaign", - "contacts_associated_company_properties_eef_engagements_last_meeting_booked_campaign_ab1", - "contacts_associated_company_properties_eef_engagements_last_meeting_booked_campaign_ab2", - "contacts_associated_company_properties_eef_engagements_last_meeting_booked_campaign_ab3", - "contacts_associated_company_properties_f00_hs_analytics_last_timestamp", - "contacts_associated_company_properties_f00_hs_analytics_last_timestamp_ab1", - "contacts_associated_company_properties_f00_hs_analytics_last_timestamp_ab2", - "contacts_associated_company_properties_f00_hs_analytics_last_timestamp_ab3", - "contacts_associated_company_properties_f4f_hs_lead_status", - "contacts_associated_company_properties_f4f_hs_lead_status_ab1", - "contacts_associated_company_properties_f4f_hs_lead_status_ab2", - "contacts_associated_company_properties_f4f_hs_lead_status_ab3", - "contacts_associated_company_properties_f57_website", - "contacts_associated_company_properties_f57_website_ab1", - "contacts_associated_company_properties_f57_website_ab2", - "contacts_associated_company_properties_f57_website_ab3", - "contacts_associated_company_properties_f5e_hs_num_open_deals", - "contacts_associated_company_properties_f5e_hs_num_open_deals_ab1", - "contacts_associated_company_properties_f5e_hs_num_open_deals_ab2", - "contacts_associated_company_properties_f5e_hs_num_open_deals_ab3", - "contacts_associated_company_properties_f64_recent_deal_amount", - "contacts_associated_company_properties_f64_recent_deal_amount_ab1", - "contacts_associated_company_properties_f64_recent_deal_amount_ab2", - "contacts_associated_company_properties_f64_recent_deal_amount_ab3", - "contacts_associated_company_properties_f6b_hs_last_sales_activity_timestamp", - "contacts_associated_company_properties_f6b_hs_last_sales_activity_timestamp_ab1", - "contacts_associated_company_properties_f6b_hs_last_sales_activity_timestamp_ab2", - "contacts_associated_company_properties_f6b_hs_last_sales_activity_timestamp_ab3", - "contacts_associated_company_properties_f7b_notes_next_activity_date", - "contacts_associated_company_properties_f7b_notes_next_activity_date_ab1", - "contacts_associated_company_properties_f7b_notes_next_activity_date_ab2", - "contacts_associated_company_properties_f7b_notes_next_activity_date_ab3", - "contacts_associated_company_properties_f7c_hs_analytics_source_timestamp_earliest_value_25a3a52c", - "contacts_associated_company_properties_f7c_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab1", - "contacts_associated_company_properties_f7c_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab2", - "contacts_associated_company_properties_f7c_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab3", - "contacts_associated_company_properties_fb2_type", - "contacts_associated_company_properties_fb2_type_ab1", - "contacts_associated_company_properties_fb2_type_ab2", - "contacts_associated_company_properties_fb2_type_ab3", - "contacts_associated_company_properties_fc9_notes_last_updated", - "contacts_associated_company_properties_fc9_notes_last_updated_ab1", - "contacts_associated_company_properties_fc9_notes_last_updated_ab2", - "contacts_associated_company_properties_fc9_notes_last_updated_ab3", - "contacts_b1e_associated_company", - "contacts_b1e_associated_company_ab1", - "contacts_b1e_associated_company_ab2", - "contacts_b1e_associated_company_ab3", - "contacts_b3f_property_hs_document_last_revisited", - "contacts_b3f_property_hs_document_last_revisited_ab1", - "contacts_b3f_property_hs_document_last_revisited_ab2", - "contacts_b3f_property_hs_document_last_revisited_ab3", - "contacts_b44_property_hs_analytics_last_referrer", - "contacts_b44_property_hs_analytics_last_referrer_ab1", - "contacts_b44_property_hs_analytics_last_referrer_ab2", - "contacts_b44_property_hs_analytics_last_referrer_ab3", - "contacts_b51_property_hs_count_is_worked", - "contacts_b51_property_hs_count_is_worked_ab1", - "contacts_b51_property_hs_count_is_worked_ab2", - "contacts_b51_property_hs_count_is_worked_ab3", - "contacts_b64_property_hs_email_is_ineligible", - "contacts_b64_property_hs_email_is_ineligible_ab1", - "contacts_b64_property_hs_email_is_ineligible_ab2", - "contacts_b64_property_hs_email_is_ineligible_ab3", - "contacts_b95_property_hs_lifecyclestage_customer_date", - "contacts_b95_property_hs_lifecyclestage_customer_date_ab1", - "contacts_b95_property_hs_lifecyclestage_customer_date_ab2", - "contacts_b95_property_hs_lifecyclestage_customer_date_ab3", - "contacts_b9b_property_relationship_status", - "contacts_b9b_property_relationship_status_ab1", - "contacts_b9b_property_relationship_status_ab2", - "contacts_b9b_property_relationship_status_ab3", - "contacts_ba6_property_state", - "contacts_ba6_property_state_ab1", - "contacts_ba6_property_state_ab2", - "contacts_ba6_property_state_ab3", - "contacts_bbd_property_hs_calculated_mobile_number", - "contacts_bbd_property_hs_calculated_mobile_number_ab1", - "contacts_bbd_property_hs_calculated_mobile_number_ab2", - "contacts_bbd_property_hs_calculated_mobile_number_ab3", - "contacts_bd7_property_hs_searchable_calculated_international_mobile_number", - "contacts_bd7_property_hs_searchable_calculated_international_mobile_number_ab1", - "contacts_bd7_property_hs_searchable_calculated_international_mobile_number_ab2", - "contacts_bd7_property_hs_searchable_calculated_international_mobile_number_ab3", - "contacts_c07_property_hs_email_customer_quarantined_reason", - "contacts_c07_property_hs_email_customer_quarantined_reason_ab1", - "contacts_c07_property_hs_email_customer_quarantined_reason_ab2", - "contacts_c07_property_hs_email_customer_quarantined_reason_ab3", - "contacts_c20_property_hs_updated_by_user_id", - "contacts_c20_property_hs_updated_by_user_id_ab1", - "contacts_c20_property_hs_updated_by_user_id_ab2", - "contacts_c20_property_hs_updated_by_user_id_ab3", - "contacts_c35_property_job_function", - "contacts_c35_property_job_function_ab1", - "contacts_c35_property_job_function_ab2", - "contacts_c35_property_job_function_ab3", - "contacts_c44_property_hs_searchable_calculated_mobile_number", - "contacts_c44_property_hs_searchable_calculated_mobile_number_ab1", - "contacts_c44_property_hs_searchable_calculated_mobile_number_ab2", - "contacts_c44_property_hs_searchable_calculated_mobile_number_ab3", - "contacts_c4b_property_hubspot_team_id", - "contacts_c4b_property_hubspot_team_id_ab1", - "contacts_c4b_property_hubspot_team_id_ab2", - "contacts_c4b_property_hubspot_team_id_ab3", - "contacts_c7a_property_hs_lifecyclestage_salesqualifiedlead_date", - "contacts_c7a_property_hs_lifecyclestage_salesqualifiedlead_date_ab1", - "contacts_c7a_property_hs_lifecyclestage_salesqualifiedlead_date_ab2", - "contacts_c7a_property_hs_lifecyclestage_salesqualifiedlead_date_ab3", - "contacts_c86_property_hs_sa_first_engagement_descr", - "contacts_c86_property_hs_sa_first_engagement_descr_ab1", - "contacts_c86_property_hs_sa_first_engagement_descr_ab2", - "contacts_c86_property_hs_sa_first_engagement_descr_ab3", - "contacts_cae_property_hs_lifecyclestage_other_date", - "contacts_cae_property_hs_lifecyclestage_other_date_ab1", - "contacts_cae_property_hs_lifecyclestage_other_date_ab2", - "contacts_cae_property_hs_lifecyclestage_other_date_ab3", - "contacts_cb8_property_ip_zipcode", - "contacts_cb8_property_ip_zipcode_ab1", - "contacts_cb8_property_ip_zipcode_ab2", - "contacts_cb8_property_ip_zipcode_ab3", - "contacts_cc5_property_hs_conversations_visitor_email", - "contacts_cc5_property_hs_conversations_visitor_email_ab1", - "contacts_cc5_property_hs_conversations_visitor_email_ab2", - "contacts_cc5_property_hs_conversations_visitor_email_ab3", - "contacts_cd3_property_hs_lifecyclestage_marketingqualifiedlead_date", - "contacts_cd3_property_hs_lifecyclestage_marketingqualifiedlead_date_ab1", - "contacts_cd3_property_hs_lifecyclestage_marketingqualifiedlead_date_ab2", - "contacts_cd3_property_hs_lifecyclestage_marketingqualifiedlead_date_ab3", - "contacts_cf0_property_phone", - "contacts_cf0_property_phone_ab1", - "contacts_cf0_property_phone_ab2", - "contacts_cf0_property_phone_ab3", - "contacts_d19_property_hs_content_membership_registered_at", - "contacts_d19_property_hs_content_membership_registered_at_ab1", - "contacts_d19_property_hs_content_membership_registered_at_ab2", - "contacts_d19_property_hs_content_membership_registered_at_ab3", - "contacts_d3d_property_hs_searchable_calculated_international_phone_number", - "contacts_d3d_property_hs_searchable_calculated_international_phone_number_ab1", - "contacts_d3d_property_hs_searchable_calculated_international_phone_number_ab2", - "contacts_d3d_property_hs_searchable_calculated_international_phone_number_ab3", - "contacts_d49_property_numemployees", - "contacts_d49_property_numemployees_ab1", - "contacts_d49_property_numemployees_ab2", - "contacts_d49_property_numemployees_ab3", - "contacts_dc5_property_ip_country", - "contacts_dc5_property_ip_country_ab1", - "contacts_dc5_property_ip_country_ab2", - "contacts_dc5_property_ip_country_ab3", - "contacts_dd2_property_hs_count_is_unworked", - "contacts_dd2_property_hs_count_is_unworked_ab1", - "contacts_dd2_property_hs_count_is_unworked_ab2", - "contacts_dd2_property_hs_count_is_unworked_ab3", - "contacts_ddf_property_engagements_last_meeting_booked_source", - "contacts_ddf_property_engagements_last_meeting_booked_source_ab1", - "contacts_ddf_property_engagements_last_meeting_booked_source_ab2", - "contacts_ddf_property_engagements_last_meeting_booked_source_ab3", - "contacts_def_property_jobtitle", - "contacts_def_property_jobtitle_ab1", - "contacts_def_property_jobtitle_ab2", - "contacts_def_property_jobtitle_ab3", - "contacts_df1_property_hs_createdate", - "contacts_df1_property_hs_createdate_ab1", - "contacts_df1_property_hs_createdate_ab2", - "contacts_df1_property_hs_createdate_ab3", - "contacts_e1b_property_engagements_last_meeting_booked_medium", - "contacts_e1b_property_engagements_last_meeting_booked_medium_ab1", - "contacts_e1b_property_engagements_last_meeting_booked_medium_ab2", - "contacts_e1b_property_engagements_last_meeting_booked_medium_ab3", - "contacts_e23_property_degree", - "contacts_e23_property_degree_ab1", - "contacts_e23_property_degree_ab2", - "contacts_e23_property_degree_ab3", - "contacts_e37_property_lifecyclestage", - "contacts_e37_property_lifecyclestage_ab1", - "contacts_e37_property_lifecyclestage_ab2", - "contacts_e37_property_lifecyclestage_ab3", - "contacts_e5f_property_createdate", - "contacts_e5f_property_createdate_ab1", - "contacts_e5f_property_createdate_ab2", - "contacts_e5f_property_createdate_ab3", - "contacts_e81_property_recent_conversion_event_name", - "contacts_e81_property_recent_conversion_event_name_ab1", - "contacts_e81_property_recent_conversion_event_name_ab2", - "contacts_e81_property_recent_conversion_event_name_ab3", - "contacts_ea2_property_hs_calculated_phone_number_area_code", - "contacts_ea2_property_hs_calculated_phone_number_area_code_ab1", - "contacts_ea2_property_hs_calculated_phone_number_area_code_ab2", - "contacts_ea2_property_hs_calculated_phone_number_area_code_ab3", - "contacts_eab_property_hs_sa_first_engagement_date", - "contacts_eab_property_hs_sa_first_engagement_date_ab1", - "contacts_eab_property_hs_sa_first_engagement_date_ab2", - "contacts_eab_property_hs_sa_first_engagement_date_ab3", - "contacts_eb1_property_hs_google_click_id", - "contacts_eb1_property_hs_google_click_id_ab1", - "contacts_eb1_property_hs_google_click_id_ab2", - "contacts_eb1_property_hs_google_click_id_ab3", - "contacts_ec0_property_hs_analytics_last_url", - "contacts_ec0_property_hs_analytics_last_url_ab1", - "contacts_ec0_property_hs_analytics_last_url_ab2", - "contacts_ec0_property_hs_analytics_last_url_ab3", - "contacts_ed3_property_date_of_birth", - "contacts_ed3_property_date_of_birth_ab1", - "contacts_ed3_property_date_of_birth_ab2", - "contacts_ed3_property_date_of_birth_ab3", - "contacts_eda_property_hs_email_hard_bounce_reason_enum", - "contacts_eda_property_hs_email_hard_bounce_reason_enum_ab1", - "contacts_eda_property_hs_email_hard_bounce_reason_enum_ab2", - "contacts_eda_property_hs_email_hard_bounce_reason_enum_ab3", - "contacts_eec_property_hs_calculated_phone_number_region_code", - "contacts_eec_property_hs_calculated_phone_number_region_code_ab1", - "contacts_eec_property_hs_calculated_phone_number_region_code_ab2", - "contacts_eec_property_hs_calculated_phone_number_region_code_ab3", - "contacts_f0b_property_hs_first_engagement_object_id", - "contacts_f0b_property_hs_first_engagement_object_id_ab1", - "contacts_f0b_property_hs_first_engagement_object_id_ab2", - "contacts_f0b_property_hs_first_engagement_object_id_ab3", - "contacts_f27_property_hs_analytics_source", - "contacts_f27_property_hs_analytics_source_ab1", - "contacts_f27_property_hs_analytics_source_ab2", - "contacts_f27_property_hs_analytics_source_ab3", - "contacts_fa8_property_graduation_date", - "contacts_fa8_property_graduation_date_ab1", - "contacts_fa8_property_graduation_date_ab2", - "contacts_fa8_property_graduation_date_ab3", - "contacts_fa8_property_ip_latlon", - "contacts_fa8_property_ip_latlon_ab1", - "contacts_fa8_property_ip_latlon_ab2", - "contacts_fa8_property_ip_latlon_ab3", - "contacts_fab_property_hs_persona", - "contacts_fab_property_hs_persona_ab1", - "contacts_fab_property_hs_persona_ab2", - "contacts_fab_property_hs_persona_ab3", - "contacts_fc3_property_hs_lifecyclestage_opportunity_date", - "contacts_fc3_property_hs_lifecyclestage_opportunity_date_ab1", - "contacts_fc3_property_hs_lifecyclestage_opportunity_date_ab2", - "contacts_fc3_property_hs_lifecyclestage_opportunity_date_ab3", - "contacts_fd5_property_hs_email_quarantined", - "contacts_fd5_property_hs_email_quarantined_ab1", - "contacts_fd5_property_hs_email_quarantined_ab2", - "contacts_fd5_property_hs_email_quarantined_ab3", - "contacts_fdc_property_hubspotscore", - "contacts_fdc_property_hubspotscore_ab1", - "contacts_fdc_property_hubspotscore_ab2", - "contacts_fdc_property_hubspotscore_ab3", - "contacts_fea_identity_profiles", - "contacts_fea_identity_profiles_ab1", - "contacts_fea_identity_profiles_ab2", - "contacts_fea_identity_profiles_ab3", - "contacts_ff7_property_hs_analytics_first_url", - "contacts_ff7_property_hs_analytics_first_url_ab1", - "contacts_ff7_property_hs_analytics_first_url_ab2", - "contacts_ff7_property_hs_analytics_first_url_ab3", - "contacts_identity_profiles_767_identities", - "contacts_identity_profiles_767_identities_ab1", - "contacts_identity_profiles_767_identities_ab2", - "contacts_identity_profiles_767_identities_ab3", - "contacts_merge_audits_361_merged_from_email", - "contacts_merge_audits_361_merged_from_email_ab1", - "contacts_merge_audits_361_merged_from_email_ab2", - "contacts_merge_audits_361_merged_from_email_ab3", - "contacts_merge_audits_3c4_merged_to_email", - "contacts_merge_audits_3c4_merged_to_email_ab1", - "contacts_merge_audits_3c4_merged_to_email_ab2", - "contacts_merge_audits_3c4_merged_to_email_ab3", - "contacts_properties_01c_seniority", - "contacts_properties_01c_seniority_ab1", - "contacts_properties_01c_seniority_ab2", - "contacts_properties_01c_seniority_ab3", - "contacts_properties_01e_company_size", - "contacts_properties_01e_company_size_ab1", - "contacts_properties_01e_company_size_ab2", - "contacts_properties_01e_company_size_ab3", - "contacts_properties_02e_hs_last_sales_activity_timestamp", - "contacts_properties_02e_hs_last_sales_activity_timestamp_ab1", - "contacts_properties_02e_hs_last_sales_activity_timestamp_ab2", - "contacts_properties_02e_hs_last_sales_activity_timestamp_ab3", - "contacts_properties_03a_hs_analytics_revenue", - "contacts_properties_03a_hs_analytics_revenue_ab1", - "contacts_properties_03a_hs_analytics_revenue_ab2", - "contacts_properties_03a_hs_analytics_revenue_ab3", - "contacts_properties_03c_hs_email_sends_since_last_engagement", - "contacts_properties_03c_hs_email_sends_since_last_engagement_ab1", - "contacts_properties_03c_hs_email_sends_since_last_engagement_ab2", - "contacts_properties_03c_hs_email_sends_since_last_engagement_ab3", - "contacts_properties_046_hs_lifecyclestage_other_date", - "contacts_properties_046_hs_lifecyclestage_other_date_ab1", - "contacts_properties_046_hs_lifecyclestage_other_date_ab2", - "contacts_properties_046_hs_lifecyclestage_other_date_ab3", - "contacts_properties_04b_engagements_last_meeting_booked_campaign", - "contacts_properties_04b_engagements_last_meeting_booked_campaign_ab1", - "contacts_properties_04b_engagements_last_meeting_booked_campaign_ab2", - "contacts_properties_04b_engagements_last_meeting_booked_campaign_ab3", - "contacts_properties_063_total_revenue", - "contacts_properties_063_total_revenue_ab1", - "contacts_properties_063_total_revenue_ab2", - "contacts_properties_063_total_revenue_ab3", - "contacts_properties_067_days_to_close", - "contacts_properties_067_days_to_close_ab1", - "contacts_properties_067_days_to_close_ab2", - "contacts_properties_067_days_to_close_ab3", - "contacts_properties_0a7_hs_sa_first_engagement_date", - "contacts_properties_0a7_hs_sa_first_engagement_date_ab1", - "contacts_properties_0a7_hs_sa_first_engagement_date_ab2", - "contacts_properties_0a7_hs_sa_first_engagement_date_ab3", - "contacts_properties_0d3_hs_lifecyclestage_lead_date", - "contacts_properties_0d3_hs_lifecyclestage_lead_date_ab1", - "contacts_properties_0d3_hs_lifecyclestage_lead_date_ab2", - "contacts_properties_0d3_hs_lifecyclestage_lead_date_ab3", - "contacts_properties_0e1_hs_analytics_last_referrer", - "contacts_properties_0e1_hs_analytics_last_referrer_ab1", - "contacts_properties_0e1_hs_analytics_last_referrer_ab2", - "contacts_properties_0e1_hs_analytics_last_referrer_ab3", - "contacts_properties_0ee_num_unique_conversion_events", - "contacts_properties_0ee_num_unique_conversion_events_ab1", - "contacts_properties_0ee_num_unique_conversion_events_ab2", - "contacts_properties_0ee_num_unique_conversion_events_ab3", - "contacts_properties_0fc_ip_state", - "contacts_properties_0fc_ip_state_ab1", - "contacts_properties_0fc_ip_state_ab2", - "contacts_properties_0fc_ip_state_ab3", - "contacts_properties_113_hs_email_quarantined", - "contacts_properties_113_hs_email_quarantined_ab1", - "contacts_properties_113_hs_email_quarantined_ab2", - "contacts_properties_113_hs_email_quarantined_ab3", - "contacts_properties_11b_hs_content_membership_email_confirmed", - "contacts_properties_11b_hs_content_membership_email_confirmed_ab1", - "contacts_properties_11b_hs_content_membership_email_confirmed_ab2", - "contacts_properties_11b_hs_content_membership_email_confirmed_ab3", - "contacts_properties_131_hs_analytics_average_page_views", - "contacts_properties_131_hs_analytics_average_page_views_ab1", - "contacts_properties_131_hs_analytics_average_page_views_ab2", - "contacts_properties_131_hs_analytics_average_page_views_ab3", - "contacts_properties_13c_hs_searchable_calculated_international_mobile_number", - "contacts_properties_13c_hs_searchable_calculated_international_mobile_number_ab1", - "contacts_properties_13c_hs_searchable_calculated_international_mobile_number_ab2", - "contacts_properties_13c_hs_searchable_calculated_international_mobile_number_ab3", - "contacts_properties_147_associatedcompanyid", - "contacts_properties_147_associatedcompanyid_ab1", - "contacts_properties_147_associatedcompanyid_ab2", - "contacts_properties_147_associatedcompanyid_ab3", - "contacts_properties_14c_firstname", - "contacts_properties_14c_firstname_ab1", - "contacts_properties_14c_firstname_ab2", - "contacts_properties_14c_firstname_ab3", - "contacts_properties_185_notes_last_updated", - "contacts_properties_185_notes_last_updated_ab1", - "contacts_properties_185_notes_last_updated_ab2", - "contacts_properties_185_notes_last_updated_ab3", - "contacts_properties_188_recent_conversion_event_name", - "contacts_properties_188_recent_conversion_event_name_ab1", - "contacts_properties_188_recent_conversion_event_name_ab2", - "contacts_properties_188_recent_conversion_event_name_ab3", - "contacts_properties_18c_hs_email_last_send_date", - "contacts_properties_18c_hs_email_last_send_date_ab1", - "contacts_properties_18c_hs_email_last_send_date_ab2", - "contacts_properties_18c_hs_email_last_send_date_ab3", - "contacts_properties_192_hs_analytics_last_url", - "contacts_properties_192_hs_analytics_last_url_ab1", - "contacts_properties_192_hs_analytics_last_url_ab2", - "contacts_properties_192_hs_analytics_last_url_ab3", - "contacts_properties_193_hs_lifecyclestage_evangelist_date", - "contacts_properties_193_hs_lifecyclestage_evangelist_date_ab1", - "contacts_properties_193_hs_lifecyclestage_evangelist_date_ab2", - "contacts_properties_193_hs_lifecyclestage_evangelist_date_ab3", - "contacts_properties_1ae_hs_email_quarantined_reason", - "contacts_properties_1ae_hs_email_quarantined_reason_ab1", - "contacts_properties_1ae_hs_email_quarantined_reason_ab2", - "contacts_properties_1ae_hs_email_quarantined_reason_ab3", - "contacts_properties_1b9_mobilephone", - "contacts_properties_1b9_mobilephone_ab1", - "contacts_properties_1b9_mobilephone_ab2", - "contacts_properties_1b9_mobilephone_ab3", - "contacts_properties_1d8_surveymonkeyeventlastupdated", - "contacts_properties_1d8_surveymonkeyeventlastupdated_ab1", - "contacts_properties_1d8_surveymonkeyeventlastupdated_ab2", - "contacts_properties_1d8_surveymonkeyeventlastupdated_ab3", - "contacts_properties_1f3_hs_content_membership_registration_email_sent_at", - "contacts_properties_1f3_hs_content_membership_registration_email_sent_at_ab1", - "contacts_properties_1f3_hs_content_membership_registration_email_sent_at_ab2", - "contacts_properties_1f3_hs_content_membership_registration_email_sent_at_ab3", - "contacts_properties_232_phone", - "contacts_properties_232_phone_ab1", - "contacts_properties_232_phone_ab2", - "contacts_properties_232_phone_ab3", - "contacts_properties_242_hs_email_first_click_date", - "contacts_properties_242_hs_email_first_click_date_ab1", - "contacts_properties_242_hs_email_first_click_date_ab2", - "contacts_properties_242_hs_email_first_click_date_ab3", - "contacts_properties_265_hs_testrollback", - "contacts_properties_265_hs_testrollback_ab1", - "contacts_properties_265_hs_testrollback_ab2", - "contacts_properties_265_hs_testrollback_ab3", - "contacts_properties_27a_marital_status", - "contacts_properties_27a_marital_status_ab1", - "contacts_properties_27a_marital_status_ab2", - "contacts_properties_27a_marital_status_ab3", - "contacts_properties_283_hs_all_owner_ids", - "contacts_properties_283_hs_all_owner_ids_ab1", - "contacts_properties_283_hs_all_owner_ids_ab2", - "contacts_properties_283_hs_all_owner_ids_ab3", - "contacts_properties_283_hubspotscore", - "contacts_properties_283_hubspotscore_ab1", - "contacts_properties_283_hubspotscore_ab2", - "contacts_properties_283_hubspotscore_ab3", - "contacts_properties_2c2_salutation", - "contacts_properties_2c2_salutation_ab1", - "contacts_properties_2c2_salutation_ab2", - "contacts_properties_2c2_salutation_ab3", - "contacts_properties_2ce_date_of_birth", - "contacts_properties_2ce_date_of_birth_ab1", - "contacts_properties_2ce_date_of_birth_ab2", - "contacts_properties_2ce_date_of_birth_ab3", - "contacts_properties_2d1_createdate", - "contacts_properties_2d1_createdate_ab1", - "contacts_properties_2d1_createdate_ab2", - "contacts_properties_2d1_createdate_ab3", - "contacts_properties_2d6_hs_email_bounce", - "contacts_properties_2d6_hs_email_bounce_ab1", - "contacts_properties_2d6_hs_email_bounce_ab2", - "contacts_properties_2d6_hs_email_bounce_ab3", - "contacts_properties_2e4_hs_is_contact", - "contacts_properties_2e4_hs_is_contact_ab1", - "contacts_properties_2e4_hs_is_contact_ab2", - "contacts_properties_2e4_hs_is_contact_ab3", - "contacts_properties_2ec_hs_searchable_calculated_international_phone_number", - "contacts_properties_2ec_hs_searchable_calculated_international_phone_number_ab1", - "contacts_properties_2ec_hs_searchable_calculated_international_phone_number_ab2", - "contacts_properties_2ec_hs_searchable_calculated_international_phone_number_ab3", - "contacts_properties_2f8_hs_conversations_visitor_email", - "contacts_properties_2f8_hs_conversations_visitor_email_ab1", - "contacts_properties_2f8_hs_conversations_visitor_email_ab2", - "contacts_properties_2f8_hs_conversations_visitor_email_ab3", - "contacts_properties_337_industry", - "contacts_properties_337_industry_ab1", - "contacts_properties_337_industry_ab2", - "contacts_properties_337_industry_ab3", - "contacts_properties_378_notes_next_activity_date", - "contacts_properties_378_notes_next_activity_date_ab1", - "contacts_properties_378_notes_next_activity_date_ab2", - "contacts_properties_378_notes_next_activity_date_ab3", - "contacts_properties_388_hs_analytics_first_referrer", - "contacts_properties_388_hs_analytics_first_referrer_ab1", - "contacts_properties_388_hs_analytics_first_referrer_ab2", - "contacts_properties_388_hs_analytics_first_referrer_ab3", - "contacts_properties_38e_relationship_status", - "contacts_properties_38e_relationship_status_ab1", - "contacts_properties_38e_relationship_status_ab2", - "contacts_properties_38e_relationship_status_ab3", - "contacts_properties_3a1_hs_analytics_first_timestamp", - "contacts_properties_3a1_hs_analytics_first_timestamp_ab1", - "contacts_properties_3a1_hs_analytics_first_timestamp_ab2", - "contacts_properties_3a1_hs_analytics_first_timestamp_ab3", - "contacts_properties_3e9_hs_document_last_revisited", - "contacts_properties_3e9_hs_document_last_revisited_ab1", - "contacts_properties_3e9_hs_document_last_revisited_ab2", - "contacts_properties_3e9_hs_document_last_revisited_ab3", - "contacts_properties_3ff_work_email", - "contacts_properties_3ff_work_email_ab1", - "contacts_properties_3ff_work_email_ab2", - "contacts_properties_3ff_work_email_ab3", - "contacts_properties_409_associatedcompanylastupdated", - "contacts_properties_409_associatedcompanylastupdated_ab1", - "contacts_properties_409_associatedcompanylastupdated_ab2", - "contacts_properties_409_associatedcompanylastupdated_ab3", - "contacts_properties_411_ip_state_code", - "contacts_properties_411_ip_state_code_ab1", - "contacts_properties_411_ip_state_code_ab2", - "contacts_properties_411_ip_state_code_ab3", - "contacts_properties_429_engagements_last_meeting_booked_medium", - "contacts_properties_429_engagements_last_meeting_booked_medium_ab1", - "contacts_properties_429_engagements_last_meeting_booked_medium_ab2", - "contacts_properties_429_engagements_last_meeting_booked_medium_ab3", - "contacts_properties_42b_hs_email_hard_bounce_reason_enum", - "contacts_properties_42b_hs_email_hard_bounce_reason_enum_ab1", - "contacts_properties_42b_hs_email_hard_bounce_reason_enum_ab2", - "contacts_properties_42b_hs_email_hard_bounce_reason_enum_ab3", - "contacts_properties_42d_hs_object_id", - "contacts_properties_42d_hs_object_id_ab1", - "contacts_properties_42d_hs_object_id_ab2", - "contacts_properties_42d_hs_object_id_ab3", - "contacts_properties_43a_lifecyclestage", - "contacts_properties_43a_lifecyclestage_ab1", - "contacts_properties_43a_lifecyclestage_ab2", - "contacts_properties_43a_lifecyclestage_ab3", - "contacts_properties_454_first_conversion_date", - "contacts_properties_454_first_conversion_date_ab1", - "contacts_properties_454_first_conversion_date_ab2", - "contacts_properties_454_first_conversion_date_ab3", - "contacts_properties_45d_hs_analytics_first_url", - "contacts_properties_45d_hs_analytics_first_url_ab1", - "contacts_properties_45d_hs_analytics_first_url_ab2", - "contacts_properties_45d_hs_analytics_first_url_ab3", - "contacts_properties_467_hs_analytics_last_visit_timestamp", - "contacts_properties_467_hs_analytics_last_visit_timestamp_ab1", - "contacts_properties_467_hs_analytics_last_visit_timestamp_ab2", - "contacts_properties_467_hs_analytics_last_visit_timestamp_ab3", - "contacts_properties_472_hs_time_to_first_engagement", - "contacts_properties_472_hs_time_to_first_engagement_ab1", - "contacts_properties_472_hs_time_to_first_engagement_ab2", - "contacts_properties_472_hs_time_to_first_engagement_ab3", - "contacts_properties_4e6_numemployees", - "contacts_properties_4e6_numemployees_ab1", - "contacts_properties_4e6_numemployees_ab2", - "contacts_properties_4e6_numemployees_ab3", - "contacts_properties_562_hs_email_first_send_date", - "contacts_properties_562_hs_email_first_send_date_ab1", - "contacts_properties_562_hs_email_first_send_date_ab2", - "contacts_properties_562_hs_email_first_send_date_ab3", - "contacts_properties_56f_first_conversion_event_name", - "contacts_properties_56f_first_conversion_event_name_ab1", - "contacts_properties_56f_first_conversion_event_name_ab2", - "contacts_properties_56f_first_conversion_event_name_ab3", - "contacts_properties_58b_hs_google_click_id", - "contacts_properties_58b_hs_google_click_id_ab1", - "contacts_properties_58b_hs_google_click_id_ab2", - "contacts_properties_58b_hs_google_click_id_ab3", - "contacts_properties_59f_hs_lastmodifieddate", - "contacts_properties_59f_hs_lastmodifieddate_ab1", - "contacts_properties_59f_hs_lastmodifieddate_ab2", - "contacts_properties_59f_hs_lastmodifieddate_ab3", - "contacts_properties_5ac_hs_calculated_phone_number", - "contacts_properties_5ac_hs_calculated_phone_number_ab1", - "contacts_properties_5ac_hs_calculated_phone_number_ab2", - "contacts_properties_5ac_hs_calculated_phone_number_ab3", - "contacts_properties_5b2_hs_analytics_last_touch_converting_campaign", - "contacts_properties_5b2_hs_analytics_last_touch_converting_campaign_ab1", - "contacts_properties_5b2_hs_analytics_last_touch_converting_campaign_ab2", - "contacts_properties_5b2_hs_analytics_last_touch_converting_campaign_ab3", - "contacts_properties_5c3_engagements_last_meeting_booked", - "contacts_properties_5c3_engagements_last_meeting_booked_ab1", - "contacts_properties_5c3_engagements_last_meeting_booked_ab2", - "contacts_properties_5c3_engagements_last_meeting_booked_ab3", - "contacts_properties_5cc_city", - "contacts_properties_5cc_city_ab1", - "contacts_properties_5cc_city_ab2", - "contacts_properties_5cc_city_ab3", - "contacts_properties_5ce_notes_last_contacted", - "contacts_properties_5ce_notes_last_contacted_ab1", - "contacts_properties_5ce_notes_last_contacted_ab2", - "contacts_properties_5ce_notes_last_contacted_ab3", - "contacts_properties_5e0_hs_legal_basis", - "contacts_properties_5e0_hs_legal_basis_ab1", - "contacts_properties_5e0_hs_legal_basis_ab2", - "contacts_properties_5e0_hs_legal_basis_ab3", - "contacts_properties_5e2_hs_calculated_phone_number_area_code", - "contacts_properties_5e2_hs_calculated_phone_number_area_code_ab1", - "contacts_properties_5e2_hs_calculated_phone_number_area_code_ab2", - "contacts_properties_5e2_hs_calculated_phone_number_area_code_ab3", - "contacts_properties_5fb_recent_deal_amount", - "contacts_properties_5fb_recent_deal_amount_ab1", - "contacts_properties_5fb_recent_deal_amount_ab2", - "contacts_properties_5fb_recent_deal_amount_ab3", - "contacts_properties_5fd_hs_sales_email_last_replied", - "contacts_properties_5fd_hs_sales_email_last_replied_ab1", - "contacts_properties_5fd_hs_sales_email_last_replied_ab2", - "contacts_properties_5fd_hs_sales_email_last_replied_ab3", - "contacts_properties_60c_hs_created_by_user_id", - "contacts_properties_60c_hs_created_by_user_id_ab1", - "contacts_properties_60c_hs_created_by_user_id_ab2", - "contacts_properties_60c_hs_created_by_user_id_ab3", - "contacts_properties_619_hs_sa_first_engagement_object_type", - "contacts_properties_619_hs_sa_first_engagement_object_type_ab1", - "contacts_properties_619_hs_sa_first_engagement_object_type_ab2", - "contacts_properties_619_hs_sa_first_engagement_object_type_ab3", - "contacts_properties_621_hs_content_membership_status", - "contacts_properties_621_hs_content_membership_status_ab1", - "contacts_properties_621_hs_content_membership_status_ab2", - "contacts_properties_621_hs_content_membership_status_ab3", - "contacts_properties_630_state", - "contacts_properties_630_state_ab1", - "contacts_properties_630_state_ab2", - "contacts_properties_630_state_ab3", - "contacts_properties_632_hs_content_membership_registration_domain_sent_to", - "contacts_properties_632_hs_content_membership_registration_domain_sent_to_ab1", - "contacts_properties_632_hs_content_membership_registration_domain_sent_to_ab2", - "contacts_properties_632_hs_content_membership_registration_domain_sent_to_ab3", - "contacts_properties_653_annualrevenue", - "contacts_properties_653_annualrevenue_ab1", - "contacts_properties_653_annualrevenue_ab2", - "contacts_properties_653_annualrevenue_ab3", - "contacts_properties_716_hs_sa_first_engagement_descr", - "contacts_properties_716_hs_sa_first_engagement_descr_ab1", - "contacts_properties_716_hs_sa_first_engagement_descr_ab2", - "contacts_properties_716_hs_sa_first_engagement_descr_ab3", - "contacts_properties_732_hubspot_owner_assigneddate", - "contacts_properties_732_hubspot_owner_assigneddate_ab1", - "contacts_properties_732_hubspot_owner_assigneddate_ab2", - "contacts_properties_732_hubspot_owner_assigneddate_ab3", - "contacts_properties_737_first_deal_created_date", - "contacts_properties_737_first_deal_created_date_ab1", - "contacts_properties_737_first_deal_created_date_ab2", - "contacts_properties_737_first_deal_created_date_ab3", - "contacts_properties_753_hs_analytics_source_data_1", - "contacts_properties_753_hs_analytics_source_data_1_ab1", - "contacts_properties_753_hs_analytics_source_data_1_ab2", - "contacts_properties_753_hs_analytics_source_data_1_ab3", - "contacts_properties_774_closedate", - "contacts_properties_774_closedate_ab1", - "contacts_properties_774_closedate_ab2", - "contacts_properties_774_closedate_ab3", - "contacts_properties_777_hs_facebook_click_id", - "contacts_properties_777_hs_facebook_click_id_ab1", - "contacts_properties_777_hs_facebook_click_id_ab2", - "contacts_properties_777_hs_facebook_click_id_ab3", - "contacts_properties_77d_lastname", - "contacts_properties_77d_lastname_ab1", - "contacts_properties_77d_lastname_ab2", - "contacts_properties_77d_lastname_ab3", - "contacts_properties_7b1_hs_analytics_num_page_views", - "contacts_properties_7b1_hs_analytics_num_page_views_ab1", - "contacts_properties_7b1_hs_analytics_num_page_views_ab2", - "contacts_properties_7b1_hs_analytics_num_page_views_ab3", - "contacts_properties_7d5_hs_searchable_calculated_mobile_number", - "contacts_properties_7d5_hs_searchable_calculated_mobile_number_ab1", - "contacts_properties_7d5_hs_searchable_calculated_mobile_number_ab2", - "contacts_properties_7d5_hs_searchable_calculated_mobile_number_ab3", - "contacts_properties_800_hubspot_owner_id", - "contacts_properties_800_hubspot_owner_id_ab1", - "contacts_properties_800_hubspot_owner_id_ab2", - "contacts_properties_800_hubspot_owner_id_ab3", - "contacts_properties_803_hs_lifecyclestage_salesqualifiedlead_date", - "contacts_properties_803_hs_lifecyclestage_salesqualifiedlead_date_ab1", - "contacts_properties_803_hs_lifecyclestage_salesqualifiedlead_date_ab2", - "contacts_properties_803_hs_lifecyclestage_salesqualifiedlead_date_ab3", - "contacts_properties_82a_hs_email_last_email_name", - "contacts_properties_82a_hs_email_last_email_name_ab1", - "contacts_properties_82a_hs_email_last_email_name_ab2", - "contacts_properties_82a_hs_email_last_email_name_ab3", - "contacts_properties_83f_hs_all_contact_vids", - "contacts_properties_83f_hs_all_contact_vids_ab1", - "contacts_properties_83f_hs_all_contact_vids_ab2", - "contacts_properties_83f_hs_all_contact_vids_ab3", - "contacts_properties_84e_school", - "contacts_properties_84e_school_ab1", - "contacts_properties_84e_school_ab2", - "contacts_properties_84e_school_ab3", - "contacts_properties_86e_hs_facebook_ad_clicked", - "contacts_properties_86e_hs_facebook_ad_clicked_ab1", - "contacts_properties_86e_hs_facebook_ad_clicked_ab2", - "contacts_properties_86e_hs_facebook_ad_clicked_ab3", - "contacts_properties_886_hs_buying_role", - "contacts_properties_886_hs_buying_role_ab1", - "contacts_properties_886_hs_buying_role_ab2", - "contacts_properties_886_hs_buying_role_ab3", - "contacts_properties_8ec_website", - "contacts_properties_8ec_website_ab1", - "contacts_properties_8ec_website_ab2", - "contacts_properties_8ec_website_ab3", - "contacts_properties_901_hs_analytics_source", - "contacts_properties_901_hs_analytics_source_ab1", - "contacts_properties_901_hs_analytics_source_ab2", - "contacts_properties_901_hs_analytics_source_ab3", - "contacts_properties_90d_hs_email_optout", - "contacts_properties_90d_hs_email_optout_ab1", - "contacts_properties_90d_hs_email_optout_ab2", - "contacts_properties_90d_hs_email_optout_ab3", - "contacts_properties_915_hs_email_first_open_date", - "contacts_properties_915_hs_email_first_open_date_ab1", - "contacts_properties_915_hs_email_first_open_date_ab2", - "contacts_properties_915_hs_email_first_open_date_ab3", - "contacts_properties_91c_gender", - "contacts_properties_91c_gender_ab1", - "contacts_properties_91c_gender_ab2", - "contacts_properties_91c_gender_ab3", - "contacts_properties_927_hs_lead_status", - "contacts_properties_927_hs_lead_status_ab1", - "contacts_properties_927_hs_lead_status_ab2", - "contacts_properties_927_hs_lead_status_ab3", - "contacts_properties_933_hs_sequences_is_enrolled", - "contacts_properties_933_hs_sequences_is_enrolled_ab1", - "contacts_properties_933_hs_sequences_is_enrolled_ab2", - "contacts_properties_933_hs_sequences_is_enrolled_ab3", - "contacts_properties_943_graduation_date", - "contacts_properties_943_graduation_date_ab1", - "contacts_properties_943_graduation_date_ab2", - "contacts_properties_943_graduation_date_ab3", - "contacts_properties_94d_company", - "contacts_properties_94d_company_ab1", - "contacts_properties_94d_company_ab2", - "contacts_properties_94d_company_ab3", - "contacts_properties_96d_hs_calculated_mobile_number", - "contacts_properties_96d_hs_calculated_mobile_number_ab1", - "contacts_properties_96d_hs_calculated_mobile_number_ab2", - "contacts_properties_96d_hs_calculated_mobile_number_ab3", - "contacts_properties_97b_hs_analytics_source_data_2", - "contacts_properties_97b_hs_analytics_source_data_2_ab1", - "contacts_properties_97b_hs_analytics_source_data_2_ab2", - "contacts_properties_97b_hs_analytics_source_data_2_ab3", - "contacts_properties_988_hs_email_bad_address", - "contacts_properties_988_hs_email_bad_address_ab1", - "contacts_properties_988_hs_email_bad_address_ab2", - "contacts_properties_988_hs_email_bad_address_ab3", - "contacts_properties_999_hs_lifecyclestage_marketingqualifiedlead_date", - "contacts_properties_999_hs_lifecyclestage_marketingqualifiedlead_date_ab1", - "contacts_properties_999_hs_lifecyclestage_marketingqualifiedlead_date_ab2", - "contacts_properties_999_hs_lifecyclestage_marketingqualifiedlead_date_ab3", - "contacts_properties_999_hs_lifecyclestage_opportunity_date", - "contacts_properties_999_hs_lifecyclestage_opportunity_date_ab1", - "contacts_properties_999_hs_lifecyclestage_opportunity_date_ab2", - "contacts_properties_999_hs_lifecyclestage_opportunity_date_ab3", - "contacts_properties_9a3_hs_sales_email_last_clicked", - "contacts_properties_9a3_hs_sales_email_last_clicked_ab1", - "contacts_properties_9a3_hs_sales_email_last_clicked_ab2", - "contacts_properties_9a3_hs_sales_email_last_clicked_ab3", - "contacts_properties_9a4_hs_calculated_phone_number_country_code", - "contacts_properties_9a4_hs_calculated_phone_number_country_code_ab1", - "contacts_properties_9a4_hs_calculated_phone_number_country_code_ab2", - "contacts_properties_9a4_hs_calculated_phone_number_country_code_ab3", - "contacts_properties_9a4_hs_language", - "contacts_properties_9a4_hs_language_ab1", - "contacts_properties_9a4_hs_language_ab2", - "contacts_properties_9a4_hs_language_ab3", - "contacts_properties_9a4_military_status", - "contacts_properties_9a4_military_status_ab1", - "contacts_properties_9a4_military_status_ab2", - "contacts_properties_9a4_military_status_ab3", - "contacts_properties_9b2_hs_first_engagement_object_id", - "contacts_properties_9b2_hs_first_engagement_object_id_ab1", - "contacts_properties_9b2_hs_first_engagement_object_id_ab2", - "contacts_properties_9b2_hs_first_engagement_object_id_ab3", - "contacts_properties_9b5_num_contacted_notes", - "contacts_properties_9b5_num_contacted_notes_ab1", - "contacts_properties_9b5_num_contacted_notes_ab2", - "contacts_properties_9b5_num_contacted_notes_ab3", - "contacts_properties_9c5_hs_additional_emails", - "contacts_properties_9c5_hs_additional_emails_ab1", - "contacts_properties_9c5_hs_additional_emails_ab2", - "contacts_properties_9c5_hs_additional_emails_ab3", - "contacts_properties_9e2_ip_city", - "contacts_properties_9e2_ip_city_ab1", - "contacts_properties_9e2_ip_city_ab2", - "contacts_properties_9e2_ip_city_ab3", - "contacts_properties_9ea_num_notes", - "contacts_properties_9ea_num_notes_ab1", - "contacts_properties_9ea_num_notes_ab2", - "contacts_properties_9ea_num_notes_ab3", - "contacts_properties_9fb_hs_lifecyclestage_customer_date", - "contacts_properties_9fb_hs_lifecyclestage_customer_date_ab1", - "contacts_properties_9fb_hs_lifecyclestage_customer_date_ab2", - "contacts_properties_9fb_hs_lifecyclestage_customer_date_ab3", - "contacts_properties_9fc_job_function", - "contacts_properties_9fc_job_function_ab1", - "contacts_properties_9fc_job_function_ab2", - "contacts_properties_9fc_job_function_ab3", - "contacts_properties_a22_hs_is_unworked", - "contacts_properties_a22_hs_is_unworked_ab1", - "contacts_properties_a22_hs_is_unworked_ab2", - "contacts_properties_a22_hs_is_unworked_ab3", - "contacts_properties_a4e_recent_conversion_date", - "contacts_properties_a4e_recent_conversion_date_ab1", - "contacts_properties_a4e_recent_conversion_date_ab2", - "contacts_properties_a4e_recent_conversion_date_ab3", - "contacts_properties_a5b_hs_email_domain", - "contacts_properties_a5b_hs_email_domain_ab1", - "contacts_properties_a5b_hs_email_domain_ab2", - "contacts_properties_a5b_hs_email_domain_ab3", - "contacts_properties_a62_field_of_study", - "contacts_properties_a62_field_of_study_ab1", - "contacts_properties_a62_field_of_study_ab2", - "contacts_properties_a62_field_of_study_ab3", - "contacts_properties_a62_num_associated_deals", - "contacts_properties_a62_num_associated_deals_ab1", - "contacts_properties_a62_num_associated_deals_ab2", - "contacts_properties_a62_num_associated_deals_ab3", - "contacts_properties_a76_hs_emailconfirmationstatus", - "contacts_properties_a76_hs_emailconfirmationstatus_ab1", - "contacts_properties_a76_hs_emailconfirmationstatus_ab2", - "contacts_properties_a76_hs_emailconfirmationstatus_ab3", - "contacts_properties_a7d_hs_user_ids_of_all_owners", - "contacts_properties_a7d_hs_user_ids_of_all_owners_ab1", - "contacts_properties_a7d_hs_user_ids_of_all_owners_ab2", - "contacts_properties_a7d_hs_user_ids_of_all_owners_ab3", - "contacts_properties_a8a_hs_avatar_filemanager_key", - "contacts_properties_a8a_hs_avatar_filemanager_key_ab1", - "contacts_properties_a8a_hs_avatar_filemanager_key_ab2", - "contacts_properties_a8a_hs_avatar_filemanager_key_ab3", - "contacts_properties_aa1_ip_country_code", - "contacts_properties_aa1_ip_country_code_ab1", - "contacts_properties_aa1_ip_country_code_ab2", - "contacts_properties_aa1_ip_country_code_ab3", - "contacts_properties_ad3_hs_merged_object_ids", - "contacts_properties_ad3_hs_merged_object_ids_ab1", - "contacts_properties_ad3_hs_merged_object_ids_ab2", - "contacts_properties_ad3_hs_merged_object_ids_ab3", - "contacts_properties_aed_webinareventlastupdated", - "contacts_properties_aed_webinareventlastupdated_ab1", - "contacts_properties_aed_webinareventlastupdated_ab2", - "contacts_properties_aed_webinareventlastupdated_ab3", - "contacts_properties_af0_hs_calculated_phone_number_region_code", - "contacts_properties_af0_hs_calculated_phone_number_region_code_ab1", - "contacts_properties_af0_hs_calculated_phone_number_region_code_ab2", - "contacts_properties_af0_hs_calculated_phone_number_region_code_ab3", - "contacts_properties_b08_message", - "contacts_properties_b08_message_ab1", - "contacts_properties_b08_message_ab2", - "contacts_properties_b08_message_ab3", - "contacts_properties_b36_engagements_last_meeting_booked_source", - "contacts_properties_b36_engagements_last_meeting_booked_source_ab1", - "contacts_properties_b36_engagements_last_meeting_booked_source_ab2", - "contacts_properties_b36_engagements_last_meeting_booked_source_ab3", - "contacts_properties_b36_hs_email_hard_bounce_reason", - "contacts_properties_b36_hs_email_hard_bounce_reason_ab1", - "contacts_properties_b36_hs_email_hard_bounce_reason_ab2", - "contacts_properties_b36_hs_email_hard_bounce_reason_ab3", - "contacts_properties_b37_hs_all_accessible_team_ids", - "contacts_properties_b37_hs_all_accessible_team_ids_ab1", - "contacts_properties_b37_hs_all_accessible_team_ids_ab2", - "contacts_properties_b37_hs_all_accessible_team_ids_ab3", - "contacts_properties_b59_hs_ip_timezone", - "contacts_properties_b59_hs_ip_timezone_ab1", - "contacts_properties_b59_hs_ip_timezone_ab2", - "contacts_properties_b59_hs_ip_timezone_ab3", - "contacts_properties_ba9_hs_content_membership_notes", - "contacts_properties_ba9_hs_content_membership_notes_ab1", - "contacts_properties_ba9_hs_content_membership_notes_ab2", - "contacts_properties_ba9_hs_content_membership_notes_ab3", - "contacts_properties_bbb_hs_analytics_first_visit_timestamp", - "contacts_properties_bbb_hs_analytics_first_visit_timestamp_ab1", - "contacts_properties_bbb_hs_analytics_first_visit_timestamp_ab2", - "contacts_properties_bbb_hs_analytics_first_visit_timestamp_ab3", - "contacts_properties_c11_jobtitle", - "contacts_properties_c11_jobtitle_ab1", - "contacts_properties_c11_jobtitle_ab2", - "contacts_properties_c11_jobtitle_ab3", - "contacts_properties_c2b_hs_email_last_open_date", - "contacts_properties_c2b_hs_email_last_open_date_ab1", - "contacts_properties_c2b_hs_email_last_open_date_ab2", - "contacts_properties_c2b_hs_email_last_open_date_ab3", - "contacts_properties_c2b_hs_last_sales_activity_date", - "contacts_properties_c2b_hs_last_sales_activity_date_ab1", - "contacts_properties_c2b_hs_last_sales_activity_date_ab2", - "contacts_properties_c2b_hs_last_sales_activity_date_ab3", - "contacts_properties_c3e_hs_email_customer_quarantined_reason", - "contacts_properties_c3e_hs_email_customer_quarantined_reason_ab1", - "contacts_properties_c3e_hs_email_customer_quarantined_reason_ab2", - "contacts_properties_c3e_hs_email_customer_quarantined_reason_ab3", - "contacts_properties_c5a_hs_calculated_form_submissions", - "contacts_properties_c5a_hs_calculated_form_submissions_ab1", - "contacts_properties_c5a_hs_calculated_form_submissions_ab2", - "contacts_properties_c5a_hs_calculated_form_submissions_ab3", - "contacts_properties_c8f_hs_email_optout_10798197", - "contacts_properties_c8f_hs_email_optout_10798197_ab1", - "contacts_properties_c8f_hs_email_optout_10798197_ab2", - "contacts_properties_c8f_hs_email_optout_10798197_ab3", - "contacts_properties_c97_hs_email_open", - "contacts_properties_c97_hs_email_open_ab1", - "contacts_properties_c97_hs_email_open_ab2", - "contacts_properties_c97_hs_email_open_ab3", - "contacts_properties_caf_hs_analytics_last_timestamp", - "contacts_properties_caf_hs_analytics_last_timestamp_ab1", - "contacts_properties_caf_hs_analytics_last_timestamp_ab2", - "contacts_properties_caf_hs_analytics_last_timestamp_ab3", - "contacts_properties_caf_hs_email_click", - "contacts_properties_caf_hs_email_click_ab1", - "contacts_properties_caf_hs_email_click_ab2", - "contacts_properties_caf_hs_email_click_ab3", - "contacts_properties_cb6_hs_updated_by_user_id", - "contacts_properties_cb6_hs_updated_by_user_id_ab1", - "contacts_properties_cb6_hs_updated_by_user_id_ab2", - "contacts_properties_cb6_hs_updated_by_user_id_ab3", - "contacts_properties_ccb_hs_testpurge", - "contacts_properties_ccb_hs_testpurge_ab1", - "contacts_properties_ccb_hs_testpurge_ab2", - "contacts_properties_ccb_hs_testpurge_ab3", - "contacts_properties_cd4_hs_latest_meeting_activity", - "contacts_properties_cd4_hs_latest_meeting_activity_ab1", - "contacts_properties_cd4_hs_latest_meeting_activity_ab2", - "contacts_properties_cd4_hs_latest_meeting_activity_ab3", - "contacts_properties_cde_hs_analytics_num_event_completions", - "contacts_properties_cde_hs_analytics_num_event_completions_ab1", - "contacts_properties_cde_hs_analytics_num_event_completions_ab2", - "contacts_properties_cde_hs_analytics_num_event_completions_ab3", - "contacts_properties_d24_hs_createdate", - "contacts_properties_d24_hs_createdate_ab1", - "contacts_properties_d24_hs_createdate_ab2", - "contacts_properties_d24_hs_createdate_ab3", - "contacts_properties_d29_fax", - "contacts_properties_d29_fax_ab1", - "contacts_properties_d29_fax_ab2", - "contacts_properties_d29_fax_ab3", - "contacts_properties_d32_hs_analytics_first_touch_converting_campaign", - "contacts_properties_d32_hs_analytics_first_touch_converting_campaign_ab1", - "contacts_properties_d32_hs_analytics_first_touch_converting_campaign_ab2", - "contacts_properties_d32_hs_analytics_first_touch_converting_campaign_ab3", - "contacts_properties_d37_hubspot_team_id", - "contacts_properties_d37_hubspot_team_id_ab1", - "contacts_properties_d37_hubspot_team_id_ab2", - "contacts_properties_d37_hubspot_team_id_ab3", - "contacts_properties_d40_zip", - "contacts_properties_d40_zip_ab1", - "contacts_properties_d40_zip_ab2", - "contacts_properties_d40_zip_ab3", - "contacts_properties_d8f_email", - "contacts_properties_d8f_email_ab1", - "contacts_properties_d8f_email_ab2", - "contacts_properties_d8f_email_ab3", - "contacts_properties_d9f_hs_email_is_ineligible", - "contacts_properties_d9f_hs_email_is_ineligible_ab1", - "contacts_properties_d9f_hs_email_is_ineligible_ab2", - "contacts_properties_d9f_hs_email_is_ineligible_ab3", - "contacts_properties_da2_hs_calculated_merged_vids", - "contacts_properties_da2_hs_calculated_merged_vids_ab1", - "contacts_properties_da2_hs_calculated_merged_vids_ab2", - "contacts_properties_da2_hs_calculated_merged_vids_ab3", - "contacts_properties_dc9_ip_zipcode", - "contacts_properties_dc9_ip_zipcode_ab1", - "contacts_properties_dc9_ip_zipcode_ab2", - "contacts_properties_dc9_ip_zipcode_ab3", - "contacts_properties_de6_recent_deal_close_date", - "contacts_properties_de6_recent_deal_close_date_ab1", - "contacts_properties_de6_recent_deal_close_date_ab2", - "contacts_properties_de6_recent_deal_close_date_ab3", - "contacts_properties_e05_hs_analytics_num_visits", - "contacts_properties_e05_hs_analytics_num_visits_ab1", - "contacts_properties_e05_hs_analytics_num_visits_ab2", - "contacts_properties_e05_hs_analytics_num_visits_ab3", - "contacts_properties_e2d_lastmodifieddate", - "contacts_properties_e2d_lastmodifieddate_ab1", - "contacts_properties_e2d_lastmodifieddate_ab2", - "contacts_properties_e2d_lastmodifieddate_ab3", - "contacts_properties_e31_twitterhandle", - "contacts_properties_e31_twitterhandle_ab1", - "contacts_properties_e31_twitterhandle_ab2", - "contacts_properties_e31_twitterhandle_ab3", - "contacts_properties_e4e_hs_email_last_click_date", - "contacts_properties_e4e_hs_email_last_click_date_ab1", - "contacts_properties_e4e_hs_email_last_click_date_ab2", - "contacts_properties_e4e_hs_email_last_click_date_ab3", - "contacts_properties_e7f_hs_email_delivered", - "contacts_properties_e7f_hs_email_delivered_ab1", - "contacts_properties_e7f_hs_email_delivered_ab2", - "contacts_properties_e7f_hs_email_delivered_ab3", - "contacts_properties_e87_ip_latlon", - "contacts_properties_e87_ip_latlon_ab1", - "contacts_properties_e87_ip_latlon_ab2", - "contacts_properties_e87_ip_latlon_ab3", - "contacts_properties_e88_hs_created_by_conversations", - "contacts_properties_e88_hs_created_by_conversations_ab1", - "contacts_properties_e88_hs_created_by_conversations_ab2", - "contacts_properties_e88_hs_created_by_conversations_ab3", - "contacts_properties_ef9_start_date", - "contacts_properties_ef9_start_date_ab1", - "contacts_properties_ef9_start_date_ab2", - "contacts_properties_ef9_start_date_ab3", - "contacts_properties_f00_hs_persona", - "contacts_properties_f00_hs_persona_ab1", - "contacts_properties_f00_hs_persona_ab2", - "contacts_properties_f00_hs_persona_ab3", - "contacts_properties_f34_num_conversion_events", - "contacts_properties_f34_num_conversion_events_ab1", - "contacts_properties_f34_num_conversion_events_ab2", - "contacts_properties_f34_num_conversion_events_ab3", - "contacts_properties_f39_address", - "contacts_properties_f39_address_ab1", - "contacts_properties_f39_address_ab2", - "contacts_properties_f39_address_ab3", - "contacts_properties_f3b_degree", - "contacts_properties_f3b_degree_ab1", - "contacts_properties_f3b_degree_ab2", - "contacts_properties_f3b_degree_ab3", - "contacts_properties_f48_hs_count_is_unworked", - "contacts_properties_f48_hs_count_is_unworked_ab1", - "contacts_properties_f48_hs_count_is_unworked_ab2", - "contacts_properties_f48_hs_count_is_unworked_ab3", - "contacts_properties_f4c_hs_all_team_ids", - "contacts_properties_f4c_hs_all_team_ids_ab1", - "contacts_properties_f4c_hs_all_team_ids_ab2", - "contacts_properties_f4c_hs_all_team_ids_ab3", - "contacts_properties_f82_hs_sales_email_last_opened", - "contacts_properties_f82_hs_sales_email_last_opened_ab1", - "contacts_properties_f82_hs_sales_email_last_opened_ab2", - "contacts_properties_f82_hs_sales_email_last_opened_ab3", - "contacts_properties_fa8_hs_searchable_calculated_phone_number", - "contacts_properties_fa8_hs_searchable_calculated_phone_number_ab1", - "contacts_properties_fa8_hs_searchable_calculated_phone_number_ab2", - "contacts_properties_fa8_hs_searchable_calculated_phone_number_ab3", - "contacts_properties_faf_hs_lifecyclestage_subscriber_date", - "contacts_properties_faf_hs_lifecyclestage_subscriber_date_ab1", - "contacts_properties_faf_hs_lifecyclestage_subscriber_date_ab2", - "contacts_properties_faf_hs_lifecyclestage_subscriber_date_ab3", - "contacts_properties_fd0_ip_country", - "contacts_properties_fd0_ip_country_ab1", - "contacts_properties_fd0_ip_country_ab2", - "contacts_properties_fd0_ip_country_ab3", - "contacts_properties_ff4_hs_count_is_worked", - "contacts_properties_ff4_hs_count_is_worked_ab1", - "contacts_properties_ff4_hs_count_is_worked_ab2", - "contacts_properties_ff4_hs_count_is_worked_ab3", - "contacts_properties_ff7_hs_content_membership_registered_at", - "contacts_properties_ff7_hs_content_membership_registered_at_ab1", - "contacts_properties_ff7_hs_content_membership_registered_at_ab2", - "contacts_properties_ff7_hs_content_membership_registered_at_ab3", - "contacts_properties_fff_country", - "contacts_properties_fff_country_ab1", - "contacts_properties_fff_country_ab2", - "contacts_properties_fff_country_ab3", - "deal_pipelines_142_stages", - "deal_pipelines_142_stages_ab1", - "deal_pipelines_142_stages_ab2", - "deal_pipelines_142_stages_ab3", - "deals_070_properties", - "deals_070_properties_ab1", - "deals_070_properties_ab2", - "deals_070_properties_ab3", - "deals_0bf_property_engagements_last_meeting_booked_medium", - "deals_0bf_property_engagements_last_meeting_booked_medium_ab1", - "deals_0bf_property_engagements_last_meeting_booked_medium_ab2", - "deals_0bf_property_engagements_last_meeting_booked_medium_ab3", - "deals_0d6_property_hs_user_ids_of_all_owners", - "deals_0d6_property_hs_user_ids_of_all_owners_ab1", - "deals_0d6_property_hs_user_ids_of_all_owners_ab2", - "deals_0d6_property_hs_user_ids_of_all_owners_ab3", - "deals_0dc_property_hs_date_entered_closedwon", - "deals_0dc_property_hs_date_entered_closedwon_ab1", - "deals_0dc_property_hs_date_entered_closedwon_ab2", - "deals_0dc_property_hs_date_entered_closedwon_ab3", - "deals_0e7_property_hs_all_owner_ids", - "deals_0e7_property_hs_all_owner_ids_ab1", - "deals_0e7_property_hs_all_owner_ids_ab2", - "deals_0e7_property_hs_all_owner_ids_ab3", - "deals_139_property_notes_next_activity_date", - "deals_139_property_notes_next_activity_date_ab1", - "deals_139_property_notes_next_activity_date_ab2", - "deals_139_property_notes_next_activity_date_ab3", - "deals_141_property_hs_predicted_amount_in_home_currency", - "deals_141_property_hs_predicted_amount_in_home_currency_ab1", - "deals_141_property_hs_predicted_amount_in_home_currency_ab2", - "deals_141_property_hs_predicted_amount_in_home_currency_ab3", - "deals_16b_property_num_associated_contacts", - "deals_16b_property_num_associated_contacts_ab1", - "deals_16b_property_num_associated_contacts_ab2", - "deals_16b_property_num_associated_contacts_ab3", - "deals_19c_property_hs_time_in_contractsent", - "deals_19c_property_hs_time_in_contractsent_ab1", - "deals_19c_property_hs_time_in_contractsent_ab2", - "deals_19c_property_hs_time_in_contractsent_ab3", - "deals_1f2_property_hs_date_entered_9567449", - "deals_1f2_property_hs_date_entered_9567449_ab1", - "deals_1f2_property_hs_date_entered_9567449_ab2", - "deals_1f2_property_hs_date_entered_9567449_ab3", - "deals_205_property_hs_analytics_source_data_1", - "deals_205_property_hs_analytics_source_data_1_ab1", - "deals_205_property_hs_analytics_source_data_1_ab2", - "deals_205_property_hs_analytics_source_data_1_ab3", - "deals_212_property_hs_time_in_9567448", - "deals_212_property_hs_time_in_9567448_ab1", - "deals_212_property_hs_time_in_9567448_ab2", - "deals_212_property_hs_time_in_9567448_ab3", - "deals_241_property_hs_sales_email_last_replied", - "deals_241_property_hs_sales_email_last_replied_ab1", - "deals_241_property_hs_sales_email_last_replied_ab2", - "deals_241_property_hs_sales_email_last_replied_ab3", - "deals_26a_property_hs_date_exited_qualifiedtobuy", - "deals_26a_property_hs_date_exited_qualifiedtobuy_ab1", - "deals_26a_property_hs_date_exited_qualifiedtobuy_ab2", - "deals_26a_property_hs_date_exited_qualifiedtobuy_ab3", - "deals_298_property_hs_lastmodifieddate", - "deals_298_property_hs_lastmodifieddate_ab1", - "deals_298_property_hs_lastmodifieddate_ab2", - "deals_298_property_hs_lastmodifieddate_ab3", - "deals_2b5_property_hs_date_exited_9567448", - "deals_2b5_property_hs_date_exited_9567448_ab1", - "deals_2b5_property_hs_date_exited_9567448_ab2", - "deals_2b5_property_hs_date_exited_9567448_ab3", - "deals_2c9_property_hs_latest_meeting_activity", - "deals_2c9_property_hs_latest_meeting_activity_ab1", - "deals_2c9_property_hs_latest_meeting_activity_ab2", - "deals_2c9_property_hs_latest_meeting_activity_ab3", - "deals_2de_property_hs_time_in_presentationscheduled", - "deals_2de_property_hs_time_in_presentationscheduled_ab1", - "deals_2de_property_hs_time_in_presentationscheduled_ab2", - "deals_2de_property_hs_time_in_presentationscheduled_ab3", - "deals_2ea_property_hs_time_in_closedwon", - "deals_2ea_property_hs_time_in_closedwon_ab1", - "deals_2ea_property_hs_time_in_closedwon_ab2", - "deals_2ea_property_hs_time_in_closedwon_ab3", - "deals_326_property_notes_last_updated", - "deals_326_property_notes_last_updated_ab1", - "deals_326_property_notes_last_updated_ab2", - "deals_326_property_notes_last_updated_ab3", - "deals_33f_property_hs_projected_amount", - "deals_33f_property_hs_projected_amount_ab1", - "deals_33f_property_hs_projected_amount_ab2", - "deals_33f_property_hs_projected_amount_ab3", - "deals_348_property_amount", - "deals_348_property_amount_ab1", - "deals_348_property_amount_ab2", - "deals_348_property_amount_ab3", - "deals_34e_property_hs_tcv", - "deals_34e_property_hs_tcv_ab1", - "deals_34e_property_hs_tcv_ab2", - "deals_34e_property_hs_tcv_ab3", - "deals_3ce_property_hs_time_in_9567449", - "deals_3ce_property_hs_time_in_9567449_ab1", - "deals_3ce_property_hs_time_in_9567449_ab2", - "deals_3ce_property_hs_time_in_9567449_ab3", - "deals_3d9_property_hs_likelihood_to_close", - "deals_3d9_property_hs_likelihood_to_close_ab1", - "deals_3d9_property_hs_likelihood_to_close_ab2", - "deals_3d9_property_hs_likelihood_to_close_ab3", - "deals_40e_property_hs_closed_amount_in_home_currency", - "deals_40e_property_hs_closed_amount_in_home_currency_ab1", - "deals_40e_property_hs_closed_amount_in_home_currency_ab2", - "deals_40e_property_hs_closed_amount_in_home_currency_ab3", - "deals_41d_property_dealtype", - "deals_41d_property_dealtype_ab1", - "deals_41d_property_dealtype_ab2", - "deals_41d_property_dealtype_ab3", - "deals_43c_property_hs_line_item_global_term_hs_recurring_billing_period", - "deals_43c_property_hs_line_item_global_term_hs_recurring_billing_period_ab1", - "deals_43c_property_hs_line_item_global_term_hs_recurring_billing_period_ab2", - "deals_43c_property_hs_line_item_global_term_hs_recurring_billing_period_ab3", - "deals_477_property_closed_won_reason", - "deals_477_property_closed_won_reason_ab1", - "deals_477_property_closed_won_reason_ab2", - "deals_477_property_closed_won_reason_ab3", - "deals_4f5_properties_versions", - "deals_4f5_properties_versions_ab1", - "deals_4f5_properties_versions_ab2", - "deals_4f5_properties_versions_ab3", - "deals_4f5_property_closed_lost_reason", - "deals_4f5_property_closed_lost_reason_ab1", - "deals_4f5_property_closed_lost_reason_ab2", - "deals_4f5_property_closed_lost_reason_ab3", - "deals_52d_property_hs_is_closed", - "deals_52d_property_hs_is_closed_ab1", - "deals_52d_property_hs_is_closed_ab2", - "deals_52d_property_hs_is_closed_ab3", - "deals_53d_property_hs_all_team_ids", - "deals_53d_property_hs_all_team_ids_ab1", - "deals_53d_property_hs_all_team_ids_ab2", - "deals_53d_property_hs_all_team_ids_ab3", - "deals_555_property_hs_time_in_decisionmakerboughtin", - "deals_555_property_hs_time_in_decisionmakerboughtin_ab1", - "deals_555_property_hs_time_in_decisionmakerboughtin_ab2", - "deals_555_property_hs_time_in_decisionmakerboughtin_ab3", - "deals_569_property_hs_manual_forecast_category", - "deals_569_property_hs_manual_forecast_category_ab1", - "deals_569_property_hs_manual_forecast_category_ab2", - "deals_569_property_hs_manual_forecast_category_ab3", - "deals_591_property_hs_analytics_source_data_2", - "deals_591_property_hs_analytics_source_data_2_ab1", - "deals_591_property_hs_analytics_source_data_2_ab2", - "deals_591_property_hs_analytics_source_data_2_ab3", - "deals_59d_property_hs_line_item_global_term_hs_recurring_billing_start_date", - "deals_59d_property_hs_line_item_global_term_hs_recurring_billing_start_date_ab1", - "deals_59d_property_hs_line_item_global_term_hs_recurring_billing_start_date_ab2", - "deals_59d_property_hs_line_item_global_term_hs_recurring_billing_start_date_ab3", - "deals_5f7_property_hs_next_step", - "deals_5f7_property_hs_next_step_ab1", - "deals_5f7_property_hs_next_step_ab2", - "deals_5f7_property_hs_next_step_ab3", - "deals_60f_property_hs_date_exited_contractsent", - "deals_60f_property_hs_date_exited_contractsent_ab1", - "deals_60f_property_hs_date_exited_contractsent_ab2", - "deals_60f_property_hs_date_exited_contractsent_ab3", - "deals_62b_property_amount_in_home_currency", - "deals_62b_property_amount_in_home_currency_ab1", - "deals_62b_property_amount_in_home_currency_ab2", - "deals_62b_property_amount_in_home_currency_ab3", - "deals_650_property_hs_date_entered_qualifiedtobuy", - "deals_650_property_hs_date_entered_qualifiedtobuy_ab1", - "deals_650_property_hs_date_entered_qualifiedtobuy_ab2", - "deals_650_property_hs_date_entered_qualifiedtobuy_ab3", - "deals_6be_property_engagements_last_meeting_booked_source", - "deals_6be_property_engagements_last_meeting_booked_source_ab1", - "deals_6be_property_engagements_last_meeting_booked_source_ab2", - "deals_6be_property_engagements_last_meeting_booked_source_ab3", - "deals_6fa_property_hs_date_exited_presentationscheduled", - "deals_6fa_property_hs_date_exited_presentationscheduled_ab1", - "deals_6fa_property_hs_date_exited_presentationscheduled_ab2", - "deals_6fa_property_hs_date_exited_presentationscheduled_ab3", - "deals_708_property_hs_date_entered_customclosedwonstage", - "deals_708_property_hs_date_entered_customclosedwonstage_ab1", - "deals_708_property_hs_date_entered_customclosedwonstage_ab2", - "deals_708_property_hs_date_entered_customclosedwonstage_ab3", - "deals_712_property_hs_forecast_probability", - "deals_712_property_hs_forecast_probability_ab1", - "deals_712_property_hs_forecast_probability_ab2", - "deals_712_property_hs_forecast_probability_ab3", - "deals_72e_property_num_contacted_notes", - "deals_72e_property_num_contacted_notes_ab1", - "deals_72e_property_num_contacted_notes_ab2", - "deals_72e_property_num_contacted_notes_ab3", - "deals_73d_property_hs_merged_object_ids", - "deals_73d_property_hs_merged_object_ids_ab1", - "deals_73d_property_hs_merged_object_ids_ab2", - "deals_73d_property_hs_merged_object_ids_ab3", - "deals_74e_property_hubspot_team_id", - "deals_74e_property_hubspot_team_id_ab1", - "deals_74e_property_hubspot_team_id_ab2", - "deals_74e_property_hubspot_team_id_ab3", - "deals_75e_property_hs_line_item_global_term_hs_recurring_billing_start_date_enabled", - "deals_75e_property_hs_line_item_global_term_hs_recurring_billing_start_date_enabled_ab1", - "deals_75e_property_hs_line_item_global_term_hs_recurring_billing_start_date_enabled_ab2", - "deals_75e_property_hs_line_item_global_term_hs_recurring_billing_start_date_enabled_ab3", - "deals_767_property_hs_deal_amount_calculation_preference", - "deals_767_property_hs_deal_amount_calculation_preference_ab1", - "deals_767_property_hs_deal_amount_calculation_preference_ab2", - "deals_767_property_hs_deal_amount_calculation_preference_ab3", - "deals_787_associations", - "deals_787_associations_ab1", - "deals_787_associations_ab2", - "deals_787_associations_ab3", - "deals_7ac_property_hs_date_exited_closedlost", - "deals_7ac_property_hs_date_exited_closedlost_ab1", - "deals_7ac_property_hs_date_exited_closedlost_ab2", - "deals_7ac_property_hs_date_exited_closedlost_ab3", - "deals_830_property_description", - "deals_830_property_description_ab1", - "deals_830_property_description_ab2", - "deals_830_property_description_ab3", - "deals_855_property_hs_createdate", - "deals_855_property_hs_createdate_ab1", - "deals_855_property_hs_createdate_ab2", - "deals_855_property_hs_createdate_ab3", - "deals_896_property_hs_date_entered_closedlost", - "deals_896_property_hs_date_entered_closedlost_ab1", - "deals_896_property_hs_date_entered_closedlost_ab2", - "deals_896_property_hs_date_entered_closedlost_ab3", - "deals_897_property_createdate", - "deals_897_property_createdate_ab1", - "deals_897_property_createdate_ab2", - "deals_897_property_createdate_ab3", - "deals_89d_property_hs_date_exited_closedwon", - "deals_89d_property_hs_date_exited_closedwon_ab1", - "deals_89d_property_hs_date_exited_closedwon_ab2", - "deals_89d_property_hs_date_exited_closedwon_ab3", - "deals_8ac_property_hs_closed_amount", - "deals_8ac_property_hs_closed_amount_ab1", - "deals_8ac_property_hs_closed_amount_ab2", - "deals_8ac_property_hs_closed_amount_ab3", - "deals_8b6_property_hs_time_in_appointmentscheduled", - "deals_8b6_property_hs_time_in_appointmentscheduled_ab1", - "deals_8b6_property_hs_time_in_appointmentscheduled_ab2", - "deals_8b6_property_hs_time_in_appointmentscheduled_ab3", - "deals_8ff_property_hs_mrr", - "deals_8ff_property_hs_mrr_ab1", - "deals_8ff_property_hs_mrr_ab2", - "deals_8ff_property_hs_mrr_ab3", - "deals_95e_property_hs_time_in_closedlost", - "deals_95e_property_hs_time_in_closedlost_ab1", - "deals_95e_property_hs_time_in_closedlost_ab2", - "deals_95e_property_hs_time_in_closedlost_ab3", - "deals_98e_property_engagements_last_meeting_booked_campaign", - "deals_98e_property_engagements_last_meeting_booked_campaign_ab1", - "deals_98e_property_engagements_last_meeting_booked_campaign_ab2", - "deals_98e_property_engagements_last_meeting_booked_campaign_ab3", - "deals_9a9_property_hs_date_entered_contractsent", - "deals_9a9_property_hs_date_entered_contractsent_ab1", - "deals_9a9_property_hs_date_entered_contractsent_ab2", - "deals_9a9_property_hs_date_entered_contractsent_ab3", - "deals_9b8_property_hs_line_item_global_term_hs_discount_percentage", - "deals_9b8_property_hs_line_item_global_term_hs_discount_percentage_ab1", - "deals_9b8_property_hs_line_item_global_term_hs_discount_percentage_ab2", - "deals_9b8_property_hs_line_item_global_term_hs_discount_percentage_ab3", - "deals_9c4_property_days_to_close", - "deals_9c4_property_days_to_close_ab1", - "deals_9c4_property_days_to_close_ab2", - "deals_9c4_property_days_to_close_ab3", - "deals_9cf_property_hs_created_by_user_id", - "deals_9cf_property_hs_created_by_user_id_ab1", - "deals_9cf_property_hs_created_by_user_id_ab2", - "deals_9cf_property_hs_created_by_user_id_ab3", - "deals_9e5_property_hs_predicted_amount", - "deals_9e5_property_hs_predicted_amount_ab1", - "deals_9e5_property_hs_predicted_amount_ab2", - "deals_9e5_property_hs_predicted_amount_ab3", - "deals_a61_property_hs_updated_by_user_id", - "deals_a61_property_hs_updated_by_user_id_ab1", - "deals_a61_property_hs_updated_by_user_id_ab2", - "deals_a61_property_hs_updated_by_user_id_ab3", - "deals_a72_property_hs_time_in_qualifiedtobuy", - "deals_a72_property_hs_time_in_qualifiedtobuy_ab1", - "deals_a72_property_hs_time_in_qualifiedtobuy_ab2", - "deals_a72_property_hs_time_in_qualifiedtobuy_ab3", - "deals_abe_property_hs_projected_amount_in_home_currency", - "deals_abe_property_hs_projected_amount_in_home_currency_ab1", - "deals_abe_property_hs_projected_amount_in_home_currency_ab2", - "deals_abe_property_hs_projected_amount_in_home_currency_ab3", - "deals_b3e_property_closedate", - "deals_b3e_property_closedate_ab1", - "deals_b3e_property_closedate_ab2", - "deals_b3e_property_closedate_ab3", - "deals_b50_property_hs_arr", - "deals_b50_property_hs_arr_ab1", - "deals_b50_property_hs_arr_ab2", - "deals_b50_property_hs_arr_ab3", - "deals_b60_property_hs_date_exited_appointmentscheduled", - "deals_b60_property_hs_date_exited_appointmentscheduled_ab1", - "deals_b60_property_hs_date_exited_appointmentscheduled_ab2", - "deals_b60_property_hs_date_exited_appointmentscheduled_ab3", - "deals_b88_property_hs_date_exited_9567449", - "deals_b88_property_hs_date_exited_9567449_ab1", - "deals_b88_property_hs_date_exited_9567449_ab2", - "deals_b88_property_hs_date_exited_9567449_ab3", - "deals_b9d_property_hs_date_exited_decisionmakerboughtin", - "deals_b9d_property_hs_date_exited_decisionmakerboughtin_ab1", - "deals_b9d_property_hs_date_exited_decisionmakerboughtin_ab2", - "deals_b9d_property_hs_date_exited_decisionmakerboughtin_ab3", - "deals_ba8_property_hs_object_id", - "deals_ba8_property_hs_object_id_ab1", - "deals_ba8_property_hs_object_id_ab2", - "deals_ba8_property_hs_object_id_ab3", - "deals_bbd_property_hs_date_entered_9567448", - "deals_bbd_property_hs_date_entered_9567448_ab1", - "deals_bbd_property_hs_date_entered_9567448_ab2", - "deals_bbd_property_hs_date_entered_9567448_ab3", - "deals_be6_property_num_notes", - "deals_be6_property_num_notes_ab1", - "deals_be6_property_num_notes_ab2", - "deals_be6_property_num_notes_ab3", - "deals_c0d_property_engagements_last_meeting_booked", - "deals_c0d_property_engagements_last_meeting_booked_ab1", - "deals_c0d_property_engagements_last_meeting_booked_ab2", - "deals_c0d_property_engagements_last_meeting_booked_ab3", - "deals_c6b_property_dealstage", - "deals_c6b_property_dealstage_ab1", - "deals_c6b_property_dealstage_ab2", - "deals_c6b_property_dealstage_ab3", - "deals_c6d_property_hs_time_in_customclosedwonstage", - "deals_c6d_property_hs_time_in_customclosedwonstage_ab1", - "deals_c6d_property_hs_time_in_customclosedwonstage_ab2", - "deals_c6d_property_hs_time_in_customclosedwonstage_ab3", - "deals_ca0_property_hs_all_accessible_team_ids", - "deals_ca0_property_hs_all_accessible_team_ids_ab1", - "deals_ca0_property_hs_all_accessible_team_ids_ab2", - "deals_ca0_property_hs_all_accessible_team_ids_ab3", - "deals_d34_property_hs_date_exited_customclosedwonstage", - "deals_d34_property_hs_date_exited_customclosedwonstage_ab1", - "deals_d34_property_hs_date_exited_customclosedwonstage_ab2", - "deals_d34_property_hs_date_exited_customclosedwonstage_ab3", - "deals_d56_property_hs_date_entered_decisionmakerboughtin", - "deals_d56_property_hs_date_entered_decisionmakerboughtin_ab1", - "deals_d56_property_hs_date_entered_decisionmakerboughtin_ab2", - "deals_d56_property_hs_date_entered_decisionmakerboughtin_ab3", - "deals_d63_property_hs_date_entered_appointmentscheduled", - "deals_d63_property_hs_date_entered_appointmentscheduled_ab1", - "deals_d63_property_hs_date_entered_appointmentscheduled_ab2", - "deals_d63_property_hs_date_entered_appointmentscheduled_ab3", - "deals_d6c_property_hs_acv", - "deals_d6c_property_hs_acv_ab1", - "deals_d6c_property_hs_acv_ab2", - "deals_d6c_property_hs_acv_ab3", - "deals_d8b_property_notes_last_contacted", - "deals_d8b_property_notes_last_contacted_ab1", - "deals_d8b_property_notes_last_contacted_ab2", - "deals_d8b_property_notes_last_contacted_ab3", - "deals_dc7_property_hs_deal_stage_probability", - "deals_dc7_property_hs_deal_stage_probability_ab1", - "deals_dc7_property_hs_deal_stage_probability_ab2", - "deals_dc7_property_hs_deal_stage_probability_ab3", - "deals_e3c_property_hs_date_entered_presentationscheduled", - "deals_e3c_property_hs_date_entered_presentationscheduled_ab1", - "deals_e3c_property_hs_date_entered_presentationscheduled_ab2", - "deals_e3c_property_hs_date_entered_presentationscheduled_ab3", - "deals_e4a_property_pipeline", - "deals_e4a_property_pipeline_ab1", - "deals_e4a_property_pipeline_ab2", - "deals_e4a_property_pipeline_ab3", - "deals_e8c_property_dealname", - "deals_e8c_property_dealname_ab1", - "deals_e8c_property_dealname_ab2", - "deals_e8c_property_dealname_ab3", - "deals_e9e_property_hubspot_owner_assigneddate", - "deals_e9e_property_hubspot_owner_assigneddate_ab1", - "deals_e9e_property_hubspot_owner_assigneddate_ab2", - "deals_e9e_property_hubspot_owner_assigneddate_ab3", - "deals_ebb_property_hs_analytics_source", - "deals_ebb_property_hs_analytics_source_ab1", - "deals_ebb_property_hs_analytics_source_ab2", - "deals_ebb_property_hs_analytics_source_ab3", - "deals_f37_property_hs_line_item_global_term_recurringbillingfrequency", - "deals_f37_property_hs_line_item_global_term_recurringbillingfrequency_ab1", - "deals_f37_property_hs_line_item_global_term_recurringbillingfrequency_ab2", - "deals_f37_property_hs_line_item_global_term_recurringbillingfrequency_ab3", - "deals_f3d_property_hs_forecast_amount", - "deals_f3d_property_hs_forecast_amount_ab1", - "deals_f3d_property_hs_forecast_amount_ab2", - "deals_f3d_property_hs_forecast_amount_ab3", - "deals_fbd_property_hs_line_item_global_term_hs_recurring_billing_period_enabled", - "deals_fbd_property_hs_line_item_global_term_hs_recurring_billing_period_enabled_ab1", - "deals_fbd_property_hs_line_item_global_term_hs_recurring_billing_period_enabled_ab2", - "deals_fbd_property_hs_line_item_global_term_hs_recurring_billing_period_enabled_ab3", - "deals_fc5_property_hs_line_item_global_term_recurringbillingfrequency_enabled", - "deals_fc5_property_hs_line_item_global_term_recurringbillingfrequency_enabled_ab1", - "deals_fc5_property_hs_line_item_global_term_recurringbillingfrequency_enabled_ab2", - "deals_fc5_property_hs_line_item_global_term_recurringbillingfrequency_enabled_ab3", - "deals_fcc_property_hubspot_owner_id", - "deals_fcc_property_hubspot_owner_id_ab1", - "deals_fcc_property_hubspot_owner_id_ab2", - "deals_fcc_property_hubspot_owner_id_ab3", - "deals_ffc_property_hs_line_item_global_term_hs_discount_percentage_enabled", - "deals_ffc_property_hs_line_item_global_term_hs_discount_percentage_enabled_ab1", - "deals_ffc_property_hs_line_item_global_term_hs_discount_percentage_enabled_ab2", - "deals_ffc_property_hs_line_item_global_term_hs_discount_percentage_enabled_ab3", - "deals_properties_067_hs_line_item_global_term_recurringbillingfrequency", - "deals_properties_067_hs_line_item_global_term_recurringbillingfrequency_ab1", - "deals_properties_067_hs_line_item_global_term_recurringbillingfrequency_ab2", - "deals_properties_067_hs_line_item_global_term_recurringbillingfrequency_ab3", - "deals_properties_0d7_hs_tcv", - "deals_properties_0d7_hs_tcv_ab1", - "deals_properties_0d7_hs_tcv_ab2", - "deals_properties_0d7_hs_tcv_ab3", - "deals_properties_121_amount", - "deals_properties_121_amount_ab1", - "deals_properties_121_amount_ab2", - "deals_properties_121_amount_ab3", - "deals_properties_134_hs_date_entered_presentationscheduled", - "deals_properties_134_hs_date_entered_presentationscheduled_ab1", - "deals_properties_134_hs_date_entered_presentationscheduled_ab2", - "deals_properties_134_hs_date_entered_presentationscheduled_ab3", - "deals_properties_1c0_hs_date_entered_customclosedwonstage", - "deals_properties_1c0_hs_date_entered_customclosedwonstage_ab1", - "deals_properties_1c0_hs_date_entered_customclosedwonstage_ab2", - "deals_properties_1c0_hs_date_entered_customclosedwonstage_ab3", - "deals_properties_1c6_hs_line_item_global_term_hs_recurring_billing_start_date_enabled", - "deals_properties_1c6_hs_line_item_global_term_hs_recurring_billing_start_date_enabled_ab1", - "deals_properties_1c6_hs_line_item_global_term_hs_recurring_billing_start_date_enabled_ab2", - "deals_properties_1c6_hs_line_item_global_term_hs_recurring_billing_start_date_enabled_ab3", - "deals_properties_1e1_hs_date_entered_qualifiedtobuy", - "deals_properties_1e1_hs_date_entered_qualifiedtobuy_ab1", - "deals_properties_1e1_hs_date_entered_qualifiedtobuy_ab2", - "deals_properties_1e1_hs_date_entered_qualifiedtobuy_ab3", - "deals_properties_247_hs_date_exited_9567449", - "deals_properties_247_hs_date_exited_9567449_ab1", - "deals_properties_247_hs_date_exited_9567449_ab2", - "deals_properties_247_hs_date_exited_9567449_ab3", - "deals_properties_281_hs_date_entered_appointmentscheduled", - "deals_properties_281_hs_date_entered_appointmentscheduled_ab1", - "deals_properties_281_hs_date_entered_appointmentscheduled_ab2", - "deals_properties_281_hs_date_entered_appointmentscheduled_ab3", - "deals_properties_2b3_hs_time_in_presentationscheduled", - "deals_properties_2b3_hs_time_in_presentationscheduled_ab1", - "deals_properties_2b3_hs_time_in_presentationscheduled_ab2", - "deals_properties_2b3_hs_time_in_presentationscheduled_ab3", - "deals_properties_315_hs_line_item_global_term_hs_discount_percentage_enabled", - "deals_properties_315_hs_line_item_global_term_hs_discount_percentage_enabled_ab1", - "deals_properties_315_hs_line_item_global_term_hs_discount_percentage_enabled_ab2", - "deals_properties_315_hs_line_item_global_term_hs_discount_percentage_enabled_ab3", - "deals_properties_328_num_associated_contacts", - "deals_properties_328_num_associated_contacts_ab1", - "deals_properties_328_num_associated_contacts_ab2", - "deals_properties_328_num_associated_contacts_ab3", - "deals_properties_38b_hubspot_owner_assigneddate", - "deals_properties_38b_hubspot_owner_assigneddate_ab1", - "deals_properties_38b_hubspot_owner_assigneddate_ab2", - "deals_properties_38b_hubspot_owner_assigneddate_ab3", - "deals_properties_395_hs_arr", - "deals_properties_395_hs_arr_ab1", - "deals_properties_395_hs_arr_ab2", - "deals_properties_395_hs_arr_ab3", - "deals_properties_3b2_hs_time_in_9567449", - "deals_properties_3b2_hs_time_in_9567449_ab1", - "deals_properties_3b2_hs_time_in_9567449_ab2", - "deals_properties_3b2_hs_time_in_9567449_ab3", - "deals_properties_3c9_hs_next_step", - "deals_properties_3c9_hs_next_step_ab1", - "deals_properties_3c9_hs_next_step_ab2", - "deals_properties_3c9_hs_next_step_ab3", - "deals_properties_3e3_hs_date_exited_closedwon", - "deals_properties_3e3_hs_date_exited_closedwon_ab1", - "deals_properties_3e3_hs_date_exited_closedwon_ab2", - "deals_properties_3e3_hs_date_exited_closedwon_ab3", - "deals_properties_3ec_days_to_close", - "deals_properties_3ec_days_to_close_ab1", - "deals_properties_3ec_days_to_close_ab2", - "deals_properties_3ec_days_to_close_ab3", - "deals_properties_3f4_hs_date_entered_contractsent", - "deals_properties_3f4_hs_date_entered_contractsent_ab1", - "deals_properties_3f4_hs_date_entered_contractsent_ab2", - "deals_properties_3f4_hs_date_entered_contractsent_ab3", - "deals_properties_3fe_hs_date_exited_appointmentscheduled", - "deals_properties_3fe_hs_date_exited_appointmentscheduled_ab1", - "deals_properties_3fe_hs_date_exited_appointmentscheduled_ab2", - "deals_properties_3fe_hs_date_exited_appointmentscheduled_ab3", - "deals_properties_417_hs_all_accessible_team_ids", - "deals_properties_417_hs_all_accessible_team_ids_ab1", - "deals_properties_417_hs_all_accessible_team_ids_ab2", - "deals_properties_417_hs_all_accessible_team_ids_ab3", - "deals_properties_43e_dealstage", - "deals_properties_43e_dealstage_ab1", - "deals_properties_43e_dealstage_ab2", - "deals_properties_43e_dealstage_ab3", - "deals_properties_478_notes_last_updated", - "deals_properties_478_notes_last_updated_ab1", - "deals_properties_478_notes_last_updated_ab2", - "deals_properties_478_notes_last_updated_ab3", - "deals_properties_49b_hs_forecast_probability", - "deals_properties_49b_hs_forecast_probability_ab1", - "deals_properties_49b_hs_forecast_probability_ab2", - "deals_properties_49b_hs_forecast_probability_ab3", - "deals_properties_4c2_hs_time_in_decisionmakerboughtin", - "deals_properties_4c2_hs_time_in_decisionmakerboughtin_ab1", - "deals_properties_4c2_hs_time_in_decisionmakerboughtin_ab2", - "deals_properties_4c2_hs_time_in_decisionmakerboughtin_ab3", - "deals_properties_500_hs_date_entered_closedlost", - "deals_properties_500_hs_date_entered_closedlost_ab1", - "deals_properties_500_hs_date_entered_closedlost_ab2", - "deals_properties_500_hs_date_entered_closedlost_ab3", - "deals_properties_53c_hs_line_item_global_term_hs_recurring_billing_period", - "deals_properties_53c_hs_line_item_global_term_hs_recurring_billing_period_ab1", - "deals_properties_53c_hs_line_item_global_term_hs_recurring_billing_period_ab2", - "deals_properties_53c_hs_line_item_global_term_hs_recurring_billing_period_ab3", - "deals_properties_53e_hs_deal_amount_calculation_preference", - "deals_properties_53e_hs_deal_amount_calculation_preference_ab1", - "deals_properties_53e_hs_deal_amount_calculation_preference_ab2", - "deals_properties_53e_hs_deal_amount_calculation_preference_ab3", - "deals_properties_540_hs_merged_object_ids", - "deals_properties_540_hs_merged_object_ids_ab1", - "deals_properties_540_hs_merged_object_ids_ab2", - "deals_properties_540_hs_merged_object_ids_ab3", - "deals_properties_58a_num_notes", - "deals_properties_58a_num_notes_ab1", - "deals_properties_58a_num_notes_ab2", - "deals_properties_58a_num_notes_ab3", - "deals_properties_5ad_hs_likelihood_to_close", - "deals_properties_5ad_hs_likelihood_to_close_ab1", - "deals_properties_5ad_hs_likelihood_to_close_ab2", - "deals_properties_5ad_hs_likelihood_to_close_ab3", - "deals_properties_5c1_hs_acv", - "deals_properties_5c1_hs_acv_ab1", - "deals_properties_5c1_hs_acv_ab2", - "deals_properties_5c1_hs_acv_ab3", - "deals_properties_5e3_hubspot_team_id", - "deals_properties_5e3_hubspot_team_id_ab1", - "deals_properties_5e3_hubspot_team_id_ab2", - "deals_properties_5e3_hubspot_team_id_ab3", - "deals_properties_5fb_hs_analytics_source", - "deals_properties_5fb_hs_analytics_source_ab1", - "deals_properties_5fb_hs_analytics_source_ab2", - "deals_properties_5fb_hs_analytics_source_ab3", - "deals_properties_610_hs_projected_amount", - "deals_properties_610_hs_projected_amount_ab1", - "deals_properties_610_hs_projected_amount_ab2", - "deals_properties_610_hs_projected_amount_ab3", - "deals_properties_657_pipeline", - "deals_properties_657_pipeline_ab1", - "deals_properties_657_pipeline_ab2", - "deals_properties_657_pipeline_ab3", - "deals_properties_66c_hs_time_in_closedwon", - "deals_properties_66c_hs_time_in_closedwon_ab1", - "deals_properties_66c_hs_time_in_closedwon_ab2", - "deals_properties_66c_hs_time_in_closedwon_ab3", - "deals_properties_6d2_hs_mrr", - "deals_properties_6d2_hs_mrr_ab1", - "deals_properties_6d2_hs_mrr_ab2", - "deals_properties_6d2_hs_mrr_ab3", - "deals_properties_6e6_engagements_last_meeting_booked_medium", - "deals_properties_6e6_engagements_last_meeting_booked_medium_ab1", - "deals_properties_6e6_engagements_last_meeting_booked_medium_ab2", - "deals_properties_6e6_engagements_last_meeting_booked_medium_ab3", - "deals_properties_711_dealname", - "deals_properties_711_dealname_ab1", - "deals_properties_711_dealname_ab2", - "deals_properties_711_dealname_ab3", - "deals_properties_715_engagements_last_meeting_booked", - "deals_properties_715_engagements_last_meeting_booked_ab1", - "deals_properties_715_engagements_last_meeting_booked_ab2", - "deals_properties_715_engagements_last_meeting_booked_ab3", - "deals_properties_764_hs_is_closed", - "deals_properties_764_hs_is_closed_ab1", - "deals_properties_764_hs_is_closed_ab2", - "deals_properties_764_hs_is_closed_ab3", - "deals_properties_78e_engagements_last_meeting_booked_source", - "deals_properties_78e_engagements_last_meeting_booked_source_ab1", - "deals_properties_78e_engagements_last_meeting_booked_source_ab2", - "deals_properties_78e_engagements_last_meeting_booked_source_ab3", - "deals_properties_7df_hs_date_exited_decisionmakerboughtin", - "deals_properties_7df_hs_date_exited_decisionmakerboughtin_ab1", - "deals_properties_7df_hs_date_exited_decisionmakerboughtin_ab2", - "deals_properties_7df_hs_date_exited_decisionmakerboughtin_ab3", - "deals_properties_7e0_hs_analytics_source_data_2", - "deals_properties_7e0_hs_analytics_source_data_2_ab1", - "deals_properties_7e0_hs_analytics_source_data_2_ab2", - "deals_properties_7e0_hs_analytics_source_data_2_ab3", - "deals_properties_851_hs_date_entered_9567448", - "deals_properties_851_hs_date_entered_9567448_ab1", - "deals_properties_851_hs_date_entered_9567448_ab2", - "deals_properties_851_hs_date_entered_9567448_ab3", - "deals_properties_879_hs_date_exited_contractsent", - "deals_properties_879_hs_date_exited_contractsent_ab1", - "deals_properties_879_hs_date_exited_contractsent_ab2", - "deals_properties_879_hs_date_exited_contractsent_ab3", - "deals_properties_8b2_hs_time_in_qualifiedtobuy", - "deals_properties_8b2_hs_time_in_qualifiedtobuy_ab1", - "deals_properties_8b2_hs_time_in_qualifiedtobuy_ab2", - "deals_properties_8b2_hs_time_in_qualifiedtobuy_ab3", - "deals_properties_8cd_hs_user_ids_of_all_owners", - "deals_properties_8cd_hs_user_ids_of_all_owners_ab1", - "deals_properties_8cd_hs_user_ids_of_all_owners_ab2", - "deals_properties_8cd_hs_user_ids_of_all_owners_ab3", - "deals_properties_8da_num_contacted_notes", - "deals_properties_8da_num_contacted_notes_ab1", - "deals_properties_8da_num_contacted_notes_ab2", - "deals_properties_8da_num_contacted_notes_ab3", - "deals_properties_910_closed_lost_reason", - "deals_properties_910_closed_lost_reason_ab1", - "deals_properties_910_closed_lost_reason_ab2", - "deals_properties_910_closed_lost_reason_ab3", - "deals_properties_918_hs_manual_forecast_category", - "deals_properties_918_hs_manual_forecast_category_ab1", - "deals_properties_918_hs_manual_forecast_category_ab2", - "deals_properties_918_hs_manual_forecast_category_ab3", - "deals_properties_923_hs_sales_email_last_replied", - "deals_properties_923_hs_sales_email_last_replied_ab1", - "deals_properties_923_hs_sales_email_last_replied_ab2", - "deals_properties_923_hs_sales_email_last_replied_ab3", - "deals_properties_93a_notes_last_contacted", - "deals_properties_93a_notes_last_contacted_ab1", - "deals_properties_93a_notes_last_contacted_ab2", - "deals_properties_93a_notes_last_contacted_ab3", - "deals_properties_976_hs_date_entered_9567449", - "deals_properties_976_hs_date_entered_9567449_ab1", - "deals_properties_976_hs_date_entered_9567449_ab2", - "deals_properties_976_hs_date_entered_9567449_ab3", - "deals_properties_983_createdate", - "deals_properties_983_createdate_ab1", - "deals_properties_983_createdate_ab2", - "deals_properties_983_createdate_ab3", - "deals_properties_987_notes_next_activity_date", - "deals_properties_987_notes_next_activity_date_ab1", - "deals_properties_987_notes_next_activity_date_ab2", - "deals_properties_987_notes_next_activity_date_ab3", - "deals_properties_9ca_hs_lastmodifieddate", - "deals_properties_9ca_hs_lastmodifieddate_ab1", - "deals_properties_9ca_hs_lastmodifieddate_ab2", - "deals_properties_9ca_hs_lastmodifieddate_ab3", - "deals_properties_9d2_hs_time_in_customclosedwonstage", - "deals_properties_9d2_hs_time_in_customclosedwonstage_ab1", - "deals_properties_9d2_hs_time_in_customclosedwonstage_ab2", - "deals_properties_9d2_hs_time_in_customclosedwonstage_ab3", - "deals_properties_9d5_hs_latest_meeting_activity", - "deals_properties_9d5_hs_latest_meeting_activity_ab1", - "deals_properties_9d5_hs_latest_meeting_activity_ab2", - "deals_properties_9d5_hs_latest_meeting_activity_ab3", - "deals_properties_9fd_hs_date_exited_presentationscheduled", - "deals_properties_9fd_hs_date_exited_presentationscheduled_ab1", - "deals_properties_9fd_hs_date_exited_presentationscheduled_ab2", - "deals_properties_9fd_hs_date_exited_presentationscheduled_ab3", - "deals_properties_a14_hs_analytics_source_data_1", - "deals_properties_a14_hs_analytics_source_data_1_ab1", - "deals_properties_a14_hs_analytics_source_data_1_ab2", - "deals_properties_a14_hs_analytics_source_data_1_ab3", - "deals_properties_a89_hs_line_item_global_term_hs_recurring_billing_period_enabled", - "deals_properties_a89_hs_line_item_global_term_hs_recurring_billing_period_enabled_ab1", - "deals_properties_a89_hs_line_item_global_term_hs_recurring_billing_period_enabled_ab2", - "deals_properties_a89_hs_line_item_global_term_hs_recurring_billing_period_enabled_ab3", - "deals_properties_ab1_hs_line_item_global_term_hs_discount_percentage", - "deals_properties_ab1_hs_line_item_global_term_hs_discount_percentage_ab1", - "deals_properties_ab1_hs_line_item_global_term_hs_discount_percentage_ab2", - "deals_properties_ab1_hs_line_item_global_term_hs_discount_percentage_ab3", - "deals_properties_ad9_hs_date_exited_9567448", - "deals_properties_ad9_hs_date_exited_9567448_ab1", - "deals_properties_ad9_hs_date_exited_9567448_ab2", - "deals_properties_ad9_hs_date_exited_9567448_ab3", - "deals_properties_b0b_hubspot_owner_id", - "deals_properties_b0b_hubspot_owner_id_ab1", - "deals_properties_b0b_hubspot_owner_id_ab2", - "deals_properties_b0b_hubspot_owner_id_ab3", - "deals_properties_b2f_engagements_last_meeting_booked_campaign", - "deals_properties_b2f_engagements_last_meeting_booked_campaign_ab1", - "deals_properties_b2f_engagements_last_meeting_booked_campaign_ab2", - "deals_properties_b2f_engagements_last_meeting_booked_campaign_ab3", - "deals_properties_b7d_hs_all_owner_ids", - "deals_properties_b7d_hs_all_owner_ids_ab1", - "deals_properties_b7d_hs_all_owner_ids_ab2", - "deals_properties_b7d_hs_all_owner_ids_ab3", - "deals_properties_b8c_hs_time_in_closedlost", - "deals_properties_b8c_hs_time_in_closedlost_ab1", - "deals_properties_b8c_hs_time_in_closedlost_ab2", - "deals_properties_b8c_hs_time_in_closedlost_ab3", - "deals_properties_ba5_amount_in_home_currency", - "deals_properties_ba5_amount_in_home_currency_ab1", - "deals_properties_ba5_amount_in_home_currency_ab2", - "deals_properties_ba5_amount_in_home_currency_ab3", - "deals_properties_bb8_hs_predicted_amount_in_home_currency", - "deals_properties_bb8_hs_predicted_amount_in_home_currency_ab1", - "deals_properties_bb8_hs_predicted_amount_in_home_currency_ab2", - "deals_properties_bb8_hs_predicted_amount_in_home_currency_ab3", - "deals_properties_c00_hs_predicted_amount", - "deals_properties_c00_hs_predicted_amount_ab1", - "deals_properties_c00_hs_predicted_amount_ab2", - "deals_properties_c00_hs_predicted_amount_ab3", - "deals_properties_c0c_description", - "deals_properties_c0c_description_ab1", - "deals_properties_c0c_description_ab2", - "deals_properties_c0c_description_ab3", - "deals_properties_c18_hs_created_by_user_id", - "deals_properties_c18_hs_created_by_user_id_ab1", - "deals_properties_c18_hs_created_by_user_id_ab2", - "deals_properties_c18_hs_created_by_user_id_ab3", - "deals_properties_c8e_closed_won_reason", - "deals_properties_c8e_closed_won_reason_ab1", - "deals_properties_c8e_closed_won_reason_ab2", - "deals_properties_c8e_closed_won_reason_ab3", - "deals_properties_ca9_hs_updated_by_user_id", - "deals_properties_ca9_hs_updated_by_user_id_ab1", - "deals_properties_ca9_hs_updated_by_user_id_ab2", - "deals_properties_ca9_hs_updated_by_user_id_ab3", - "deals_properties_cc2_hs_time_in_contractsent", - "deals_properties_cc2_hs_time_in_contractsent_ab1", - "deals_properties_cc2_hs_time_in_contractsent_ab2", - "deals_properties_cc2_hs_time_in_contractsent_ab3", - "deals_properties_cc3_hs_date_exited_closedlost", - "deals_properties_cc3_hs_date_exited_closedlost_ab1", - "deals_properties_cc3_hs_date_exited_closedlost_ab2", - "deals_properties_cc3_hs_date_exited_closedlost_ab3", - "deals_properties_cdb_hs_time_in_9567448", - "deals_properties_cdb_hs_time_in_9567448_ab1", - "deals_properties_cdb_hs_time_in_9567448_ab2", - "deals_properties_cdb_hs_time_in_9567448_ab3", - "deals_properties_ce2_hs_all_team_ids", - "deals_properties_ce2_hs_all_team_ids_ab1", - "deals_properties_ce2_hs_all_team_ids_ab2", - "deals_properties_ce2_hs_all_team_ids_ab3", - "deals_properties_cf9_hs_time_in_appointmentscheduled", - "deals_properties_cf9_hs_time_in_appointmentscheduled_ab1", - "deals_properties_cf9_hs_time_in_appointmentscheduled_ab2", - "deals_properties_cf9_hs_time_in_appointmentscheduled_ab3", - "deals_properties_d85_hs_date_exited_qualifiedtobuy", - "deals_properties_d85_hs_date_exited_qualifiedtobuy_ab1", - "deals_properties_d85_hs_date_exited_qualifiedtobuy_ab2", - "deals_properties_d85_hs_date_exited_qualifiedtobuy_ab3", - "deals_properties_db7_hs_line_item_global_term_hs_recurring_billing_start_date", - "deals_properties_db7_hs_line_item_global_term_hs_recurring_billing_start_date_ab1", - "deals_properties_db7_hs_line_item_global_term_hs_recurring_billing_start_date_ab2", - "deals_properties_db7_hs_line_item_global_term_hs_recurring_billing_start_date_ab3", - "deals_properties_db9_hs_deal_stage_probability", - "deals_properties_db9_hs_deal_stage_probability_ab1", - "deals_properties_db9_hs_deal_stage_probability_ab2", - "deals_properties_db9_hs_deal_stage_probability_ab3", - "deals_properties_de9_hs_date_entered_closedwon", - "deals_properties_de9_hs_date_entered_closedwon_ab1", - "deals_properties_de9_hs_date_entered_closedwon_ab2", - "deals_properties_de9_hs_date_entered_closedwon_ab3", - "deals_properties_df7_hs_forecast_amount", - "deals_properties_df7_hs_forecast_amount_ab1", - "deals_properties_df7_hs_forecast_amount_ab2", - "deals_properties_df7_hs_forecast_amount_ab3", - "deals_properties_e4a_hs_line_item_global_term_recurringbillingfrequency_enabled", - "deals_properties_e4a_hs_line_item_global_term_recurringbillingfrequency_enabled_ab1", - "deals_properties_e4a_hs_line_item_global_term_recurringbillingfrequency_enabled_ab2", - "deals_properties_e4a_hs_line_item_global_term_recurringbillingfrequency_enabled_ab3", - "deals_properties_e6e_closedate", - "deals_properties_e6e_closedate_ab1", - "deals_properties_e6e_closedate_ab2", - "deals_properties_e6e_closedate_ab3", - "deals_properties_e99_hs_object_id", - "deals_properties_e99_hs_object_id_ab1", - "deals_properties_e99_hs_object_id_ab2", - "deals_properties_e99_hs_object_id_ab3", - "deals_properties_edd_hs_date_exited_customclosedwonstage", - "deals_properties_edd_hs_date_exited_customclosedwonstage_ab1", - "deals_properties_edd_hs_date_exited_customclosedwonstage_ab2", - "deals_properties_edd_hs_date_exited_customclosedwonstage_ab3", - "deals_properties_f0b_hs_date_entered_decisionmakerboughtin", - "deals_properties_f0b_hs_date_entered_decisionmakerboughtin_ab1", - "deals_properties_f0b_hs_date_entered_decisionmakerboughtin_ab2", - "deals_properties_f0b_hs_date_entered_decisionmakerboughtin_ab3", - "deals_properties_f0d_hs_closed_amount_in_home_currency", - "deals_properties_f0d_hs_closed_amount_in_home_currency_ab1", - "deals_properties_f0d_hs_closed_amount_in_home_currency_ab2", - "deals_properties_f0d_hs_closed_amount_in_home_currency_ab3", - "deals_properties_f29_hs_closed_amount", - "deals_properties_f29_hs_closed_amount_ab1", - "deals_properties_f29_hs_closed_amount_ab2", - "deals_properties_f29_hs_closed_amount_ab3", - "deals_properties_f57_hs_projected_amount_in_home_currency", - "deals_properties_f57_hs_projected_amount_in_home_currency_ab1", - "deals_properties_f57_hs_projected_amount_in_home_currency_ab2", - "deals_properties_f57_hs_projected_amount_in_home_currency_ab3", - "deals_properties_f61_hs_createdate", - "deals_properties_f61_hs_createdate_ab1", - "deals_properties_f61_hs_createdate_ab2", - "deals_properties_f61_hs_createdate_ab3", - "deals_properties_fb8_dealtype", - "deals_properties_fb8_dealtype_ab1", - "deals_properties_fb8_dealtype_ab2", - "deals_properties_fb8_dealtype_ab3", - "email_events_04b_location", - "email_events_04b_location_ab1", - "email_events_04b_location_ab2", - "email_events_04b_location_ab3", - "email_events_4bd_browser", - "email_events_4bd_browser_ab1", - "email_events_4bd_browser_ab2", - "email_events_4bd_browser_ab3", - "email_events_df5_sentBy", - "email_events_df5_sentBy_ab1", - "email_events_df5_sentBy_ab2", - "email_events_df5_sentBy_ab3", - "engagements_1c3_associations", - "engagements_1c3_associations_ab1", - "engagements_1c3_associations_ab2", - "engagements_1c3_associations_ab3", - "engagements_3c8_attachments", - "engagements_3c8_attachments_ab1", - "engagements_3c8_attachments_ab2", - "engagements_3c8_attachments_ab3", - "engagements_4ef_metadata", - "engagements_4ef_metadata_ab1", - "engagements_4ef_metadata_ab2", - "engagements_4ef_metadata_ab3", - "engagements_760_engagement", - "engagements_760_engagement_ab1", - "engagements_760_engagement_ab2", - "engagements_760_engagement_ab3", - "engagements_metadata_075_to", - "engagements_metadata_075_to_ab1", - "engagements_metadata_075_to_ab2", - "engagements_metadata_075_to_ab3", - "engagements_metadata_444_from", - "engagements_metadata_444_from_ab1", - "engagements_metadata_444_from_ab2", - "engagements_metadata_444_from_ab3", - "engagements_metadata_9a2_cc", - "engagements_metadata_9a2_cc_ab1", - "engagements_metadata_9a2_cc_ab2", - "engagements_metadata_9a2_cc_ab3", - "engagements_metadata_a27_bcc", - "engagements_metadata_a27_bcc_ab1", - "engagements_metadata_a27_bcc_ab2", - "engagements_metadata_a27_bcc_ab3", - "forms_aad_metaData", - "forms_aad_metaData_ab1", - "forms_aad_metaData_ab2", - "forms_aad_metaData_ab3", - "forms_beb_formFieldGroups", - "forms_beb_formFieldGroups_ab1", - "forms_beb_formFieldGroups_ab2", - "forms_beb_formFieldGroups_ab3", - "forms_formFieldGroups_58f_fields", - "forms_formFieldGroups_58f_fields_ab1", - "forms_formFieldGroups_58f_fields_ab2", - "forms_formFieldGroups_58f_fields_ab3", - "forms_formFieldGroups_77e_richText", - "forms_formFieldGroups_77e_richText_ab1", - "forms_formFieldGroups_77e_richText_ab2", - "forms_formFieldGroups_77e_richText_ab3", - "forms_formFieldGroups_fields_273_validation", - "forms_formFieldGroups_fields_273_validation_ab1", - "forms_formFieldGroups_fields_273_validation_ab2", - "forms_formFieldGroups_fields_273_validation_ab3", - "forms_formFieldGroups_fields_642_options", - "forms_formFieldGroups_fields_642_options_ab1", - "forms_formFieldGroups_fields_642_options_ab2", - "forms_formFieldGroups_fields_642_options_ab3", - "owners_1d3_remoteList", - "owners_1d3_remoteList_ab1", - "owners_1d3_remoteList_ab2", - "owners_1d3_remoteList_ab3", - "subscription_changes_88e_changes", - "subscription_changes_88e_changes_ab1", - "subscription_changes_88e_changes_ab2", - "subscription_changes_88e_changes_ab3", - "subscription_changes_changes_047_causedByEvent", - "subscription_changes_changes_047_causedByEvent_ab1", - "subscription_changes_changes_047_causedByEvent_ab2", - "subscription_changes_changes_047_causedByEvent_ab3", - "workflows_d02_contactListIds", - "workflows_d02_contactListIds_ab1", - "workflows_d02_contactListIds_ab2", - "workflows_d02_contactListIds_ab3" - ] -} diff --git a/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog_expected_nested_postgres.json b/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog_expected_nested_postgres.json deleted file mode 100644 index 9e2f019b0346ea..00000000000000 --- a/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog_expected_nested_postgres.json +++ /dev/null @@ -1,4244 +0,0 @@ -{ - "tables": [ - "campaigns_cd2_counters", - "campaigns_cd2_counters_ab1", - "campaigns_cd2_counters_ab2", - "campaigns_cd2_counters_ab3", - "companies_002_property_hs___ue_25a3a52c_ab1", - "companies_002_property_hs___ue_25a3a52c_ab2", - "companies_002_property_hs___ue_25a3a52c_ab3", - "companies_002_property_hs_an__alue_25a3a52c", - "companies_047_property_rec__deal_amount_ab1", - "companies_047_property_rec__deal_amount_ab2", - "companies_047_property_rec__deal_amount_ab3", - "companies_047_property_recent_deal_amount", - "companies_071_property_hs___ast_replied_ab1", - "companies_071_property_hs___ast_replied_ab2", - "companies_071_property_hs___ast_replied_ab3", - "companies_071_property_hs_sa___last_replied", - "companies_09c_property_hub__ssigneddate_ab1", - "companies_09c_property_hub__ssigneddate_ab2", - "companies_09c_property_hub__ssigneddate_ab3", - "companies_09c_property_hubsp___assigneddate", - "companies_09d_property_rec___close_date_ab1", - "companies_09d_property_rec___close_date_ab2", - "companies_09d_property_rec___close_date_ab3", - "companies_09d_property_recen__al_close_date", - "companies_0bf_property_twitterbio", - "companies_0bf_property_twitterbio_ab1", - "companies_0bf_property_twitterbio_ab2", - "companies_0bf_property_twitterbio_ab3", - "companies_100_property_phone", - "companies_100_property_phone_ab1", - "companies_100_property_phone_ab2", - "companies_100_property_phone_ab3", - "companies_11d_property_industry", - "companies_11d_property_industry_ab1", - "companies_11d_property_industry_ab2", - "companies_11d_property_industry_ab3", - "companies_13d_property_hs_createdate", - "companies_13d_property_hs_createdate_ab1", - "companies_13d_property_hs_createdate_ab2", - "companies_13d_property_hs_createdate_ab3", - "companies_147_property_country", - "companies_147_property_country_ab1", - "companies_147_property_country_ab2", - "companies_147_property_country_ab3", - "companies_14a_property_fir___createdate_ab1", - "companies_14a_property_fir___createdate_ab2", - "companies_14a_property_fir___createdate_ab3", - "companies_14a_property_first__ct_createdate", - "companies_154_property_num__ed_contacts_ab1", - "companies_154_property_num__ed_contacts_ab2", - "companies_154_property_num__ed_contacts_ab3", - "companies_154_property_num_a__ated_contacts", - "companies_161_property_hubspot_team_id", - "companies_161_property_hubspot_team_id_ab1", - "companies_161_property_hubspot_team_id_ab2", - "companies_161_property_hubspot_team_id_ab3", - "companies_185_property_rec__ue_66c820bf_ab1", - "companies_185_property_rec__ue_66c820bf_ab2", - "companies_185_property_rec__ue_66c820bf_ab3", - "companies_185_property_recen__alue_66c820bf", - "companies_1b3_property_linkedinbio", - "companies_1b3_property_linkedinbio_ab1", - "companies_1b3_property_linkedinbio_ab2", - "companies_1b3_property_linkedinbio_ab3", - "companies_1be_property_hs___uying_roles_ab1", - "companies_1be_property_hs___uying_roles_ab2", - "companies_1be_property_hs___uying_roles_ab3", - "companies_1be_property_hs_nu___buying_roles", - "companies_1be_property_hs_object_id", - "companies_1be_property_hs_object_id_ab1", - "companies_1be_property_hs_object_id_ab2", - "companies_1be_property_hs_object_id_ab3", - "companies_1bf_property_hs___probability_ab1", - "companies_1bf_property_hs___probability_ab2", - "companies_1bf_property_hs___probability_ab3", - "companies_1bf_property_hs_ta__t_probability", - "companies_1ef_property_hs____deal_value_ab1", - "companies_1ef_property_hs____deal_value_ab2", - "companies_1ef_property_hs____deal_value_ab3", - "companies_1ef_property_hs_total_deal_value", - "companies_22c_property_fir__ue_61f58f2c_ab1", - "companies_22c_property_fir__ue_61f58f2c_ab2", - "companies_22c_property_fir__ue_61f58f2c_ab3", - "companies_22c_property_first__alue_61f58f2c", - "companies_244_properties_versions", - "companies_244_properties_versions_ab1", - "companies_244_properties_versions_ab2", - "companies_244_properties_versions_ab3", - "companies_249_property_hs___t_timestamp_ab1", - "companies_249_property_hs___t_timestamp_ab2", - "companies_249_property_hs___t_timestamp_ab3", - "companies_249_property_hs_an__sit_timestamp", - "companies_24f_property_hs___t_timestamp_ab1", - "companies_24f_property_hs___t_timestamp_ab2", - "companies_24f_property_hs___t_timestamp_ab3", - "companies_24f_property_hs_an__rst_timestamp", - "companies_275_property_fac__ompany_page_ab1", - "companies_275_property_fac__ompany_page_ab2", - "companies_275_property_fac__ompany_page_ab3", - "companies_275_property_faceb___company_page", - "companies_2a8_property_state", - "companies_2a8_property_state_ab1", - "companies_2a8_property_state_ab2", - "companies_2a8_property_state_ab3", - "companies_2e8_property_eng__ed_campaign_ab1", - "companies_2e8_property_eng__ed_campaign_ab2", - "companies_2e8_property_eng__ed_campaign_ab3", - "companies_2e8_property_engag__oked_campaign", - "companies_2f1_property_hs_all_team_ids", - "companies_2f1_property_hs_all_team_ids_ab1", - "companies_2f1_property_hs_all_team_ids_ab2", - "companies_2f1_property_hs_all_team_ids_ab3", - "companies_336_property_eng__ting_booked_ab1", - "companies_336_property_eng__ting_booked_ab2", - "companies_336_property_eng__ting_booked_ab3", - "companies_336_property_engag__eeting_booked", - "companies_346_property_hs___manager_key_ab1", - "companies_346_property_hs___manager_key_ab2", - "companies_346_property_hs___manager_key_ab3", - "companies_346_property_hs_av__lemanager_key", - "companies_35a_property_hs___ng_activity_ab1", - "companies_35a_property_hs___ng_activity_ab2", - "companies_35a_property_hs___ng_activity_ab3", - "companies_35a_property_hs_la__ting_activity", - "companies_376_property_fir__ue_78b50eea_ab1", - "companies_376_property_fir__ue_78b50eea_ab2", - "companies_376_property_fir__ue_78b50eea_ab3", - "companies_376_property_first__alue_78b50eea", - "companies_3c7_property_hs___ng_campaign_ab1", - "companies_3c7_property_hs___ng_campaign_ab2", - "companies_3c7_property_hs___ng_campaign_ab3", - "companies_3c7_property_hs_an__ting_campaign", - "companies_3d7_property_hs____page_views_ab1", - "companies_3d7_property_hs____page_views_ab2", - "companies_3d7_property_hs____page_views_ab3", - "companies_3d7_property_hs_an__um_page_views", - "companies_401_property_fir__ue_68ddae0a_ab1", - "companies_401_property_fir__ue_68ddae0a_ab2", - "companies_401_property_fir__ue_68ddae0a_ab3", - "companies_401_property_first__alue_68ddae0a", - "companies_429_property_eng__oked_medium_ab1", - "companies_429_property_eng__oked_medium_ab2", - "companies_429_property_eng__oked_medium_ab3", - "companies_429_property_engag__booked_medium", - "companies_44a_property_hs___eeting_date_ab1", - "companies_44a_property_hs___eeting_date_ab2", - "companies_44a_property_hs___eeting_date_ab3", - "companies_44a_property_hs_la___meeting_date", - "companies_477_property_hs___get_account_ab1", - "companies_477_property_hs___get_account_ab2", - "companies_477_property_hs___get_account_ab3", - "companies_477_property_hs_target_account", - "companies_47c_property_hs___n_task_date_ab1", - "companies_47c_property_hs___n_task_date_ab2", - "companies_47c_property_hs___n_task_date_ab3", - "companies_47c_property_hs_la__pen_task_date", - "companies_494_property_hs___d_call_date_ab1", - "companies_494_property_hs___d_call_date_ab2", - "companies_494_property_hs___d_call_date_ab3", - "companies_494_property_hs_la__ged_call_date", - "companies_4ee_property_tot__oney_raised_ab1", - "companies_4ee_property_tot__oney_raised_ab2", - "companies_4ee_property_tot__oney_raised_ab3", - "companies_4ee_property_total_money_raised", - "companies_528_property_rec__ue_72856da1_ab1", - "companies_528_property_rec__ue_72856da1_ab2", - "companies_528_property_rec__ue_72856da1_ab3", - "companies_528_property_recen__alue_72856da1", - "companies_541_property_hs___urce_data_1_ab1", - "companies_541_property_hs___urce_data_1_ab2", - "companies_541_property_hs___urce_data_1_ab3", - "companies_541_property_hs_an__source_data_1", - "companies_57c_property_hs___odifieddate_ab1", - "companies_57c_property_hs___odifieddate_ab2", - "companies_57c_property_hs___odifieddate_ab3", - "companies_57c_property_hs_lastmodifieddate", - "companies_5e4_property_hs___ue_accc17ae_ab1", - "companies_5e4_property_hs___ue_accc17ae_ab2", - "companies_5e4_property_hs___ue_accc17ae_ab3", - "companies_5e4_property_hs_an__alue_accc17ae", - "companies_617_property_hs___ue_4757fe10_ab1", - "companies_617_property_hs___ue_4757fe10_ab2", - "companies_617_property_hs___ue_4757fe10_ab3", - "companies_617_property_hs_an__alue_4757fe10", - "companies_638_property_hs___ation_state_ab1", - "companies_638_property_hs___ation_state_ab2", - "companies_638_property_hs___ation_state_ab3", - "companies_638_property_hs_ta__ndation_state", - "companies_64e_property_description", - "companies_64e_property_description_ab1", - "companies_64e_property_description_ab2", - "companies_64e_property_description_ab3", - "companies_64f_property_timezone", - "companies_64f_property_timezone_ab1", - "companies_64f_property_timezone_ab2", - "companies_64f_property_timezone_ab3", - "companies_6b5_property_hs___le_team_ids_ab1", - "companies_6b5_property_hs___le_team_ids_ab2", - "companies_6b5_property_hs___le_team_ids_ab3", - "companies_6b5_property_hs_al__ible_team_ids", - "companies_6fb_property_type", - "companies_6fb_property_type_ab1", - "companies_6fb_property_type_ab2", - "companies_6fb_property_type_ab3", - "companies_705_property_hs___um_e46e85b0_ab1", - "companies_705_property_hs___um_e46e85b0_ab2", - "companies_705_property_hs___um_e46e85b0_ab3", - "companies_705_property_hs_an___sum_e46e85b0", - "companies_719_property_num__um_d095f14b_ab1", - "companies_719_property_num__um_d095f14b_ab2", - "companies_719_property_num__um_d095f14b_ab3", - "companies_719_property_num_c___sum_d095f14b", - "companies_749_property_eng__oked_source_ab1", - "companies_749_property_eng__oked_source_ab2", - "companies_749_property_eng__oked_source_ab3", - "companies_749_property_engag__booked_source", - "companies_777_property_hs___t_timestamp_ab1", - "companies_777_property_hs___t_timestamp_ab2", - "companies_777_property_hs___t_timestamp_ab3", - "companies_777_property_hs_an__ast_timestamp", - "companies_7a7_property_hs___ue_9b2f1fa1_ab1", - "companies_7a7_property_hs___ue_9b2f1fa1_ab2", - "companies_7a7_property_hs___ue_9b2f1fa1_ab3", - "companies_7a7_property_hs_an__alue_9b2f1fa1", - "companies_7d6_property_hs___ue_9b2f9400_ab1", - "companies_7d6_property_hs___ue_9b2f9400_ab2", - "companies_7d6_property_hs___ue_9b2f9400_ab3", - "companies_7d6_property_hs_an__alue_9b2f9400", - "companies_7da_property_hs___ng_campaign_ab1", - "companies_7da_property_hs___ng_campaign_ab2", - "companies_7da_property_hs___ng_campaign_ab3", - "companies_7da_property_hs_an__ting_campaign", - "companies_7ff_properties", - "companies_7ff_properties_ab1", - "companies_7ff_properties_ab2", - "companies_7ff_properties_ab3", - "companies_851_property_twitterfollowers", - "companies_851_property_twitterfollowers_ab1", - "companies_851_property_twitterfollowers_ab2", - "companies_851_property_twitterfollowers_ab3", - "companies_888_property_hs____company_id_ab1", - "companies_888_property_hs____company_id_ab2", - "companies_888_property_hs____company_id_ab3", - "companies_888_property_hs_parent_company_id", - "companies_8a9_property_website", - "companies_8a9_property_website_ab1", - "companies_8a9_property_website_ab2", - "companies_8a9_property_website_ab3", - "companies_8c4_property_closedate", - "companies_8c4_property_closedate_ab1", - "companies_8c4_property_closedate_ab2", - "companies_8c4_property_closedate_ab3", - "companies_8c9_property_hs_num_blockers", - "companies_8c9_property_hs_num_blockers_ab1", - "companies_8c9_property_hs_num_blockers_ab2", - "companies_8c9_property_hs_num_blockers_ab3", - "companies_8df_property_num__acted_notes_ab1", - "companies_8df_property_num__acted_notes_ab2", - "companies_8df_property_num__acted_notes_ab3", - "companies_8df_property_num_contacted_notes", - "companies_8fe_property_createdate", - "companies_8fe_property_createdate_ab1", - "companies_8fe_property_createdate_ab2", - "companies_8fe_property_createdate_ab3", - "companies_905_property_zip", - "companies_905_property_zip_ab1", - "companies_905_property_zip_ab2", - "companies_905_property_zip_ab3", - "companies_90d_property_hs___tics_source_ab1", - "companies_90d_property_hs___tics_source_ab2", - "companies_90d_property_hs___tics_source_ab3", - "companies_90d_property_hs_analytics_source", - "companies_91a_property_hs___urce_data_2_ab1", - "companies_91a_property_hs___urce_data_2_ab2", - "companies_91a_property_hs___urce_data_2_ab3", - "companies_91a_property_hs_an__source_data_2", - "companies_944_property_facebookfans", - "companies_944_property_facebookfans_ab1", - "companies_944_property_facebookfans_ab2", - "companies_944_property_facebookfans_ab3", - "companies_960_property_hs___sion_makers_ab1", - "companies_960_property_hs___sion_makers_ab2", - "companies_960_property_hs___sion_makers_ab3", - "companies_960_property_hs_nu__cision_makers", - "companies_97f_property_googleplus_page", - "companies_97f_property_googleplus_page_ab1", - "companies_97f_property_googleplus_page_ab2", - "companies_97f_property_googleplus_page_ab3", - "companies_9b2_property_annualrevenue", - "companies_9b2_property_annualrevenue_ab1", - "companies_9b2_property_annualrevenue_ab2", - "companies_9b2_property_annualrevenue_ab3", - "companies_9d5_property_num_notes", - "companies_9d5_property_num_notes_ab1", - "companies_9d5_property_num_notes_ab2", - "companies_9d5_property_num_notes_ab3", - "companies_9d9_property_hs___t_timestamp_ab1", - "companies_9d9_property_hs___t_timestamp_ab2", - "companies_9d9_property_hs___t_timestamp_ab3", - "companies_9d9_property_hs_an__sit_timestamp", - "companies__018_hs_latest_m__ng_activity_ab1", - "companies__018_hs_latest_m__ng_activity_ab2", - "companies__018_hs_latest_m__ng_activity_ab3", - "companies__05c_hs_num_cont__uying_roles_ab1", - "companies__05c_hs_num_cont__uying_roles_ab2", - "companies__05c_hs_num_cont__uying_roles_ab3", - "companies__05c_hs_num_contac___buying_roles", - "companies__0b7_first_conta__ue_78b50eea_ab1", - "companies__0b7_first_conta__ue_78b50eea_ab2", - "companies__0b7_first_conta__ue_78b50eea_ab3", - "companies__0b7_first_contact__alue_78b50eea", - "companies__0b9_hs_analytic__urce_data_1_ab1", - "companies__0b9_hs_analytic__urce_data_1_ab2", - "companies__0b9_hs_analytic__urce_data_1_ab3", - "companies__0cb_hs_analytic__ue_11e3a63a_ab1", - "companies__0cb_hs_analytic__ue_11e3a63a_ab2", - "companies__0cb_hs_analytic__ue_11e3a63a_ab3", - "companies__0cb_hs_analytics___alue_11e3a63a", - "companies__1ab_hs_last_logged_call_date_ab1", - "companies__1ab_hs_last_logged_call_date_ab2", - "companies__1ab_hs_last_logged_call_date_ab3", - "companies__1fe_recent_conv__ue_66c820bf_ab1", - "companies__1fe_recent_conv__ue_66c820bf_ab2", - "companies__1fe_recent_conv__ue_66c820bf_ab3", - "companies__1fe_recent_conver__alue_66c820bf", - "companies__259_first_conve__ue_61f58f2c_ab1", - "companies__259_first_conve__ue_61f58f2c_ab2", - "companies__259_first_conve__ue_61f58f2c_ab3", - "companies__259_first_convers__alue_61f58f2c", - "companies__29c_hs_analytic__ue_999a0fce_ab1", - "companies__29c_hs_analytic__ue_999a0fce_ab2", - "companies__29c_hs_analytic__ue_999a0fce_ab3", - "companies__29c_hs_analytics___alue_999a0fce", - "companies__2db_hs_analytic__ue_accc17ae_ab1", - "companies__2db_hs_analytic__ue_accc17ae_ab2", - "companies__2db_hs_analytic__ue_accc17ae_ab3", - "companies__2db_hs_analytics___alue_accc17ae", - "companies__393_hs_last_sal__tivity_date_ab1", - "companies__393_hs_last_sal__tivity_date_ab2", - "companies__393_hs_last_sal__tivity_date_ab3", - "companies__3c9_hs_analytic__ue_9b2f1fa1_ab1", - "companies__3c9_hs_analytic__ue_9b2f1fa1_ab2", - "companies__3c9_hs_analytic__ue_9b2f1fa1_ab3", - "companies__3c9_hs_analytics___alue_9b2f1fa1", - "companies__485_first_contact_createdate_ab1", - "companies__485_first_contact_createdate_ab2", - "companies__485_first_contact_createdate_ab3", - "companies__529_recent_conv__ue_72856da1_ab1", - "companies__529_recent_conv__ue_72856da1_ab2", - "companies__529_recent_conv__ue_72856da1_ab3", - "companies__529_recent_conver__alue_72856da1", - "companies__5f0_hs_analytic__t_timestamp_ab1", - "companies__5f0_hs_analytic__t_timestamp_ab2", - "companies__5f0_hs_analytic__t_timestamp_ab3", - "companies__6d5_hs_predicti__ax_d4e58c1e_ab1", - "companies__6d5_hs_predicti__ax_d4e58c1e_ab2", - "companies__6d5_hs_predicti__ax_d4e58c1e_ab3", - "companies__6d5_hs_predictive___max_d4e58c1e", - "companies__6eb_first_conve__ue_68ddae0a_ab1", - "companies__6eb_first_conve__ue_68ddae0a_ab2", - "companies__6eb_first_conve__ue_68ddae0a_ab3", - "companies__6eb_first_convers__alue_68ddae0a", - "companies__6ee_hs_target_a__probability_ab1", - "companies__6ee_hs_target_a__probability_ab2", - "companies__6ee_hs_target_a__probability_ab3", - "companies__6ee_hs_target_acc__t_probability", - "companies__73e_hs_ideal_cu__mer_profile_ab1", - "companies__73e_hs_ideal_cu__mer_profile_ab2", - "companies__73e_hs_ideal_cu__mer_profile_ab3", - "companies__746_hs_analytic__ue_4e16365a_ab1", - "companies__746_hs_analytic__ue_4e16365a_ab2", - "companies__746_hs_analytic__ue_4e16365a_ab3", - "companies__746_hs_analytics___alue_4e16365a", - "companies__76d_hs_analytic__ue_9b2f9400_ab1", - "companies__76d_hs_analytic__ue_9b2f9400_ab2", - "companies__76d_hs_analytic__ue_9b2f9400_ab3", - "companies__76d_hs_analytics___alue_9b2f9400", - "companies__785_hs_analytic__t_timestamp_ab1", - "companies__785_hs_analytic__t_timestamp_ab2", - "companies__785_hs_analytic__t_timestamp_ab3", - "companies__785_hs_analytics_first_timestamp", - "companies__7af_hs_target_a__snooze_time_ab1", - "companies__7af_hs_target_a__snooze_time_ab2", - "companies__7af_hs_target_a__snooze_time_ab3", - "companies__7af_hs_target_acc__n_snooze_time", - "companies__81f_hs_analytic__ue_25a3a52c_ab1", - "companies__81f_hs_analytic__ue_25a3a52c_ab2", - "companies__81f_hs_analytic__ue_25a3a52c_ab3", - "companies__81f_hs_analytics___alue_25a3a52c", - "companies__8d2_hs_avatar_f__manager_key_ab1", - "companies__8d2_hs_avatar_f__manager_key_ab2", - "companies__8d2_hs_avatar_f__manager_key_ab3", - "companies__a37_hs_analytic__t_timestamp_ab1", - "companies__a37_hs_analytic__t_timestamp_ab2", - "companies__a37_hs_analytic__t_timestamp_ab3", - "companies__a37_hs_analytics___sit_timestamp", - "companies__a5b_notes_next_activity_date_ab1", - "companies__a5b_notes_next_activity_date_ab2", - "companies__a5b_notes_next_activity_date_ab3", - "companies__a85_hs_analytic__ng_campaign_ab1", - "companies__a85_hs_analytic__ng_campaign_ab2", - "companies__a85_hs_analytic__ng_campaign_ab3", - "companies__a85_hs_analytics___ting_campaign", - "companies__ad4_hs_analytic__ng_campaign_ab1", - "companies__ad4_hs_analytic__ng_campaign_ab2", - "companies__ad4_hs_analytic__ng_campaign_ab3", - "companies__ad4_hs_analytics___ting_campaign", - "companies__ade_hubspot_own__ssigneddate_ab1", - "companies__ade_hubspot_own__ssigneddate_ab2", - "companies__ade_hubspot_own__ssigneddate_ab3", - "companies__af0_engagements__oked_medium_ab1", - "companies__af0_engagements__oked_medium_ab2", - "companies__af0_engagements__oked_medium_ab3", - "companies__af0_engagements_l__booked_medium", - "companies__af6_engagements__oked_source_ab1", - "companies__af6_engagements__oked_source_ab2", - "companies__af6_engagements__oked_source_ab3", - "companies__af6_engagements_l__booked_source", - "companies__b76_hs_user_ids___all_owners_ab1", - "companies__b76_hs_user_ids___all_owners_ab2", - "companies__b76_hs_user_ids___all_owners_ab3", - "companies__b92_engagements__ting_booked_ab1", - "companies__b92_engagements__ting_booked_ab2", - "companies__b92_engagements__ting_booked_ab3", - "companies__b92_engagements_l__eeting_booked", - "companies__bc4_engagements__ed_campaign_ab1", - "companies__bc4_engagements__ed_campaign_ab2", - "companies__bc4_engagements__ed_campaign_ab3", - "companies__bc4_engagements_l__oked_campaign", - "companies__bfe_hs_sales_em__ast_replied_ab1", - "companies__bfe_hs_sales_em__ast_replied_ab2", - "companies__bfe_hs_sales_em__ast_replied_ab3", - "companies__c84_hs_all_acce__le_team_ids_ab1", - "companies__c84_hs_all_acce__le_team_ids_ab2", - "companies__c84_hs_all_acce__le_team_ids_ab3", - "companies__cbb_hs_analytic___page_views_ab1", - "companies__cbb_hs_analytic___page_views_ab2", - "companies__cbb_hs_analytic___page_views_ab3", - "companies__ce7_hs_analytic__ue_4757fe10_ab1", - "companies__ce7_hs_analytic__ue_4757fe10_ab2", - "companies__ce7_hs_analytic__ue_4757fe10_ab3", - "companies__ce7_hs_analytics___alue_4757fe10", - "companies__d07_hs_last_boo__eeting_date_ab1", - "companies__d07_hs_last_boo__eeting_date_ab2", - "companies__d07_hs_last_boo__eeting_date_ab3", - "companies__d6e_closedate_t__ue_a2a17e6e_ab1", - "companies__d6e_closedate_t__ue_a2a17e6e_ab2", - "companies__d6e_closedate_t__ue_a2a17e6e_ab3", - "companies__d6e_closedate_tim__alue_a2a17e6e", - "companies__d74_num_convers__um_d095f14b_ab1", - "companies__d74_num_convers__um_d095f14b_ab2", - "companies__d74_num_convers__um_d095f14b_ab3", - "companies__d74_num_conversio___sum_d095f14b", - "companies__d9e_hs_target_a__ation_state_ab1", - "companies__d9e_hs_target_a__ation_state_ab2", - "companies__d9e_hs_target_a__ation_state_ab3", - "companies__d9e_hs_target_acc__ndation_state", - "companies__db7_hs_analytic__um_53d952a6_ab1", - "companies__db7_hs_analytic__um_53d952a6_ab2", - "companies__db7_hs_analytic__um_53d952a6_ab3", - "companies__db7_hs_analytics____sum_53d952a6", - "companies__dc5_hs_analytic__urce_data_2_ab1", - "companies__dc5_hs_analytic__urce_data_2_ab2", - "companies__dc5_hs_analytic__urce_data_2_ab3", - "companies__e1d_hs_last_sal__y_timestamp_ab1", - "companies__e1d_hs_last_sal__y_timestamp_ab2", - "companies__e1d_hs_last_sal__y_timestamp_ab3", - "companies__e1d_hs_last_sales__ity_timestamp", - "companies__e33_hs_analytic__ue_81a64e30_ab1", - "companies__e33_hs_analytic__ue_81a64e30_ab2", - "companies__e33_hs_analytic__ue_81a64e30_ab3", - "companies__e33_hs_analytics___alue_81a64e30", - "companies__f1d_hs_analytic__t_timestamp_ab1", - "companies__f1d_hs_analytic__t_timestamp_ab2", - "companies__f1d_hs_analytic__t_timestamp_ab3", - "companies__f1d_hs_analytics___sit_timestamp", - "companies__f95_hs_analytic__um_e46e85b0_ab1", - "companies__f95_hs_analytic__um_e46e85b0_ab2", - "companies__f95_hs_analytic__um_e46e85b0_ab3", - "companies__f95_hs_analytics____sum_e46e85b0", - "companies_acc_property_num__iated_deals_ab1", - "companies_acc_property_num__iated_deals_ab2", - "companies_acc_property_num__iated_deals_ab3", - "companies_acc_property_num_associated_deals", - "companies_b26_property_lin__ompany_page_ab1", - "companies_b26_property_lin__ompany_page_ab2", - "companies_b26_property_lin__ompany_page_ab3", - "companies_b26_property_linke___company_page", - "companies_b38_property_clo__ue_a2a17e6e_ab1", - "companies_b38_property_clo__ue_a2a17e6e_ab2", - "companies_b38_property_clo__ue_a2a17e6e_ab3", - "companies_b38_property_close__alue_a2a17e6e", - "companies_b4f_property_hs___d_companies_ab1", - "companies_b4f_property_hs___d_companies_ab2", - "companies_b4f_property_hs___d_companies_ab3", - "companies_b4f_property_hs_nu__ild_companies", - "companies_b66_property_address", - "companies_b66_property_address_ab1", - "companies_b66_property_address_ab2", - "companies_b66_property_address_ab3", - "companies_b6e_property_hs_all_owner_ids", - "companies_b6e_property_hs_all_owner_ids_ab1", - "companies_b6e_property_hs_all_owner_ids_ab2", - "companies_b6e_property_hs_all_owner_ids_ab3", - "companies_b77_property_days_to_close", - "companies_b77_property_days_to_close_ab1", - "companies_b77_property_days_to_close_ab2", - "companies_b77_property_days_to_close_ab3", - "companies_ba0_property_hubspot_owner_id", - "companies_ba0_property_hubspot_owner_id_ab1", - "companies_ba0_property_hubspot_owner_id_ab2", - "companies_ba0_property_hubspot_owner_id_ab3", - "companies_bd5_property_web_technologies", - "companies_bd5_property_web_technologies_ab1", - "companies_bd5_property_web_technologies_ab2", - "companies_bd5_property_web_technologies_ab3", - "companies_bdb_property_lifecyclestage", - "companies_bdb_property_lifecyclestage_ab1", - "companies_bdb_property_lifecyclestage_ab2", - "companies_bdb_property_lifecyclestage_ab3", - "companies_bec_property_hs___um_53d952a6_ab1", - "companies_bec_property_hs___um_53d952a6_ab2", - "companies_bec_property_hs___um_53d952a6_ab3", - "companies_bec_property_hs_an___sum_53d952a6", - "companies_c41_property_is_public", - "companies_c41_property_is_public_ab1", - "companies_c41_property_is_public_ab2", - "companies_c41_property_is_public_ab3", - "companies_c5a_property_hs___get_account_ab1", - "companies_c5a_property_hs___get_account_ab2", - "companies_c5a_property_hs___get_account_ab3", - "companies_c5a_property_hs_is_target_account", - "companies_c5d_property_hs___ue_999a0fce_ab1", - "companies_c5d_property_hs___ue_999a0fce_ab2", - "companies_c5d_property_hs___ue_999a0fce_ab3", - "companies_c5d_property_hs_an__alue_999a0fce", - "companies_c65_property_not__ast_updated_ab1", - "companies_c65_property_not__ast_updated_ab2", - "companies_c65_property_not__ast_updated_ab3", - "companies_c65_property_notes_last_updated", - "companies_ca3_property_hs___mer_profile_ab1", - "companies_ca3_property_hs___mer_profile_ab2", - "companies_ca3_property_hs___mer_profile_ab3", - "companies_ca3_property_hs_id__tomer_profile", - "companies_ccf_property_hs_lead_status", - "companies_ccf_property_hs_lead_status_ab1", - "companies_ccf_property_hs_lead_status_ab2", - "companies_ccf_property_hs_lead_status_ab3", - "companies_ce3_property_hs___snooze_time_ab1", - "companies_ce3_property_hs___snooze_time_ab2", - "companies_ce3_property_hs___snooze_time_ab3", - "companies_ce3_property_hs_ta__n_snooze_time", - "companies_d62_property_twitterhandle", - "companies_d62_property_twitterhandle_ab1", - "companies_d62_property_twitterhandle_ab2", - "companies_d62_property_twitterhandle_ab3", - "companies_d75_property_not__tivity_date_ab1", - "companies_d75_property_not__tivity_date_ab2", - "companies_d75_property_not__tivity_date_ab3", - "companies_d75_property_notes__activity_date", - "companies_d82_property_city", - "companies_d82_property_city_ab1", - "companies_d82_property_city_ab2", - "companies_d82_property_city_ab3", - "companies_d8c_property_hs___y_timestamp_ab1", - "companies_d8c_property_hs___y_timestamp_ab2", - "companies_d8c_property_hs___y_timestamp_ab3", - "companies_d8c_property_hs_la__ity_timestamp", - "companies_db7_property_hs____num_visits_ab1", - "companies_db7_property_hs____num_visits_ab2", - "companies_db7_property_hs____num_visits_ab3", - "companies_db7_property_hs_an__cs_num_visits", - "companies_dd0_property_about_us", - "companies_dd0_property_about_us_ab1", - "companies_dd0_property_about_us_ab2", - "companies_dd0_property_about_us_ab3", - "companies_ddf_property_num__ofemployees_ab1", - "companies_ddf_property_num__ofemployees_ab2", - "companies_ddf_property_num__ofemployees_ab3", - "companies_ddf_property_numberofemployees", - "companies_de4_property_total_revenue", - "companies_de4_property_total_revenue_ab1", - "companies_de4_property_total_revenue_ab2", - "companies_de4_property_total_revenue_ab3", - "companies_e0e_property_hs____object_ids_ab1", - "companies_e0e_property_hs____object_ids_ab2", - "companies_e0e_property_hs____object_ids_ab3", - "companies_e0e_property_hs_merged_object_ids", - "companies_e13_property_founded_year", - "companies_e13_property_founded_year_ab1", - "companies_e13_property_founded_year_ab2", - "companies_e13_property_founded_year_ab3", - "companies_e27_property_address2", - "companies_e27_property_address2_ab1", - "companies_e27_property_address2_ab2", - "companies_e27_property_address2_ab3", - "companies_e42_property_hs____all_owners_ab1", - "companies_e42_property_hs____all_owners_ab2", - "companies_e42_property_hs____all_owners_ab3", - "companies_e42_property_hs_us__of_all_owners", - "companies_e46_property_hs____by_user_id_ab1", - "companies_e46_property_hs____by_user_id_ab2", - "companies_e46_property_hs____by_user_id_ab3", - "companies_e46_property_hs_up__ed_by_user_id", - "companies_e48_property_fir__reated_date_ab1", - "companies_e48_property_fir__reated_date_ab2", - "companies_e48_property_fir__reated_date_ab3", - "companies_e48_property_first___created_date", - "companies_e5f_property_domain", - "companies_e5f_property_domain_ab1", - "companies_e5f_property_domain_ab2", - "companies_e5f_property_domain_ab3", - "companies_e90_property_hs____open_deals_ab1", - "companies_e90_property_hs____open_deals_ab2", - "companies_e90_property_hs____open_deals_ab3", - "companies_e90_property_hs_num_open_deals", - "companies_e9f_property_hs___nal_domains_ab1", - "companies_e9f_property_hs___nal_domains_ab2", - "companies_e9f_property_hs___nal_domains_ab3", - "companies_e9f_property_hs_ad__ional_domains", - "companies_eac_property_hs____by_user_id_ab1", - "companies_eac_property_hs____by_user_id_ab2", - "companies_eac_property_hs____by_user_id_ab3", - "companies_eac_property_hs_cr__ed_by_user_id", - "companies_ebe_property_hs___ue_4e16365a_ab1", - "companies_ebe_property_hs___ue_4e16365a_ab2", - "companies_ebe_property_hs___ue_4e16365a_ab3", - "companies_ebe_property_hs_an__alue_4e16365a", - "companies_ed2_property_hs___ue_81a64e30_ab1", - "companies_ed2_property_hs___ue_81a64e30_ab2", - "companies_ed2_property_hs___ue_81a64e30_ab3", - "companies_ed2_property_hs_an__alue_81a64e30", - "companies_f07_property_name", - "companies_f07_property_name_ab1", - "companies_f07_property_name_ab2", - "companies_f07_property_name_ab3", - "companies_f20_property_hs___ue_11e3a63a_ab1", - "companies_f20_property_hs___ue_11e3a63a_ab2", - "companies_f20_property_hs___ue_11e3a63a_ab3", - "companies_f20_property_hs_an__alue_11e3a63a", - "companies_f39_property_hs___ax_d4e58c1e_ab1", - "companies_f39_property_hs___ax_d4e58c1e_ab2", - "companies_f39_property_hs___ax_d4e58c1e_ab3", - "companies_f39_property_hs_pr___max_d4e58c1e", - "companies_f76_property_hs___tivity_date_ab1", - "companies_f76_property_hs___tivity_date_ab2", - "companies_f76_property_hs___tivity_date_ab3", - "companies_f76_property_hs_la__activity_date", - "companies_fbd_property_not__t_contacted_ab1", - "companies_fbd_property_not__t_contacted_ab2", - "companies_fbd_property_not__t_contacted_ab3", - "companies_fbd_property_notes_last_contacted", - "companies_p_393_hs_last_sales_activity_date", - "companies_p_44b_num_associated_contacts_ab1", - "companies_p_44b_num_associated_contacts_ab2", - "companies_p_44b_num_associated_contacts_ab3", - "companies_p_5f0_hs_analytics_last_timestamp", - "companies_p_8dc_first_deal_created_date_ab1", - "companies_p_8dc_first_deal_created_date_ab2", - "companies_p_8dc_first_deal_created_date_ab3", - "companies_p_bfe_hs_sales_email_last_replied", - "companies_p_cbb_hs_analytics_num_page_views", - "companies_p_d07_hs_last_booked_meeting_date", - "companies_p_f28_hs_analytics_num_visits_ab1", - "companies_p_f28_hs_analytics_num_visits_ab2", - "companies_p_f28_hs_analytics_num_visits_ab3", - "companies_pr_018_hs_latest_meeting_activity", - "companies_pr_0b9_hs_analytics_source_data_1", - "companies_pr_0bc_recent_deal_close_date_ab1", - "companies_pr_0bc_recent_deal_close_date_ab2", - "companies_pr_0bc_recent_deal_close_date_ab3", - "companies_pr_71a_hs_num_decision_makers_ab1", - "companies_pr_71a_hs_num_decision_makers_ab2", - "companies_pr_71a_hs_num_decision_makers_ab3", - "companies_pr_777_hs_num_child_companies_ab1", - "companies_pr_777_hs_num_child_companies_ab2", - "companies_pr_777_hs_num_child_companies_ab3", - "companies_pr_ade_hubspot_owner_assigneddate", - "companies_pr_c84_hs_all_accessible_team_ids", - "companies_pr_dc5_hs_analytics_source_data_2", - "companies_pr_fc1_hs_last_open_task_date_ab1", - "companies_pr_fc1_hs_last_open_task_date_ab2", - "companies_pr_fc1_hs_last_open_task_date_ab3", - "companies_pro_177_linkedin_company_page_ab1", - "companies_pro_177_linkedin_company_page_ab2", - "companies_pro_177_linkedin_company_page_ab3", - "companies_pro_2fa_hs_additional_domains_ab1", - "companies_pro_2fa_hs_additional_domains_ab2", - "companies_pro_2fa_hs_additional_domains_ab3", - "companies_pro_6bf_facebook_company_page_ab1", - "companies_pro_6bf_facebook_company_page_ab2", - "companies_pro_6bf_facebook_company_page_ab3", - "companies_pro_73e_hs_ideal_customer_profile", - "companies_pro_8a7_hs_created_by_user_id_ab1", - "companies_pro_8a7_hs_created_by_user_id_ab2", - "companies_pro_8a7_hs_created_by_user_id_ab3", - "companies_pro_8d2_hs_avatar_filemanager_key", - "companies_pro_a8a_hs_updated_by_user_id_ab1", - "companies_pro_a8a_hs_updated_by_user_id_ab2", - "companies_pro_a8a_hs_updated_by_user_id_ab3", - "companies_pro_b76_hs_user_ids_of_all_owners", - "companies_prop_004_notes_last_contacted_ab1", - "companies_prop_004_notes_last_contacted_ab2", - "companies_prop_004_notes_last_contacted_ab3", - "companies_prop_1ab_hs_last_logged_call_date", - "companies_prop_30a_num_associated_deals_ab1", - "companies_prop_30a_num_associated_deals_ab2", - "companies_prop_30a_num_associated_deals_ab3", - "companies_prop_330_hs_merged_object_ids_ab1", - "companies_prop_330_hs_merged_object_ids_ab2", - "companies_prop_330_hs_merged_object_ids_ab3", - "companies_prop_485_first_contact_createdate", - "companies_prop_758_hs_parent_company_id_ab1", - "companies_prop_758_hs_parent_company_id_ab2", - "companies_prop_758_hs_parent_company_id_ab3", - "companies_prop_921_hs_is_target_account_ab1", - "companies_prop_921_hs_is_target_account_ab2", - "companies_prop_921_hs_is_target_account_ab3", - "companies_prop_a5b_notes_next_activity_date", - "companies_prope_121_hs_analytics_source_ab1", - "companies_prope_121_hs_analytics_source_ab2", - "companies_prope_121_hs_analytics_source_ab3", - "companies_prope_30d_hs_lastmodifieddate_ab1", - "companies_prope_30d_hs_lastmodifieddate_ab2", - "companies_prope_30d_hs_lastmodifieddate_ab3", - "companies_prope_44b_num_associated_contacts", - "companies_prope_7d1_num_contacted_notes_ab1", - "companies_prope_7d1_num_contacted_notes_ab2", - "companies_prope_7d1_num_contacted_notes_ab3", - "companies_prope_8dc_first_deal_created_date", - "companies_prope_cf7_hs_total_deal_value_ab1", - "companies_prope_cf7_hs_total_deal_value_ab2", - "companies_prope_cf7_hs_total_deal_value_ab3", - "companies_prope_f28_hs_analytics_num_visits", - "companies_proper_01e_recent_deal_amount_ab1", - "companies_proper_01e_recent_deal_amount_ab2", - "companies_proper_01e_recent_deal_amount_ab3", - "companies_proper_0bc_recent_deal_close_date", - "companies_proper_521_total_money_raised_ab1", - "companies_proper_521_total_money_raised_ab2", - "companies_proper_521_total_money_raised_ab3", - "companies_proper_71a_hs_num_decision_makers", - "companies_proper_777_hs_num_child_companies", - "companies_proper_876_notes_last_updated_ab1", - "companies_proper_876_notes_last_updated_ab2", - "companies_proper_876_notes_last_updated_ab3", - "companies_proper_fc1_hs_last_open_task_date", - "companies_propert_08d_numberofemployees_ab1", - "companies_propert_08d_numberofemployees_ab2", - "companies_propert_08d_numberofemployees_ab3", - "companies_propert_177_linkedin_company_page", - "companies_propert_220_hs_target_account_ab1", - "companies_propert_220_hs_target_account_ab2", - "companies_propert_220_hs_target_account_ab3", - "companies_propert_2fa_hs_additional_domains", - "companies_propert_6bf_facebook_company_page", - "companies_propert_8a7_hs_created_by_user_id", - "companies_propert_a8a_hs_updated_by_user_id", - "companies_propert_c92_hs_num_open_deals_ab1", - "companies_propert_c92_hs_num_open_deals_ab2", - "companies_propert_c92_hs_num_open_deals_ab3", - "companies_properti_004_notes_last_contacted", - "companies_properti_30a_num_associated_deals", - "companies_properti_330_hs_merged_object_ids", - "companies_properti_758_hs_parent_company_id", - "companies_properti_889_hs_all_owner_ids_ab1", - "companies_properti_889_hs_all_owner_ids_ab2", - "companies_properti_889_hs_all_owner_ids_ab3", - "companies_properti_921_hs_is_target_account", - "companies_properti_947_twitterfollowers_ab1", - "companies_properti_947_twitterfollowers_ab2", - "companies_properti_947_twitterfollowers_ab3", - "companies_properti_a27_hubspot_owner_id_ab1", - "companies_properti_a27_hubspot_owner_id_ab2", - "companies_properti_a27_hubspot_owner_id_ab3", - "companies_properti_ada_web_technologies_ab1", - "companies_properti_ada_web_technologies_ab2", - "companies_properti_ada_web_technologies_ab3", - "companies_propertie_121_hs_analytics_source", - "companies_propertie_1b6_googleplus_page_ab1", - "companies_propertie_1b6_googleplus_page_ab2", - "companies_propertie_1b6_googleplus_page_ab3", - "companies_propertie_30d_hs_lastmodifieddate", - "companies_propertie_7d1_num_contacted_notes", - "companies_propertie_89f_hs_all_team_ids_ab1", - "companies_propertie_89f_hs_all_team_ids_ab2", - "companies_propertie_89f_hs_all_team_ids_ab3", - "companies_propertie_c97_hubspot_team_id_ab1", - "companies_propertie_c97_hubspot_team_id_ab2", - "companies_propertie_c97_hubspot_team_id_ab3", - "companies_propertie_cf7_hs_total_deal_value", - "companies_propertie_f8e_hs_num_blockers_ab1", - "companies_propertie_f8e_hs_num_blockers_ab2", - "companies_propertie_f8e_hs_num_blockers_ab3", - "companies_properties_01e_recent_deal_amount", - "companies_properties_08d_numberofemployees", - "companies_properties_100_twitterhandle", - "companies_properties_100_twitterhandle_ab1", - "companies_properties_100_twitterhandle_ab2", - "companies_properties_100_twitterhandle_ab3", - "companies_properties_138_twitterbio", - "companies_properties_138_twitterbio_ab1", - "companies_properties_138_twitterbio_ab2", - "companies_properties_138_twitterbio_ab3", - "companies_properties_181_about_us", - "companies_properties_181_about_us_ab1", - "companies_properties_181_about_us_ab2", - "companies_properties_181_about_us_ab3", - "companies_properties_1b6_googleplus_page", - "companies_properties_1d0_timezone", - "companies_properties_1d0_timezone_ab1", - "companies_properties_1d0_timezone_ab2", - "companies_properties_1d0_timezone_ab3", - "companies_properties_1d7_industry", - "companies_properties_1d7_industry_ab1", - "companies_properties_1d7_industry_ab2", - "companies_properties_1d7_industry_ab3", - "companies_properties_220_hs_target_account", - "companies_properties_27e_hs_createdate", - "companies_properties_27e_hs_createdate_ab1", - "companies_properties_27e_hs_createdate_ab2", - "companies_properties_27e_hs_createdate_ab3", - "companies_properties_462_phone", - "companies_properties_462_phone_ab1", - "companies_properties_462_phone_ab2", - "companies_properties_462_phone_ab3", - "companies_properties_521_total_money_raised", - "companies_properties_62b_hs_lead_status", - "companies_properties_62b_hs_lead_status_ab1", - "companies_properties_62b_hs_lead_status_ab2", - "companies_properties_62b_hs_lead_status_ab3", - "companies_properties_65a_annualrevenue", - "companies_properties_65a_annualrevenue_ab1", - "companies_properties_65a_annualrevenue_ab2", - "companies_properties_65a_annualrevenue_ab3", - "companies_properties_65d_founded_year", - "companies_properties_65d_founded_year_ab1", - "companies_properties_65d_founded_year_ab2", - "companies_properties_65d_founded_year_ab3", - "companies_properties_701_days_to_close", - "companies_properties_701_days_to_close_ab1", - "companies_properties_701_days_to_close_ab2", - "companies_properties_701_days_to_close_ab3", - "companies_properties_726_num_notes", - "companies_properties_726_num_notes_ab1", - "companies_properties_726_num_notes_ab2", - "companies_properties_726_num_notes_ab3", - "companies_properties_7b6_domain", - "companies_properties_7b6_domain_ab1", - "companies_properties_7b6_domain_ab2", - "companies_properties_7b6_domain_ab3", - "companies_properties_7fc_type", - "companies_properties_7fc_type_ab1", - "companies_properties_7fc_type_ab2", - "companies_properties_7fc_type_ab3", - "companies_properties_876_notes_last_updated", - "companies_properties_888_facebookfans", - "companies_properties_888_facebookfans_ab1", - "companies_properties_888_facebookfans_ab2", - "companies_properties_888_facebookfans_ab3", - "companies_properties_889_hs_all_owner_ids", - "companies_properties_89f_hs_all_team_ids", - "companies_properties_8b9_createdate", - "companies_properties_8b9_createdate_ab1", - "companies_properties_8b9_createdate_ab2", - "companies_properties_8b9_createdate_ab3", - "companies_properties_909_address2", - "companies_properties_909_address2_ab1", - "companies_properties_909_address2_ab2", - "companies_properties_909_address2_ab3", - "companies_properties_947_twitterfollowers", - "companies_properties_94f_name", - "companies_properties_94f_name_ab1", - "companies_properties_94f_name_ab2", - "companies_properties_94f_name_ab3", - "companies_properties_969_closedate", - "companies_properties_969_closedate_ab1", - "companies_properties_969_closedate_ab2", - "companies_properties_969_closedate_ab3", - "companies_properties_9ea_country", - "companies_properties_9ea_country_ab1", - "companies_properties_9ea_country_ab2", - "companies_properties_9ea_country_ab3", - "companies_properties_9fe_city", - "companies_properties_9fe_city_ab1", - "companies_properties_9fe_city_ab2", - "companies_properties_9fe_city_ab3", - "companies_properties_a27_hubspot_owner_id", - "companies_properties_aaa_linkedinbio", - "companies_properties_aaa_linkedinbio_ab1", - "companies_properties_aaa_linkedinbio_ab2", - "companies_properties_aaa_linkedinbio_ab3", - "companies_properties_ab7_address", - "companies_properties_ab7_address_ab1", - "companies_properties_ab7_address_ab2", - "companies_properties_ab7_address_ab3", - "companies_properties_ad4_lifecyclestage", - "companies_properties_ad4_lifecyclestage_ab1", - "companies_properties_ad4_lifecyclestage_ab2", - "companies_properties_ad4_lifecyclestage_ab3", - "companies_properties_ada_web_technologies", - "companies_properties_b8e_is_public", - "companies_properties_b8e_is_public_ab1", - "companies_properties_b8e_is_public_ab2", - "companies_properties_b8e_is_public_ab3", - "companies_properties_b91_hs_object_id", - "companies_properties_b91_hs_object_id_ab1", - "companies_properties_b91_hs_object_id_ab2", - "companies_properties_b91_hs_object_id_ab3", - "companies_properties_c5f_description", - "companies_properties_c5f_description_ab1", - "companies_properties_c5f_description_ab2", - "companies_properties_c5f_description_ab3", - "companies_properties_c92_hs_num_open_deals", - "companies_properties_c97_hubspot_team_id", - "companies_properties_d85_state", - "companies_properties_d85_state_ab1", - "companies_properties_d85_state_ab2", - "companies_properties_d85_state_ab3", - "companies_properties_d9e_total_revenue", - "companies_properties_d9e_total_revenue_ab1", - "companies_properties_d9e_total_revenue_ab2", - "companies_properties_d9e_total_revenue_ab3", - "companies_properties_f8e_hs_num_blockers", - "companies_properties_fdb_zip", - "companies_properties_fdb_zip_ab1", - "companies_properties_fdb_zip_ab2", - "companies_properties_fdb_zip_ab3", - "companies_properties_ff9_website", - "companies_properties_ff9_website_ab1", - "companies_properties_ff9_website_ab2", - "companies_properties_ff9_website_ab3", - "contact_lists_4c6_metadata", - "contact_lists_4c6_metadata_ab1", - "contact_lists_4c6_metadata_ab2", - "contact_lists_4c6_metadata_ab3", - "contact_lists_a20_filters", - "contact_lists_a20_filters_ab1", - "contact_lists_a20_filters_ab2", - "contact_lists_a20_filters_ab3", - "contacts_00a_property_hs___il_confirmed_ab1", - "contacts_00a_property_hs___il_confirmed_ab2", - "contacts_00a_property_hs___il_confirmed_ab3", - "contacts_00a_property_hs_co__mail_confirmed", - "contacts_010_property_hs___d_by_user_id_ab1", - "contacts_010_property_hs___d_by_user_id_ab2", - "contacts_010_property_hs___d_by_user_id_ab3", - "contacts_010_property_hs_created_by_user_id", - "contacts_014_property_hs_testpurge", - "contacts_014_property_hs_testpurge_ab1", - "contacts_014_property_hs_testpurge_ab2", - "contacts_014_property_hs_testpurge_ab3", - "contacts_01b_property_hs___contact_vids_ab1", - "contacts_01b_property_hs___contact_vids_ab2", - "contacts_01b_property_hs___contact_vids_ab3", - "contacts_01b_property_hs_all_contact_vids", - "contacts_022_property_hs___country_code_ab1", - "contacts_022_property_hs___country_code_ab2", - "contacts_022_property_hs___country_code_ab3", - "contacts_022_property_hs_ca__r_country_code", - "contacts_031_property_hs___rst_referrer_ab1", - "contacts_031_property_hs___rst_referrer_ab2", - "contacts_031_property_hs___rst_referrer_ab3", - "contacts_031_property_hs_an__first_referrer", - "contacts_04b_property_hs___d_object_ids_ab1", - "contacts_04b_property_hs___d_object_ids_ab2", - "contacts_04b_property_hs___d_object_ids_ab3", - "contacts_04b_property_hs_merged_object_ids", - "contacts_052_property_fir__n_event_name_ab1", - "contacts_052_property_fir__n_event_name_ab2", - "contacts_052_property_fir__n_event_name_ab3", - "contacts_052_property_first__ion_event_name", - "contacts_053_property_rec__version_date_ab1", - "contacts_053_property_rec__version_date_ab2", - "contacts_053_property_rec__version_date_ab3", - "contacts_053_property_recen__onversion_date", - "contacts_056_property_work_email", - "contacts_056_property_work_email_ab1", - "contacts_056_property_work_email_ab2", - "contacts_056_property_work_email_ab3", - "contacts_059_property_hs___st_open_date_ab1", - "contacts_059_property_hs___st_open_date_ab2", - "contacts_059_property_hs___st_open_date_ab3", - "contacts_059_property_hs_em__last_open_date", - "contacts_05c_property_hs_is_unworked", - "contacts_05c_property_hs_is_unworked_ab1", - "contacts_05c_property_hs_is_unworked_ab2", - "contacts_05c_property_hs_is_unworked_ab3", - "contacts_0a4_property_eng__eting_booked_ab1", - "contacts_0a4_property_eng__eting_booked_ab2", - "contacts_0a4_property_eng__eting_booked_ab3", - "contacts_0a4_property_engag__meeting_booked", - "contacts_0a9_property_hs____bad_address_ab1", - "contacts_0a9_property_hs____bad_address_ab2", - "contacts_0a9_property_hs____bad_address_ab3", - "contacts_0a9_property_hs_email_bad_address", - "contacts_0ac_property_eng__ked_campaign_ab1", - "contacts_0ac_property_eng__ked_campaign_ab2", - "contacts_0ac_property_eng__ked_campaign_ab3", - "contacts_0ac_property_engag__ooked_campaign", - "contacts_0b2_property_hs____submissions_ab1", - "contacts_0b2_property_hs____submissions_ab2", - "contacts_0b2_property_hs____submissions_ab3", - "contacts_0b2_property_hs_ca__rm_submissions", - "contacts_0c8_property_twitterhandle", - "contacts_0c8_property_twitterhandle_ab1", - "contacts_0c8_property_twitterhandle_ab2", - "contacts_0c8_property_twitterhandle_ab3", - "contacts_0fc_property_fax", - "contacts_0fc_property_fax_ab1", - "contacts_0fc_property_fax_ab2", - "contacts_0fc_property_fax_ab3", - "contacts_0fc_property_hs___mail_sent_at_ab1", - "contacts_0fc_property_hs___mail_sent_at_ab2", - "contacts_0fc_property_hs___mail_sent_at_ab3", - "contacts_0fc_property_hs_co___email_sent_at", - "contacts_12b_property_school", - "contacts_12b_property_school_ab1", - "contacts_12b_property_school_ab2", - "contacts_12b_property_school_ab3", - "contacts_141_property_hs___emanager_key_ab1", - "contacts_141_property_hs___emanager_key_ab2", - "contacts_141_property_hs___emanager_key_ab3", - "contacts_141_property_hs_av__ilemanager_key", - "contacts_14d_property_website", - "contacts_14d_property_website_ab1", - "contacts_14d_property_website_ab2", - "contacts_14d_property_website_ab3", - "contacts_14f_property_hs_email_open", - "contacts_14f_property_hs_email_open_ab1", - "contacts_14f_property_hs_email_open_ab2", - "contacts_14f_property_hs_email_open_ab3", - "contacts_15c_property_not__ctivity_date_ab1", - "contacts_15c_property_not__ctivity_date_ab2", - "contacts_15c_property_not__ctivity_date_ab3", - "contacts_15c_property_notes___activity_date", - "contacts_19f_property_hs____completions_ab1", - "contacts_19f_property_hs____completions_ab2", - "contacts_19f_property_hs____completions_ab3", - "contacts_19f_property_hs_an__nt_completions", - "contacts_1b0_property_hs___ional_emails_ab1", - "contacts_1b0_property_hs___ional_emails_ab2", - "contacts_1b0_property_hs___ional_emails_ab3", - "contacts_1b0_property_hs_additional_emails", - "contacts_1c7_property_hs___tined_reason_ab1", - "contacts_1c7_property_hs___tined_reason_ab2", - "contacts_1c7_property_hs___tined_reason_ab3", - "contacts_1c7_property_hs_em__antined_reason", - "contacts_1cd_property_hs____object_type_ab1", - "contacts_1cd_property_hs____object_type_ab2", - "contacts_1cd_property_hs____object_type_ab3", - "contacts_1cd_property_hs_sa__nt_object_type", - "contacts_1e0_properties", - "contacts_1e0_properties_ab1", - "contacts_1e0_properties_ab2", - "contacts_1e0_properties_ab3", - "contacts_1fe_property_hs___ook_click_id_ab1", - "contacts_1fe_property_hs___ook_click_id_ab2", - "contacts_1fe_property_hs___ook_click_id_ab3", - "contacts_1fe_property_hs_facebook_click_id", - "contacts_20f_property_hs___m_page_views_ab1", - "contacts_20f_property_hs___m_page_views_ab2", - "contacts_20f_property_hs___m_page_views_ab3", - "contacts_20f_property_hs_an__num_page_views", - "contacts_21d_property_hs___out_10798197_ab1", - "contacts_21d_property_hs___out_10798197_ab2", - "contacts_21d_property_hs___out_10798197_ab3", - "contacts_21d_property_hs_em__ptout_10798197", - "contacts_224_property_industry", - "contacts_224_property_industry_ab1", - "contacts_224_property_industry_ab2", - "contacts_224_property_industry_ab3", - "contacts_24d_property_hs_email_domain", - "contacts_24d_property_hs_email_domain_ab1", - "contacts_24d_property_hs_email_domain_ab2", - "contacts_24d_property_hs_email_domain_ab3", - "contacts_250_property_hs___main_sent_to_ab1", - "contacts_250_property_hs___main_sent_to_ab2", - "contacts_250_property_hs___main_sent_to_ab3", - "contacts_250_property_hs_co__domain_sent_to", - "contacts_251_property_ip_country_code", - "contacts_251_property_ip_country_code_ab1", - "contacts_251_property_ip_country_code_ab2", - "contacts_251_property_ip_country_code_ab3", - "contacts_25a_property_salutation", - "contacts_25a_property_salutation_ab1", - "contacts_25a_property_salutation_ab2", - "contacts_25a_property_salutation_ab3", - "contacts_298_property_email", - "contacts_298_property_email_ab1", - "contacts_298_property_email_ab2", - "contacts_298_property_email_ab3", - "contacts_29f_property_military_status", - "contacts_29f_property_military_status_ab1", - "contacts_29f_property_military_status_ab2", - "contacts_29f_property_military_status_ab3", - "contacts_2a3_property_hs_email_optout", - "contacts_2a3_property_hs_email_optout_ab1", - "contacts_2a3_property_hs_email_optout_ab2", - "contacts_2a3_property_hs_email_optout_ab3", - "contacts_2bc_property_hs___st_send_date_ab1", - "contacts_2bc_property_hs___st_send_date_ab2", - "contacts_2bc_property_hs___st_send_date_ab3", - "contacts_2bc_property_hs_em__irst_send_date", - "contacts_2dd_property_country", - "contacts_2dd_property_country_ab1", - "contacts_2dd_property_country_ab2", - "contacts_2dd_property_country_ab3", - "contacts_2f8_property_hs___ty_timestamp_ab1", - "contacts_2f8_property_hs___ty_timestamp_ab2", - "contacts_2f8_property_hs___ty_timestamp_ab3", - "contacts_2f8_property_hs_la__vity_timestamp", - "contacts_325_property_hs_email_click", - "contacts_325_property_hs_email_click_ab1", - "contacts_325_property_hs_email_click_ab2", - "contacts_325_property_hs_email_click_ab3", - "contacts_326_property_web__tlastupdated_ab1", - "contacts_326_property_web__tlastupdated_ab2", - "contacts_326_property_web__tlastupdated_ab3", - "contacts_326_property_webin__entlastupdated", - "contacts_33e_property_rec___deal_amount_ab1", - "contacts_33e_property_rec___deal_amount_ab2", - "contacts_33e_property_rec___deal_amount_ab3", - "contacts_33e_property_recent_deal_amount", - "contacts_33f_property_ass__ylastupdated_ab1", - "contacts_33f_property_ass__ylastupdated_ab2", - "contacts_33f_property_ass__ylastupdated_ab3", - "contacts_33f_property_assoc__anylastupdated", - "contacts_348_property_hs___t_engagement_ab1", - "contacts_348_property_hs___t_engagement_ab2", - "contacts_348_property_hs___t_engagement_ab3", - "contacts_348_property_hs_ti__rst_engagement", - "contacts_37a_property_hs___ctivity_date_ab1", - "contacts_37a_property_hs___ctivity_date_ab2", - "contacts_37a_property_hs___ctivity_date_ab3", - "contacts_37a_property_hs_la___activity_date", - "contacts_3be_property_hs___il_delivered_ab1", - "contacts_3be_property_hs___il_delivered_ab2", - "contacts_3be_property_hs___il_delivered_ab3", - "contacts_3be_property_hs_email_delivered", - "contacts_3c0_merge_audits", - "contacts_3c0_merge_audits_ab1", - "contacts_3c0_merge_audits_ab2", - "contacts_3c0_merge_audits_ab3", - "contacts_3e9_property_num_notes", - "contacts_3e9_property_num_notes_ab1", - "contacts_3e9_property_num_notes_ab2", - "contacts_3e9_property_num_notes_ab3", - "contacts_3ee_property_hs___ge_lead_date_ab1", - "contacts_3ee_property_hs___ge_lead_date_ab2", - "contacts_3ee_property_hs___ge_lead_date_ab3", - "contacts_3ee_property_hs_li__tage_lead_date", - "contacts_401_property_hubspot_owner_id", - "contacts_401_property_hubspot_owner_id_ab1", - "contacts_401_property_hubspot_owner_id_ab2", - "contacts_401_property_hubspot_owner_id_ab3", - "contacts_42e_property_city", - "contacts_42e_property_city_ab1", - "contacts_42e_property_city_ab2", - "contacts_42e_property_city_ab3", - "contacts_44c_property_hs___st_send_date_ab1", - "contacts_44c_property_hs___st_send_date_ab2", - "contacts_44c_property_hs___st_send_date_ab3", - "contacts_44c_property_hs_em__last_send_date", - "contacts_465_property_zip", - "contacts_465_property_zip_ab1", - "contacts_465_property_zip_ab2", - "contacts_465_property_zip_ab3", - "contacts_472_property_address", - "contacts_472_property_address_ab1", - "contacts_472_property_address_ab2", - "contacts_472_property_address_ab3", - "contacts_48e_property_hs_legal_basis", - "contacts_48e_property_hs_legal_basis_ab1", - "contacts_48e_property_hs_legal_basis_ab2", - "contacts_48e_property_hs_legal_basis_ab3", - "contacts_49c_property_hs___k_ad_clicked_ab1", - "contacts_49c_property_hs___k_ad_clicked_ab2", - "contacts_49c_property_hs___k_ad_clicked_ab3", - "contacts_49c_property_hs_fa__ook_ad_clicked", - "contacts_4ab_property_closedate", - "contacts_4ab_property_closedate_ab1", - "contacts_4ab_property_closedate_ab2", - "contacts_4ab_property_closedate_ab3", - "contacts_4c9_property_num__rsion_events_ab1", - "contacts_4c9_property_num__rsion_events_ab2", - "contacts_4c9_property_num__rsion_events_ab3", - "contacts_4c9_property_num_conversion_events", - "contacts_4e2_property_hs___phone_number_ab1", - "contacts_4e2_property_hs___phone_number_ab2", - "contacts_4e2_property_hs___phone_number_ab3", - "contacts_4e2_property_hs_ca__d_phone_number", - "contacts_4fc_property_num__rsion_events_ab1", - "contacts_4fc_property_num__rsion_events_ab2", - "contacts_4fc_property_num__rsion_events_ab3", - "contacts_4fc_property_num_u__version_events", - "contacts_503_property_firstname", - "contacts_503_property_firstname_ab1", - "contacts_503_property_firstname_ab2", - "contacts_503_property_firstname_ab3", - "contacts_505_property_hs_email_bounce", - "contacts_505_property_hs_email_bounce_ab1", - "contacts_505_property_hs_email_bounce_ab2", - "contacts_505_property_hs_email_bounce_ab3", - "contacts_507_property_seniority", - "contacts_507_property_seniority_ab1", - "contacts_507_property_seniority_ab2", - "contacts_507_property_seniority_ab3", - "contacts_516_property_start_date", - "contacts_516_property_start_date_ab1", - "contacts_516_property_start_date_ab2", - "contacts_516_property_start_date_ab3", - "contacts_520_property_hs___modifieddate_ab1", - "contacts_520_property_hs___modifieddate_ab2", - "contacts_520_property_hs___modifieddate_ab3", - "contacts_520_property_hs_lastmodifieddate", - "contacts_541_property_hs___scriber_date_ab1", - "contacts_541_property_hs___scriber_date_ab2", - "contacts_541_property_hs___scriber_date_ab3", - "contacts_541_property_hs_li__ubscriber_date", - "contacts_546_property_hs_buying_role", - "contacts_546_property_hs_buying_role_ab1", - "contacts_546_property_hs_buying_role_ab2", - "contacts_546_property_hs_buying_role_ab3", - "contacts_569_property_num__ciated_deals_ab1", - "contacts_569_property_num__ciated_deals_ab2", - "contacts_569_property_num__ciated_deals_ab3", - "contacts_569_property_num_associated_deals", - "contacts_58a_property_annualrevenue", - "contacts_58a_property_annualrevenue_ab1", - "contacts_58a_property_annualrevenue_ab2", - "contacts_58a_property_annualrevenue_ab3", - "contacts_5a2_list_memberships", - "contacts_5a2_list_memberships_ab1", - "contacts_5a2_list_memberships_ab2", - "contacts_5a2_list_memberships_ab3", - "contacts_5b6_property_hs____merged_vids_ab1", - "contacts_5b6_property_hs____merged_vids_ab2", - "contacts_5b6_property_hs____merged_vids_ab3", - "contacts_5b6_property_hs_ca__ed_merged_vids", - "contacts_5c6_property_hs___last_clicked_ab1", - "contacts_5c6_property_hs___last_clicked_ab2", - "contacts_5c6_property_hs___last_clicked_ab3", - "contacts_5c6_property_hs_sa__l_last_clicked", - "contacts_5cb_property_hs____last_opened_ab1", - "contacts_5cb_property_hs____last_opened_ab2", - "contacts_5cb_property_hs____last_opened_ab3", - "contacts_5cb_property_hs_sa__il_last_opened", - "contacts_5fe_property_lastname", - "contacts_5fe_property_lastname_ab1", - "contacts_5fe_property_lastname_ab2", - "contacts_5fe_property_lastname_ab3", - "contacts_600_property_hs_is_contact", - "contacts_600_property_hs_is_contact_ab1", - "contacts_600_property_hs_is_contact_ab2", - "contacts_600_property_hs_is_contact_ab3", - "contacts_606_property_hs___s_num_visits_ab1", - "contacts_606_property_hs___s_num_visits_ab2", - "contacts_606_property_hs___s_num_visits_ab3", - "contacts_606_property_hs_an__ics_num_visits", - "contacts_646_properties_versions", - "contacts_646_properties_versions_ab1", - "contacts_646_properties_versions_ab2", - "contacts_646_properties_versions_ab3", - "contacts_65f_property_hs_lead_status", - "contacts_65f_property_hs_lead_status_ab1", - "contacts_65f_property_hs_lead_status_ab2", - "contacts_65f_property_hs_lead_status_ab3", - "contacts_663_property_hs_ip_timezone", - "contacts_663_property_hs_ip_timezone_ab1", - "contacts_663_property_hs_ip_timezone_ab2", - "contacts_663_property_hs_ip_timezone_ab3", - "contacts_663_property_marital_status", - "contacts_663_property_marital_status_ab1", - "contacts_663_property_marital_status_ab2", - "contacts_663_property_marital_status_ab3", - "contacts_673_property_ass__tedcompanyid_ab1", - "contacts_673_property_ass__tedcompanyid_ab2", - "contacts_673_property_ass__tedcompanyid_ab3", - "contacts_673_property_associatedcompanyid", - "contacts_688_property_hs_all_team_ids", - "contacts_688_property_hs_all_team_ids_ab1", - "contacts_688_property_hs_all_team_ids_ab2", - "contacts_688_property_hs_all_team_ids_ab3", - "contacts_68d_property_hs___t_click_date_ab1", - "contacts_68d_property_hs___t_click_date_ab2", - "contacts_68d_property_hs___t_click_date_ab3", - "contacts_68d_property_hs_em__ast_click_date", - "contacts_690_property_hs_language", - "contacts_690_property_hs_language_ab1", - "contacts_690_property_hs_language_ab2", - "contacts_690_property_hs_language_ab3", - "contacts_6ee_property_hs___st_timestamp_ab1", - "contacts_6ee_property_hs___st_timestamp_ab2", - "contacts_6ee_property_hs___st_timestamp_ab3", - "contacts_6ee_property_hs_an__irst_timestamp", - "contacts_6f4_property_hs___tics_revenue_ab1", - "contacts_6f4_property_hs___tics_revenue_ab2", - "contacts_6f4_property_hs___tics_revenue_ab3", - "contacts_6f4_property_hs_analytics_revenue", - "contacts_6fa_property_hs_object_id", - "contacts_6fa_property_hs_object_id_ab1", - "contacts_6fa_property_hs_object_id_ab2", - "contacts_6fa_property_hs_object_id_ab3", - "contacts_6ff_property_hs___st_timestamp_ab1", - "contacts_6ff_property_hs___st_timestamp_ab2", - "contacts_6ff_property_hs___st_timestamp_ab3", - "contacts_6ff_property_hs_an__last_timestamp", - "contacts_713_property_fir__version_date_ab1", - "contacts_713_property_fir__version_date_ab2", - "contacts_713_property_fir__version_date_ab3", - "contacts_713_property_first_conversion_date", - "contacts_71c_property_not__last_updated_ab1", - "contacts_71c_property_not__last_updated_ab2", - "contacts_71c_property_not__last_updated_ab3", - "contacts_71c_property_notes_last_updated", - "contacts_744_property_company_size", - "contacts_744_property_company_size_ab1", - "contacts_744_property_company_size_ab2", - "contacts_744_property_company_size_ab3", - "contacts_759_property_hs___ource_data_1_ab1", - "contacts_759_property_hs___ource_data_1_ab2", - "contacts_759_property_hs___ource_data_1_ab3", - "contacts_759_property_hs_an___source_data_1", - "contacts_75f_property_hs___ngelist_date_ab1", - "contacts_75f_property_hs___ngelist_date_ab2", - "contacts_75f_property_hs___ngelist_date_ab3", - "contacts_75f_property_hs_li__vangelist_date", - "contacts_79b_property_mobilephone", - "contacts_79b_property_mobilephone_ab1", - "contacts_79b_property_mobilephone_ab2", - "contacts_79b_property_mobilephone_ab3", - "contacts_7aa_property_hs___f_all_owners_ab1", - "contacts_7aa_property_hs___f_all_owners_ab2", - "contacts_7aa_property_hs___f_all_owners_ab3", - "contacts_7aa_property_hs_us___of_all_owners", - "contacts_7b0_property_days_to_close", - "contacts_7b0_property_days_to_close_ab1", - "contacts_7b0_property_days_to_close_ab2", - "contacts_7b0_property_days_to_close_ab3", - "contacts_811_property_hs___ing_campaign_ab1", - "contacts_811_property_hs___ing_campaign_ab2", - "contacts_811_property_hs___ing_campaign_ab3", - "contacts_811_property_hs_an__rting_campaign", - "contacts_822_property_hs___t_email_name_ab1", - "contacts_822_property_hs___t_email_name_ab2", - "contacts_822_property_hs___t_email_name_ab3", - "contacts_822_property_hs_em__ast_email_name", - "contacts_86f_property_company", - "contacts_86f_property_company_ab1", - "contacts_86f_property_company_ab2", - "contacts_86f_property_company_ab3", - "contacts_886_property_hs___ble_team_ids_ab1", - "contacts_886_property_hs___ble_team_ids_ab2", - "contacts_886_property_hs___ble_team_ids_ab3", - "contacts_886_property_hs_al__sible_team_ids", - "contacts_893_property_message", - "contacts_893_property_message_ab1", - "contacts_893_property_message_ab2", - "contacts_893_property_message_ab3", - "contacts_8ae_property_gender", - "contacts_8ae_property_gender_ab1", - "contacts_8ae_property_gender_ab2", - "contacts_8ae_property_gender_ab3", - "contacts_8c7_property_num__tacted_notes_ab1", - "contacts_8c7_property_num__tacted_notes_ab2", - "contacts_8c7_property_num__tacted_notes_ab3", - "contacts_8c7_property_num_contacted_notes", - "contacts_8ca_property_total_revenue", - "contacts_8ca_property_total_revenue_ab1", - "contacts_8ca_property_total_revenue_ab2", - "contacts_8ca_property_total_revenue_ab3", - "contacts_8cb_property_hs___it_timestamp_ab1", - "contacts_8cb_property_hs___it_timestamp_ab2", - "contacts_8cb_property_hs___it_timestamp_ab3", - "contacts_8cb_property_hs_an__isit_timestamp", - "contacts_8cd_property_sur__tlastupdated_ab1", - "contacts_8cd_property_sur__tlastupdated_ab2", - "contacts_8cd_property_sur__tlastupdated_ab3", - "contacts_8cd_property_surve__entlastupdated", - "contacts_8ed_property_hs_all_owner_ids", - "contacts_8ed_property_hs_all_owner_ids_ab1", - "contacts_8ed_property_hs_all_owner_ids_ab2", - "contacts_8ed_property_hs_all_owner_ids_ab3", - "contacts_901_property_hs___mationstatus_ab1", - "contacts_901_property_hs___mationstatus_ab2", - "contacts_901_property_hs___mationstatus_ab3", - "contacts_901_property_hs_em__irmationstatus", - "contacts_936_property_hs___ounce_reason_ab1", - "contacts_936_property_hs___ounce_reason_ab2", - "contacts_936_property_hs___ounce_reason_ab3", - "contacts_936_property_hs_em___bounce_reason", - "contacts_938_property_hs___st_open_date_ab1", - "contacts_938_property_hs___st_open_date_ab2", - "contacts_938_property_hs___st_open_date_ab3", - "contacts_938_property_hs_em__irst_open_date", - "contacts_964_property_not__st_contacted_ab1", - "contacts_964_property_not__st_contacted_ab2", - "contacts_964_property_not__st_contacted_ab3", - "contacts_964_property_notes_last_contacted", - "contacts_982_form_submissions", - "contacts_982_form_submissions_ab1", - "contacts_982_form_submissions_ab2", - "contacts_982_form_submissions_ab3", - "contacts_98a_property_hs___ership_notes_ab1", - "contacts_98a_property_hs___ership_notes_ab2", - "contacts_98a_property_hs___ership_notes_ab3", - "contacts_98a_property_hs_co__mbership_notes", - "contacts_994_property_hs___ource_data_2_ab1", - "contacts_994_property_hs___ource_data_2_ab2", - "contacts_994_property_hs___ource_data_2_ab3", - "contacts_994_property_hs_an___source_data_2", - "contacts_99b_property_lastmodifieddate", - "contacts_99b_property_lastmodifieddate_ab1", - "contacts_99b_property_lastmodifieddate_ab2", - "contacts_99b_property_lastmodifieddate_ab3", - "contacts_9b0_property_hs___rship_status_ab1", - "contacts_9b0_property_hs___rship_status_ab2", - "contacts_9b0_property_hs___rship_status_ab3", - "contacts_9b0_property_hs_co__bership_status", - "contacts_9c3_property_hs___phone_number_ab1", - "contacts_9c3_property_hs___phone_number_ab2", - "contacts_9c3_property_hs___phone_number_ab3", - "contacts_9c3_property_hs_se__d_phone_number", - "contacts_9ca_property_ip_state_code", - "contacts_9ca_property_ip_state_code_ab1", - "contacts_9ca_property_ip_state_code_ab2", - "contacts_9ca_property_ip_state_code_ab3", - "contacts_9dd_property_hs_testrollback", - "contacts_9dd_property_hs_testrollback_ab1", - "contacts_9dd_property_hs_testrollback_ab2", - "contacts_9dd_property_hs_testrollback_ab3", - "contacts_9de_property_hs___t_click_date_ab1", - "contacts_9de_property_hs___t_click_date_ab2", - "contacts_9de_property_hs___t_click_date_ab3", - "contacts_9de_property_hs_em__rst_click_date", - "contacts_9fe_property_hs___onversations_ab1", - "contacts_9fe_property_hs___onversations_ab2", - "contacts_9fe_property_hs___onversations_ab3", - "contacts_9fe_property_hs_cr___conversations", - "contacts_a25_property_hs___ing_activity_ab1", - "contacts_a25_property_hs___ing_activity_ab2", - "contacts_a25_property_hs___ing_activity_ab3", - "contacts_a25_property_hs_la__eting_activity", - "contacts_a2f_property_hs____is_enrolled_ab1", - "contacts_a2f_property_hs____is_enrolled_ab2", - "contacts_a2f_property_hs____is_enrolled_ab3", - "contacts_a2f_property_hs_se__es_is_enrolled", - "contacts_a60_property_hs___ing_campaign_ab1", - "contacts_a60_property_hs___ing_campaign_ab2", - "contacts_a60_property_hs___ing_campaign_ab3", - "contacts_a60_property_hs_an__rting_campaign", - "contacts_a6f_property_fir__created_date_ab1", - "contacts_a6f_property_fir__created_date_ab2", - "contacts_a6f_property_fir__created_date_ab3", - "contacts_a6f_property_first__l_created_date", - "contacts_a76_property_field_of_study", - "contacts_a76_property_field_of_study_ab1", - "contacts_a76_property_field_of_study_ab2", - "contacts_a76_property_field_of_study_ab3", - "contacts_a85_property_hs___e_page_views_ab1", - "contacts_a85_property_hs___e_page_views_ab2", - "contacts_a85_property_hs___e_page_views_ab3", - "contacts_a85_property_hs_an__age_page_views", - "contacts_a92_property_hs___last_replied_ab1", - "contacts_a92_property_hs___last_replied_ab2", - "contacts_a92_property_hs___last_replied_ab3", - "contacts_a92_property_hs_sa__l_last_replied", - "contacts_a_027_hs_target_a__ation_state_ab1", - "contacts_a_027_hs_target_a__ation_state_ab2", - "contacts_a_027_hs_target_a__ation_state_ab3", - "contacts_a_027_hs_target_acc__ndation_state", - "contacts_a_04f_property_hs_num_blockers_ab1", - "contacts_a_04f_property_hs_num_blockers_ab2", - "contacts_a_04f_property_hs_num_blockers_ab3", - "contacts_a_05c_hubspot_own__ssigneddate_ab1", - "contacts_a_05c_hubspot_own__ssigneddate_ab2", - "contacts_a_05c_hubspot_own__ssigneddate_ab3", - "contacts_a_074_recent_conv__ue_66c820bf_ab1", - "contacts_a_074_recent_conv__ue_66c820bf_ab2", - "contacts_a_074_recent_conv__ue_66c820bf_ab3", - "contacts_a_074_recent_conver__alue_66c820bf", - "contacts_a_087_property_hs__odifieddate_ab1", - "contacts_a_087_property_hs__odifieddate_ab2", - "contacts_a_087_property_hs__odifieddate_ab3", - "contacts_a_087_property_hs_lastmodifieddate", - "contacts_a_089_property_hs__sion_makers_ab1", - "contacts_a_089_property_hs__sion_makers_ab2", - "contacts_a_089_property_hs__sion_makers_ab3", - "contacts_a_089_property_hs_n__cision_makers", - "contacts_a_09c_property_hs__nal_domains_ab1", - "contacts_a_09c_property_hs__nal_domains_ab2", - "contacts_a_09c_property_hs__nal_domains_ab3", - "contacts_a_09c_property_hs_a__ional_domains", - "contacts_a_0db_property_hs__t_timestamp_ab1", - "contacts_a_0db_property_hs__t_timestamp_ab2", - "contacts_a_0db_property_hs__t_timestamp_ab3", - "contacts_a_0db_property_hs_a__rst_timestamp", - "contacts_a_0fe_property_hs__ue_9b2f1fa1_ab1", - "contacts_a_0fe_property_hs__ue_9b2f1fa1_ab2", - "contacts_a_0fe_property_hs__ue_9b2f1fa1_ab3", - "contacts_a_0fe_property_hs_a__alue_9b2f1fa1", - "contacts_a_12c_property_fi__ue_61f58f2c_ab1", - "contacts_a_12c_property_fi__ue_61f58f2c_ab2", - "contacts_a_12c_property_fi__ue_61f58f2c_ab3", - "contacts_a_12c_property_firs__alue_61f58f2c", - "contacts_a_138_hs_user_ids___all_owners_ab1", - "contacts_a_138_hs_user_ids___all_owners_ab2", - "contacts_a_138_hs_user_ids___all_owners_ab3", - "contacts_a_147_property_no__tivity_date_ab1", - "contacts_a_147_property_no__tivity_date_ab2", - "contacts_a_147_property_no__tivity_date_ab3", - "contacts_a_147_property_note__activity_date", - "contacts_a_174_hs_last_sal__tivity_date_ab1", - "contacts_a_174_hs_last_sal__tivity_date_ab2", - "contacts_a_174_hs_last_sal__tivity_date_ab3", - "contacts_a_1bc_property_hs__n_task_date_ab1", - "contacts_a_1bc_property_hs__n_task_date_ab2", - "contacts_a_1bc_property_hs__n_task_date_ab3", - "contacts_a_1bc_property_hs_l__pen_task_date", - "contacts_a_1cb_property_en__ting_booked_ab1", - "contacts_a_1cb_property_en__ting_booked_ab2", - "contacts_a_1cb_property_en__ting_booked_ab3", - "contacts_a_1cb_property_enga__eeting_booked", - "contacts_a_1d9_property_hs___num_visits_ab1", - "contacts_a_1d9_property_hs___num_visits_ab2", - "contacts_a_1d9_property_hs___num_visits_ab3", - "contacts_a_1d9_property_hs_a__cs_num_visits", - "contacts_a_1e5_property_hs__d_call_date_ab1", - "contacts_a_1e5_property_hs__d_call_date_ab2", - "contacts_a_1e5_property_hs__d_call_date_ab3", - "contacts_a_1e5_property_hs_l__ged_call_date", - "contacts_a_1e6_property_fa__ompany_page_ab1", - "contacts_a_1e6_property_fa__ompany_page_ab2", - "contacts_a_1e6_property_fa__ompany_page_ab3", - "contacts_a_1e6_property_face___company_page", - "contacts_a_1f5_property_hs__ue_accc17ae_ab1", - "contacts_a_1f5_property_hs__ue_accc17ae_ab2", - "contacts_a_1f5_property_hs__ue_accc17ae_ab3", - "contacts_a_1f5_property_hs_a__alue_accc17ae", - "contacts_a_20d_hs_latest_m__ng_activity_ab1", - "contacts_a_20d_hs_latest_m__ng_activity_ab2", - "contacts_a_20d_hs_latest_m__ng_activity_ab3", - "contacts_a_246_property_cl__ue_a2a17e6e_ab1", - "contacts_a_246_property_cl__ue_a2a17e6e_ab2", - "contacts_a_246_property_cl__ue_a2a17e6e_ab3", - "contacts_a_246_property_clos__alue_a2a17e6e", - "contacts_a_24d_property_hs__tivity_date_ab1", - "contacts_a_24d_property_hs__tivity_date_ab2", - "contacts_a_24d_property_hs__tivity_date_ab3", - "contacts_a_24d_property_hs_l__activity_date", - "contacts_a_2bf_property_hs__um_53d952a6_ab1", - "contacts_a_2bf_property_hs__um_53d952a6_ab2", - "contacts_a_2bf_property_hs__um_53d952a6_ab3", - "contacts_a_2bf_property_hs_a___sum_53d952a6", - "contacts_a_2d0_hs_analytic__ue_4757fe10_ab1", - "contacts_a_2d0_hs_analytic__ue_4757fe10_ab2", - "contacts_a_2d0_hs_analytic__ue_4757fe10_ab3", - "contacts_a_2d0_hs_analytics___alue_4757fe10", - "contacts_a_300_property_hs__urce_data_1_ab1", - "contacts_a_300_property_hs__urce_data_1_ab2", - "contacts_a_300_property_hs__urce_data_1_ab3", - "contacts_a_300_property_hs_a__source_data_1", - "contacts_a_380_property_hs__ax_d4e58c1e_ab1", - "contacts_a_380_property_hs__ax_d4e58c1e_ab2", - "contacts_a_380_property_hs__ax_d4e58c1e_ab3", - "contacts_a_380_property_hs_p___max_d4e58c1e", - "contacts_a_3ae_hs_analytic__ng_campaign_ab1", - "contacts_a_3ae_hs_analytic__ng_campaign_ab2", - "contacts_a_3ae_hs_analytic__ng_campaign_ab3", - "contacts_a_3ae_hs_analytics___ting_campaign", - "contacts_a_3d7_property_nu__ed_contacts_ab1", - "contacts_a_3d7_property_nu__ed_contacts_ab2", - "contacts_a_3d7_property_nu__ed_contacts_ab3", - "contacts_a_3d7_property_num___ated_contacts", - "contacts_a_403_hs_analytic__ue_9b2f1fa1_ab1", - "contacts_a_403_hs_analytic__ue_9b2f1fa1_ab2", - "contacts_a_403_hs_analytic__ue_9b2f1fa1_ab3", - "contacts_a_403_hs_analytics___alue_9b2f1fa1", - "contacts_a_405_property_hs__ation_state_ab1", - "contacts_a_405_property_hs__ation_state_ab2", - "contacts_a_405_property_hs__ation_state_ab3", - "contacts_a_405_property_hs_t__ndation_state", - "contacts_a_44b_property_hs__mer_profile_ab1", - "contacts_a_44b_property_hs__mer_profile_ab2", - "contacts_a_44b_property_hs__mer_profile_ab3", - "contacts_a_44b_property_hs_i__tomer_profile", - "contacts_a_459_property_no__ast_updated_ab1", - "contacts_a_459_property_no__ast_updated_ab2", - "contacts_a_459_property_no__ast_updated_ab3", - "contacts_a_47a_property_en__oked_source_ab1", - "contacts_a_47a_property_en__oked_source_ab2", - "contacts_a_47a_property_en__oked_source_ab3", - "contacts_a_47a_property_enga__booked_source", - "contacts_a_4b1_first_contact_createdate_ab1", - "contacts_a_4b1_first_contact_createdate_ab2", - "contacts_a_4b1_first_contact_createdate_ab3", - "contacts_a_521_property_hs__probability_ab1", - "contacts_a_521_property_hs__probability_ab2", - "contacts_a_521_property_hs__probability_ab3", - "contacts_a_521_property_hs_t__t_probability", - "contacts_a_524_property_hs__ue_25a3a52c_ab1", - "contacts_a_524_property_hs__ue_25a3a52c_ab2", - "contacts_a_524_property_hs__ue_25a3a52c_ab3", - "contacts_a_524_property_hs_a__alue_25a3a52c", - "contacts_a_542_property_hs__get_account_ab1", - "contacts_a_542_property_hs__get_account_ab2", - "contacts_a_542_property_hs__get_account_ab3", - "contacts_a_554_property_fi__reated_date_ab1", - "contacts_a_554_property_fi__reated_date_ab2", - "contacts_a_554_property_fi__reated_date_ab3", - "contacts_a_554_property_firs___created_date", - "contacts_a_554_property_to__oney_raised_ab1", - "contacts_a_554_property_to__oney_raised_ab2", - "contacts_a_554_property_to__oney_raised_ab3", - "contacts_a_560_hs_analytic__ue_9b2f9400_ab1", - "contacts_a_560_hs_analytic__ue_9b2f9400_ab2", - "contacts_a_560_hs_analytic__ue_9b2f9400_ab3", - "contacts_a_560_hs_analytics___alue_9b2f9400", - "contacts_a_57a_hs_predicti__ax_d4e58c1e_ab1", - "contacts_a_57a_hs_predicti__ax_d4e58c1e_ab2", - "contacts_a_57a_hs_predicti__ax_d4e58c1e_ab3", - "contacts_a_57a_hs_predictive___max_d4e58c1e", - "contacts_a_57b_first_conve__ue_68ddae0a_ab1", - "contacts_a_57b_first_conve__ue_68ddae0a_ab2", - "contacts_a_57b_first_conve__ue_68ddae0a_ab3", - "contacts_a_57b_first_convers__alue_68ddae0a", - "contacts_a_582_property_hu__ssigneddate_ab1", - "contacts_a_582_property_hu__ssigneddate_ab2", - "contacts_a_582_property_hu__ssigneddate_ab3", - "contacts_a_582_property_hubs___assigneddate", - "contacts_a_59c_property_nu__um_d095f14b_ab1", - "contacts_a_59c_property_nu__um_d095f14b_ab2", - "contacts_a_59c_property_nu__um_d095f14b_ab3", - "contacts_a_59c_property_num____sum_d095f14b", - "contacts_a_5ac_hs_analytic__ue_999a0fce_ab1", - "contacts_a_5ac_hs_analytic__ue_999a0fce_ab2", - "contacts_a_5ac_hs_analytic__ue_999a0fce_ab3", - "contacts_a_5ac_hs_analytics___alue_999a0fce", - "contacts_a_5e3_property_hs__le_team_ids_ab1", - "contacts_a_5e3_property_hs__le_team_ids_ab2", - "contacts_a_5e3_property_hs__le_team_ids_ab3", - "contacts_a_5e3_property_hs_a__ible_team_ids", - "contacts_a_5e7_hs_analytic__ue_accc17ae_ab1", - "contacts_a_5e7_hs_analytic__ue_accc17ae_ab2", - "contacts_a_5e7_hs_analytic__ue_accc17ae_ab3", - "contacts_a_5e7_hs_analytics___alue_accc17ae", - "contacts_a_610_property_hs__t_timestamp_ab1", - "contacts_a_610_property_hs__t_timestamp_ab2", - "contacts_a_610_property_hs__t_timestamp_ab3", - "contacts_a_610_property_hs_a__sit_timestamp", - "contacts_a_615_property_hs__ue_4757fe10_ab1", - "contacts_a_615_property_hs__ue_4757fe10_ab2", - "contacts_a_615_property_hs__ue_4757fe10_ab3", - "contacts_a_615_property_hs_a__alue_4757fe10", - "contacts_a_622_property_hs__ng_campaign_ab1", - "contacts_a_622_property_hs__ng_campaign_ab2", - "contacts_a_622_property_hs__ng_campaign_ab3", - "contacts_a_622_property_hs_a__ting_campaign", - "contacts_a_633_property_hs__l_owner_ids_ab1", - "contacts_a_633_property_hs__l_owner_ids_ab2", - "contacts_a_633_property_hs__l_owner_ids_ab3", - "contacts_a_684_property_en__oked_medium_ab1", - "contacts_a_684_property_en__oked_medium_ab2", - "contacts_a_684_property_en__oked_medium_ab3", - "contacts_a_684_property_enga__booked_medium", - "contacts_a_6b4_property_nu__ofemployees_ab1", - "contacts_a_6b4_property_nu__ofemployees_ab2", - "contacts_a_6b4_property_nu__ofemployees_ab3", - "contacts_a_6c3_hs_analytic__ng_campaign_ab1", - "contacts_a_6c3_hs_analytic__ng_campaign_ab2", - "contacts_a_6c3_hs_analytic__ng_campaign_ab3", - "contacts_a_6c3_hs_analytics___ting_campaign", - "contacts_a_6db_property_hs__ue_4e16365a_ab1", - "contacts_a_6db_property_hs__ue_4e16365a_ab2", - "contacts_a_6db_property_hs__ue_4e16365a_ab3", - "contacts_a_6db_property_hs_a__alue_4e16365a", - "contacts_a_6ef_engagements__ting_booked_ab1", - "contacts_a_6ef_engagements__ting_booked_ab2", - "contacts_a_6ef_engagements__ting_booked_ab3", - "contacts_a_6ef_engagements_l__eeting_booked", - "contacts_a_70e_hs_analytic__t_timestamp_ab1", - "contacts_a_70e_hs_analytic__t_timestamp_ab2", - "contacts_a_70e_hs_analytic__t_timestamp_ab3", - "contacts_a_70e_hs_analytics___sit_timestamp", - "contacts_a_710_property_hs__get_account_ab1", - "contacts_a_710_property_hs__get_account_ab2", - "contacts_a_710_property_hs__get_account_ab3", - "contacts_a_710_property_hs_i__arget_account", - "contacts_a_71b_property_hs__d_companies_ab1", - "contacts_a_71b_property_hs__d_companies_ab2", - "contacts_a_71b_property_hs__d_companies_ab3", - "contacts_a_71b_property_hs_n__ild_companies", - "contacts_a_738_hs_all_acce__le_team_ids_ab1", - "contacts_a_738_hs_all_acce__le_team_ids_ab2", - "contacts_a_738_hs_all_acce__le_team_ids_ab3", - "contacts_a_772_property_hs__ng_campaign_ab1", - "contacts_a_772_property_hs__ng_campaign_ab2", - "contacts_a_772_property_hs__ng_campaign_ab3", - "contacts_a_772_property_hs_a__ting_campaign", - "contacts_a_785_hs_sales_em__ast_replied_ab1", - "contacts_a_785_hs_sales_em__ast_replied_ab2", - "contacts_a_785_hs_sales_em__ast_replied_ab3", - "contacts_a_79b_property_no__t_contacted_ab1", - "contacts_a_79b_property_no__t_contacted_ab2", - "contacts_a_79b_property_no__t_contacted_ab3", - "contacts_a_79b_property_note__ast_contacted", - "contacts_a_7e5_recent_conv__ue_72856da1_ab1", - "contacts_a_7e5_recent_conv__ue_72856da1_ab2", - "contacts_a_7e5_recent_conv__ue_72856da1_ab3", - "contacts_a_7e5_recent_conver__alue_72856da1", - "contacts_a_801_property_fi___createdate_ab1", - "contacts_a_801_property_fi___createdate_ab2", - "contacts_a_801_property_fi___createdate_ab3", - "contacts_a_801_property_firs__ct_createdate", - "contacts_a_810_property_hs___by_user_id_ab1", - "contacts_a_810_property_hs___by_user_id_ab2", - "contacts_a_810_property_hs___by_user_id_ab3", - "contacts_a_810_property_hs_u__ed_by_user_id", - "contacts_a_818_hs_analytic__t_timestamp_ab1", - "contacts_a_818_hs_analytic__t_timestamp_ab2", - "contacts_a_818_hs_analytic__t_timestamp_ab3", - "contacts_a_818_hs_analytics_first_timestamp", - "contacts_a_85e_hs_analytic__urce_data_1_ab1", - "contacts_a_85e_hs_analytic__urce_data_1_ab2", - "contacts_a_85e_hs_analytic__urce_data_1_ab3", - "contacts_a_869_hs_ideal_cu__mer_profile_ab1", - "contacts_a_869_hs_ideal_cu__mer_profile_ab2", - "contacts_a_869_hs_ideal_cu__mer_profile_ab3", - "contacts_a_86d_property_tw__erfollowers_ab1", - "contacts_a_86d_property_tw__erfollowers_ab2", - "contacts_a_86d_property_tw__erfollowers_ab3", - "contacts_a_87a_num_convers__um_d095f14b_ab1", - "contacts_a_87a_num_convers__um_d095f14b_ab2", - "contacts_a_87a_num_convers__um_d095f14b_ab3", - "contacts_a_87a_num_conversio___sum_d095f14b", - "contacts_a_883_first_conve__ue_61f58f2c_ab1", - "contacts_a_883_first_conve__ue_61f58f2c_ab2", - "contacts_a_883_first_conve__ue_61f58f2c_ab3", - "contacts_a_883_first_convers__alue_61f58f2c", - "contacts_a_899_property_hs__um_e46e85b0_ab1", - "contacts_a_899_property_hs__um_e46e85b0_ab2", - "contacts_a_899_property_hs__um_e46e85b0_ab3", - "contacts_a_899_property_hs_a___sum_e46e85b0", - "contacts_a_8cf_hs_analytic__ue_81a64e30_ab1", - "contacts_a_8cf_hs_analytic__ue_81a64e30_ab2", - "contacts_a_8cf_hs_analytic__ue_81a64e30_ab3", - "contacts_a_8cf_hs_analytics___alue_81a64e30", - "contacts_a_8e9_property_hubspot_team_id_ab1", - "contacts_a_8e9_property_hubspot_team_id_ab2", - "contacts_a_8e9_property_hubspot_team_id_ab3", - "contacts_a_924_property_hs__eeting_date_ab1", - "contacts_a_924_property_hs__eeting_date_ab2", - "contacts_a_924_property_hs__eeting_date_ab3", - "contacts_a_924_property_hs_l___meeting_date", - "contacts_a_937_closedate_t__ue_a2a17e6e_ab1", - "contacts_a_937_closedate_t__ue_a2a17e6e_ab2", - "contacts_a_937_closedate_t__ue_a2a17e6e_ab3", - "contacts_a_937_closedate_tim__alue_a2a17e6e", - "contacts_a_93b_property_hs__ng_activity_ab1", - "contacts_a_93b_property_hs__ng_activity_ab2", - "contacts_a_93b_property_hs__ng_activity_ab3", - "contacts_a_93b_property_hs_l__ting_activity", - "contacts_a_973_property_hs__ue_999a0fce_ab1", - "contacts_a_973_property_hs__ue_999a0fce_ab2", - "contacts_a_973_property_hs__ue_999a0fce_ab3", - "contacts_a_973_property_hs_a__alue_999a0fce", - "contacts_a_98c_property_hs__ue_81a64e30_ab1", - "contacts_a_98c_property_hs__ue_81a64e30_ab2", - "contacts_a_98c_property_hs__ue_81a64e30_ab3", - "contacts_a_98c_property_hs_a__alue_81a64e30", - "contacts_a_9a4_property_hs__t_timestamp_ab1", - "contacts_a_9a4_property_hs__t_timestamp_ab2", - "contacts_a_9a4_property_hs__t_timestamp_ab3", - "contacts_a_9a4_property_hs_a__sit_timestamp", - "contacts_a_9b2_property_we__echnologies_ab1", - "contacts_a_9b2_property_we__echnologies_ab2", - "contacts_a_9b2_property_we__echnologies_ab3", - "contacts_a_9b7_property_hs___by_user_id_ab1", - "contacts_a_9b7_property_hs___by_user_id_ab2", - "contacts_a_9b7_property_hs___by_user_id_ab3", - "contacts_a_9b7_property_hs_c__ed_by_user_id", - "contacts_a_9d3_property_nu__iated_deals_ab1", - "contacts_a_9d3_property_nu__iated_deals_ab2", - "contacts_a_9d3_property_nu__iated_deals_ab3", - "contacts_a_9d3_property_num___ociated_deals", - "contacts_a_9d6_hs_target_a__snooze_time_ab1", - "contacts_a_9d6_hs_target_a__snooze_time_ab2", - "contacts_a_9d6_hs_target_a__snooze_time_ab3", - "contacts_a_9d6_hs_target_acc__n_snooze_time", - "contacts_a_9da_hs_last_logged_call_date_ab1", - "contacts_a_9da_hs_last_logged_call_date_ab2", - "contacts_a_9da_hs_last_logged_call_date_ab3", - "contacts_a_a94_property_hs___deal_value_ab1", - "contacts_a_a94_property_hs___deal_value_ab2", - "contacts_a_a94_property_hs___deal_value_ab3", - "contacts_a_a94_property_hs_total_deal_value", - "contacts_a_b06_property_hs___object_ids_ab1", - "contacts_a_b06_property_hs___object_ids_ab2", - "contacts_a_b06_property_hs___object_ids_ab3", - "contacts_a_b06_property_hs_m__ed_object_ids", - "contacts_a_b4e_hs_last_boo__eeting_date_ab1", - "contacts_a_b4e_hs_last_boo__eeting_date_ab2", - "contacts_a_b4e_hs_last_boo__eeting_date_ab3", - "contacts_a_b80_property_re___close_date_ab1", - "contacts_a_b80_property_re___close_date_ab2", - "contacts_a_b80_property_re___close_date_ab3", - "contacts_a_b80_property_rece__al_close_date", - "contacts_a_bb4_property_nu__acted_notes_ab1", - "contacts_a_bb4_property_nu__acted_notes_ab2", - "contacts_a_bb4_property_nu__acted_notes_ab3", - "contacts_a_bb4_property_num_contacted_notes", - "contacts_a_bd1_property_hs__snooze_time_ab1", - "contacts_a_bd1_property_hs__snooze_time_ab2", - "contacts_a_bd1_property_hs__snooze_time_ab3", - "contacts_a_bd1_property_hs_t__n_snooze_time", - "contacts_a_be9_hs_analytic__urce_data_2_ab1", - "contacts_a_be9_hs_analytic__urce_data_2_ab2", - "contacts_a_be9_hs_analytic__urce_data_2_ab3", - "contacts_a_bf1_hs_analytic__ue_4e16365a_ab1", - "contacts_a_bf1_hs_analytic__ue_4e16365a_ab2", - "contacts_a_bf1_hs_analytic__ue_4e16365a_ab3", - "contacts_a_bf1_hs_analytics___alue_4e16365a", - "contacts_a_c3b_property_hs__ast_replied_ab1", - "contacts_a_c3b_property_hs__ast_replied_ab2", - "contacts_a_c3b_property_hs__ast_replied_ab3", - "contacts_a_c3b_property_hs_s___last_replied", - "contacts_a_c70_hs_target_a__probability_ab1", - "contacts_a_c70_hs_target_a__probability_ab2", - "contacts_a_c70_hs_target_a__probability_ab3", - "contacts_a_c70_hs_target_acc__t_probability", - "contacts_a_c7d_property_hs___all_owners_ab1", - "contacts_a_c7d_property_hs___all_owners_ab2", - "contacts_a_c7d_property_hs___all_owners_ab3", - "contacts_a_c7d_property_hs_u__of_all_owners", - "contacts_a_ca1_property_li__ompany_page_ab1", - "contacts_a_ca1_property_li__ompany_page_ab2", - "contacts_a_ca1_property_li__ompany_page_ab3", - "contacts_a_ca1_property_link___company_page", - "contacts_a_cd0_hs_analytic__ue_11e3a63a_ab1", - "contacts_a_cd0_hs_analytic__ue_11e3a63a_ab2", - "contacts_a_cd0_hs_analytic__ue_11e3a63a_ab3", - "contacts_a_cd0_hs_analytics___alue_11e3a63a", - "contacts_a_cd8_property_hs__ue_11e3a63a_ab1", - "contacts_a_cd8_property_hs__ue_11e3a63a_ab2", - "contacts_a_cd8_property_hs__ue_11e3a63a_ab3", - "contacts_a_cd8_property_hs_a__alue_11e3a63a", - "contacts_a_cf9_engagements__oked_medium_ab1", - "contacts_a_cf9_engagements__oked_medium_ab2", - "contacts_a_cf9_engagements__oked_medium_ab3", - "contacts_a_cf9_engagements_l__booked_medium", - "contacts_a_cfe_first_conta__ue_78b50eea_ab1", - "contacts_a_cfe_first_conta__ue_78b50eea_ab2", - "contacts_a_cfe_first_conta__ue_78b50eea_ab3", - "contacts_a_cfe_first_contact__alue_78b50eea", - "contacts_a_d03_property_hs__ue_9b2f9400_ab1", - "contacts_a_d03_property_hs__ue_9b2f9400_ab2", - "contacts_a_d03_property_hs__ue_9b2f9400_ab3", - "contacts_a_d03_property_hs_a__alue_9b2f9400", - "contacts_a_d32_hs_analytic__um_e46e85b0_ab1", - "contacts_a_d32_hs_analytic__um_e46e85b0_ab2", - "contacts_a_d32_hs_analytic__um_e46e85b0_ab3", - "contacts_a_d32_hs_analytics____sum_e46e85b0", - "contacts_a_d56_property_re__ue_66c820bf_ab1", - "contacts_a_d56_property_re__ue_66c820bf_ab2", - "contacts_a_d56_property_re__ue_66c820bf_ab3", - "contacts_a_d56_property_rece__alue_66c820bf", - "contacts_a_d5a_hs_analytic___page_views_ab1", - "contacts_a_d5a_hs_analytic___page_views_ab2", - "contacts_a_d5a_hs_analytic___page_views_ab3", - "contacts_a_d97_hs_analytic__um_53d952a6_ab1", - "contacts_a_d97_hs_analytic__um_53d952a6_ab2", - "contacts_a_d97_hs_analytic__um_53d952a6_ab3", - "contacts_a_d97_hs_analytics____sum_53d952a6", - "contacts_a_da3_property_hu__ot_owner_id_ab1", - "contacts_a_da3_property_hu__ot_owner_id_ab2", - "contacts_a_da3_property_hu__ot_owner_id_ab3", - "contacts_a_db2_hs_avatar_f__manager_key_ab1", - "contacts_a_db2_hs_avatar_f__manager_key_ab2", - "contacts_a_db2_hs_avatar_f__manager_key_ab3", - "contacts_a_e17_property_hs__manager_key_ab1", - "contacts_a_e17_property_hs__manager_key_ab2", - "contacts_a_e17_property_hs__manager_key_ab3", - "contacts_a_e17_property_hs_a__lemanager_key", - "contacts_a_e1e_property_en__ed_campaign_ab1", - "contacts_a_e1e_property_en__ed_campaign_ab2", - "contacts_a_e1e_property_en__ed_campaign_ab3", - "contacts_a_e1e_property_enga__oked_campaign", - "contacts_a_e1f_property_hs_all_team_ids_ab1", - "contacts_a_e1f_property_hs_all_team_ids_ab2", - "contacts_a_e1f_property_hs_all_team_ids_ab3", - "contacts_a_e23_hs_num_cont__uying_roles_ab1", - "contacts_a_e23_hs_num_cont__uying_roles_ab2", - "contacts_a_e23_hs_num_cont__uying_roles_ab3", - "contacts_a_e23_hs_num_contac___buying_roles", - "contacts_a_e2c_property_re__ue_72856da1_ab1", - "contacts_a_e2c_property_re__ue_72856da1_ab2", - "contacts_a_e2c_property_re__ue_72856da1_ab3", - "contacts_a_e2c_property_rece__alue_72856da1", - "contacts_a_e56_property_hs__urce_data_2_ab1", - "contacts_a_e56_property_hs__urce_data_2_ab2", - "contacts_a_e56_property_hs__urce_data_2_ab3", - "contacts_a_e56_property_hs_a__source_data_2", - "contacts_a_e59_property_fi__ue_78b50eea_ab1", - "contacts_a_e59_property_fi__ue_78b50eea_ab2", - "contacts_a_e59_property_fi__ue_78b50eea_ab3", - "contacts_a_e59_property_firs__alue_78b50eea", - "contacts_a_e81_property_hs__y_timestamp_ab1", - "contacts_a_e81_property_hs__y_timestamp_ab2", - "contacts_a_e81_property_hs__y_timestamp_ab3", - "contacts_a_e81_property_hs_l__ity_timestamp", - "contacts_a_e8e_hs_analytic__t_timestamp_ab1", - "contacts_a_e8e_hs_analytic__t_timestamp_ab2", - "contacts_a_e8e_hs_analytic__t_timestamp_ab3", - "contacts_a_e8e_hs_analytics___sit_timestamp", - "contacts_a_e8e_property_googleplus_page_ab1", - "contacts_a_e8e_property_googleplus_page_ab2", - "contacts_a_e8e_property_googleplus_page_ab3", - "contacts_a_ea6_engagements__oked_source_ab1", - "contacts_a_ea6_engagements__oked_source_ab2", - "contacts_a_ea6_engagements__oked_source_ab3", - "contacts_a_ea6_engagements_l__booked_source", - "contacts_a_ed6_property_hs___page_views_ab1", - "contacts_a_ed6_property_hs___page_views_ab2", - "contacts_a_ed6_property_hs___page_views_ab3", - "contacts_a_ed6_property_hs_a__um_page_views", - "contacts_a_eec_property_hs__tics_source_ab1", - "contacts_a_eec_property_hs__tics_source_ab2", - "contacts_a_eec_property_hs__tics_source_ab3", - "contacts_a_eec_property_hs_analytics_source", - "contacts_a_eef_engagements__ed_campaign_ab1", - "contacts_a_eef_engagements__ed_campaign_ab2", - "contacts_a_eef_engagements__ed_campaign_ab3", - "contacts_a_eef_engagements_l__oked_campaign", - "contacts_a_f00_hs_analytic__t_timestamp_ab1", - "contacts_a_f00_hs_analytic__t_timestamp_ab2", - "contacts_a_f00_hs_analytic__t_timestamp_ab3", - "contacts_a_f09_property_re__deal_amount_ab1", - "contacts_a_f09_property_re__deal_amount_ab2", - "contacts_a_f09_property_re__deal_amount_ab3", - "contacts_a_f1e_property_hs___company_id_ab1", - "contacts_a_f1e_property_hs___company_id_ab2", - "contacts_a_f1e_property_hs___company_id_ab3", - "contacts_a_f1e_property_hs_p__nt_company_id", - "contacts_a_f65_property_hs__uying_roles_ab1", - "contacts_a_f65_property_hs__uying_roles_ab2", - "contacts_a_f65_property_hs__uying_roles_ab3", - "contacts_a_f65_property_hs_n___buying_roles", - "contacts_a_f6b_hs_last_sal__y_timestamp_ab1", - "contacts_a_f6b_hs_last_sal__y_timestamp_ab2", - "contacts_a_f6b_hs_last_sal__y_timestamp_ab3", - "contacts_a_f6b_hs_last_sales__ity_timestamp", - "contacts_a_f7b_notes_next_activity_date_ab1", - "contacts_a_f7b_notes_next_activity_date_ab2", - "contacts_a_f7b_notes_next_activity_date_ab3", - "contacts_a_f7c_hs_analytic__ue_25a3a52c_ab1", - "contacts_a_f7c_hs_analytic__ue_25a3a52c_ab2", - "contacts_a_f7c_hs_analytic__ue_25a3a52c_ab3", - "contacts_a_f7c_hs_analytics___alue_25a3a52c", - "contacts_a_f7f_property_hs___open_deals_ab1", - "contacts_a_f7f_property_hs___open_deals_ab2", - "contacts_a_f7f_property_hs___open_deals_ab3", - "contacts_a_fc8_property_fi__ue_68ddae0a_ab1", - "contacts_a_fc8_property_fi__ue_68ddae0a_ab2", - "contacts_a_fc8_property_fi__ue_68ddae0a_ab3", - "contacts_a_fc8_property_firs__alue_68ddae0a", - "contacts_a_ff0_property_hs__t_timestamp_ab1", - "contacts_a_ff0_property_hs__t_timestamp_ab2", - "contacts_a_ff0_property_hs__t_timestamp_ab3", - "contacts_a_ff0_property_hs_a__ast_timestamp", - "contacts_aa6_property_hs___it_timestamp_ab1", - "contacts_aa6_property_hs___it_timestamp_ab2", - "contacts_aa6_property_hs___it_timestamp_ab3", - "contacts_aa6_property_hs_an__isit_timestamp", - "contacts_aa8_property_hub__assigneddate_ab1", - "contacts_aa8_property_hub__assigneddate_ab2", - "contacts_aa8_property_hub__assigneddate_ab3", - "contacts_aa8_property_hubsp__r_assigneddate", - "contacts_ab7_property_ip_state", - "contacts_ab7_property_ip_state_ab1", - "contacts_ab7_property_ip_state_ab2", - "contacts_ab7_property_ip_state_ab3", - "contacts_ac7_property_hs___t_engagement_ab1", - "contacts_ac7_property_hs___t_engagement_ab2", - "contacts_ac7_property_hs___t_engagement_ab3", - "contacts_ac7_property_hs_em__ast_engagement", - "contacts_ac8_property_ip_city", - "contacts_ac8_property_ip_city_ab1", - "contacts_ac8_property_ip_city_ab2", - "contacts_ac8_property_ip_city_ab3", - "contacts_aff_property_rec__l_close_date_ab1", - "contacts_aff_property_rec__l_close_date_ab2", - "contacts_aff_property_rec__l_close_date_ab3", - "contacts_aff_property_recen__eal_close_date", - "contacts_as_087_num_associated_contacts_ab1", - "contacts_as_087_num_associated_contacts_ab2", - "contacts_as_087_num_associated_contacts_ab3", - "contacts_as_16f_property_hs_lead_status_ab1", - "contacts_as_16f_property_hs_lead_status_ab2", - "contacts_as_16f_property_hs_lead_status_ab3", - "contacts_as_174_hs_last_sales_activity_date", - "contacts_as_2b8_first_deal_created_date_ab1", - "contacts_as_2b8_first_deal_created_date_ab2", - "contacts_as_2b8_first_deal_created_date_ab3", - "contacts_as_459_property_notes_last_updated", - "contacts_as_554_property_total_money_raised", - "contacts_as_685_hs_analytics_num_visits_ab1", - "contacts_as_685_hs_analytics_num_visits_ab2", - "contacts_as_685_hs_analytics_num_visits_ab3", - "contacts_as_785_hs_sales_email_last_replied", - "contacts_as_804_property_lifecyclestage_ab1", - "contacts_as_804_property_lifecyclestage_ab2", - "contacts_as_804_property_lifecyclestage_ab3", - "contacts_as_b4e_hs_last_booked_meeting_date", - "contacts_as_d5a_hs_analytics_num_page_views", - "contacts_as_f00_hs_analytics_last_timestamp", - "contacts_as_f09_property_recent_deal_amount", - "contacts_ass_05c_hubspot_owner_assigneddate", - "contacts_ass_19c_recent_deal_close_date_ab1", - "contacts_ass_19c_recent_deal_close_date_ab2", - "contacts_ass_19c_recent_deal_close_date_ab3", - "contacts_ass_20d_hs_latest_meeting_activity", - "contacts_ass_2b8_hs_num_child_companies_ab1", - "contacts_ass_2b8_hs_num_child_companies_ab2", - "contacts_ass_2b8_hs_num_child_companies_ab3", - "contacts_ass_51e_property_days_to_close_ab1", - "contacts_ass_51e_property_days_to_close_ab2", - "contacts_ass_51e_property_days_to_close_ab3", - "contacts_ass_542_property_hs_target_account", - "contacts_ass_6b4_property_numberofemployees", - "contacts_ass_738_hs_all_accessible_team_ids", - "contacts_ass_792_property_hs_createdate_ab1", - "contacts_ass_792_property_hs_createdate_ab2", - "contacts_ass_792_property_hs_createdate_ab3", - "contacts_ass_7bd_property_twitterhandle_ab1", - "contacts_ass_7bd_property_twitterhandle_ab2", - "contacts_ass_7bd_property_twitterhandle_ab3", - "contacts_ass_85e_hs_analytics_source_data_1", - "contacts_ass_946_hs_last_open_task_date_ab1", - "contacts_ass_946_hs_last_open_task_date_ab2", - "contacts_ass_946_hs_last_open_task_date_ab3", - "contacts_ass_a22_property_annualrevenue_ab1", - "contacts_ass_a22_property_annualrevenue_ab2", - "contacts_ass_a22_property_annualrevenue_ab3", - "contacts_ass_abc_property_total_revenue_ab1", - "contacts_ass_abc_property_total_revenue_ab2", - "contacts_ass_abc_property_total_revenue_ab3", - "contacts_ass_be9_hs_analytics_source_data_2", - "contacts_ass_d43_hs_num_decision_makers_ab1", - "contacts_ass_d43_hs_num_decision_makers_ab2", - "contacts_ass_d43_hs_num_decision_makers_ab3", - "contacts_ass_f7f_property_hs_num_open_deals", - "contacts_asso_05d_property_hs_object_id_ab1", - "contacts_asso_05d_property_hs_object_id_ab2", - "contacts_asso_05d_property_hs_object_id_ab3", - "contacts_asso_0df_hs_created_by_user_id_ab1", - "contacts_asso_0df_hs_created_by_user_id_ab2", - "contacts_asso_0df_hs_created_by_user_id_ab3", - "contacts_asso_138_hs_user_ids_of_all_owners", - "contacts_asso_411_hs_additional_domains_ab1", - "contacts_asso_411_hs_additional_domains_ab2", - "contacts_asso_411_hs_additional_domains_ab3", - "contacts_asso_633_property_hs_all_owner_ids", - "contacts_asso_7d9_property_facebookfans_ab1", - "contacts_asso_7d9_property_facebookfans_ab2", - "contacts_asso_7d9_property_facebookfans_ab3", - "contacts_asso_869_hs_ideal_customer_profile", - "contacts_asso_86c_hs_updated_by_user_id_ab1", - "contacts_asso_86c_hs_updated_by_user_id_ab2", - "contacts_asso_86c_hs_updated_by_user_id_ab3", - "contacts_asso_86d_property_twitterfollowers", - "contacts_asso_9b2_property_web_technologies", - "contacts_asso_9bf_linkedin_company_page_ab1", - "contacts_asso_9bf_linkedin_company_page_ab2", - "contacts_asso_9bf_linkedin_company_page_ab3", - "contacts_asso_a73_facebook_company_page_ab1", - "contacts_asso_a73_facebook_company_page_ab2", - "contacts_asso_a73_facebook_company_page_ab3", - "contacts_asso_d47_property_founded_year_ab1", - "contacts_asso_d47_property_founded_year_ab2", - "contacts_asso_d47_property_founded_year_ab3", - "contacts_asso_da3_property_hubspot_owner_id", - "contacts_asso_db2_hs_avatar_filemanager_key", - "contacts_assoc_04f_property_hs_num_blockers", - "contacts_assoc_107_property_linkedinbio_ab1", - "contacts_assoc_107_property_linkedinbio_ab2", - "contacts_assoc_107_property_linkedinbio_ab3", - "contacts_assoc_283_property_description_ab1", - "contacts_assoc_283_property_description_ab2", - "contacts_assoc_283_property_description_ab3", - "contacts_assoc_4b1_first_contact_createdate", - "contacts_assoc_719_num_associated_deals_ab1", - "contacts_assoc_719_num_associated_deals_ab2", - "contacts_assoc_719_num_associated_deals_ab3", - "contacts_assoc_80f_notes_last_contacted_ab1", - "contacts_assoc_80f_notes_last_contacted_ab2", - "contacts_assoc_80f_notes_last_contacted_ab3", - "contacts_assoc_8e9_property_hubspot_team_id", - "contacts_assoc_953_hs_merged_object_ids_ab1", - "contacts_assoc_953_hs_merged_object_ids_ab2", - "contacts_assoc_953_hs_merged_object_ids_ab3", - "contacts_assoc_9da_hs_last_logged_call_date", - "contacts_assoc_c38_hs_is_target_account_ab1", - "contacts_assoc_c38_hs_is_target_account_ab2", - "contacts_assoc_c38_hs_is_target_account_ab3", - "contacts_assoc_e1f_property_hs_all_team_ids", - "contacts_assoc_e8e_property_googleplus_page", - "contacts_assoc_edd_hs_parent_company_id_ab1", - "contacts_assoc_edd_hs_parent_company_id_ab2", - "contacts_assoc_edd_hs_parent_company_id_ab3", - "contacts_assoc_f7b_notes_next_activity_date", - "contacts_associ_087_num_associated_contacts", - "contacts_associ_16f_property_hs_lead_status", - "contacts_associ_2b8_first_deal_created_date", - "contacts_associ_3aa_property_createdate_ab1", - "contacts_associ_3aa_property_createdate_ab2", - "contacts_associ_3aa_property_createdate_ab3", - "contacts_associ_447_hs_lastmodifieddate_ab1", - "contacts_associ_447_hs_lastmodifieddate_ab2", - "contacts_associ_447_hs_lastmodifieddate_ab3", - "contacts_associ_57d_hs_total_deal_value_ab1", - "contacts_associ_57d_hs_total_deal_value_ab2", - "contacts_associ_57d_hs_total_deal_value_ab3", - "contacts_associ_5e6_properties_versions_ab1", - "contacts_associ_5e6_properties_versions_ab2", - "contacts_associ_5e6_properties_versions_ab3", - "contacts_associ_685_hs_analytics_num_visits", - "contacts_associ_804_property_lifecyclestage", - "contacts_associ_81d_num_contacted_notes_ab1", - "contacts_associ_81d_num_contacted_notes_ab2", - "contacts_associ_81d_num_contacted_notes_ab3", - "contacts_associ_d05_property_twitterbio_ab1", - "contacts_associ_d05_property_twitterbio_ab2", - "contacts_associ_d05_property_twitterbio_ab3", - "contacts_associ_d1f_hs_analytics_source_ab1", - "contacts_associ_d1f_hs_analytics_source_ab2", - "contacts_associ_d1f_hs_analytics_source_ab3", - "contacts_associa_006_property_num_notes_ab1", - "contacts_associa_006_property_num_notes_ab2", - "contacts_associa_006_property_num_notes_ab3", - "contacts_associa_041_property_is_public_ab1", - "contacts_associa_041_property_is_public_ab2", - "contacts_associa_041_property_is_public_ab3", - "contacts_associa_19c_recent_deal_close_date", - "contacts_associa_211_property_closedate_ab1", - "contacts_associa_211_property_closedate_ab2", - "contacts_associa_211_property_closedate_ab3", - "contacts_associa_2b8_hs_num_child_companies", - "contacts_associa_46a_total_money_raised_ab1", - "contacts_associa_46a_total_money_raised_ab2", - "contacts_associa_46a_total_money_raised_ab3", - "contacts_associa_51e_property_days_to_close", - "contacts_associa_792_property_hs_createdate", - "contacts_associa_7bd_property_twitterhandle", - "contacts_associa_946_hs_last_open_task_date", - "contacts_associa_a22_property_annualrevenue", - "contacts_associa_abc_property_total_revenue", - "contacts_associa_d43_hs_num_decision_makers", - "contacts_associa_f64_recent_deal_amount_ab1", - "contacts_associa_f64_recent_deal_amount_ab2", - "contacts_associa_f64_recent_deal_amount_ab3", - "contacts_associa_fc9_notes_last_updated_ab1", - "contacts_associa_fc9_notes_last_updated_ab2", - "contacts_associa_fc9_notes_last_updated_ab3", - "contacts_associat_05d_property_hs_object_id", - "contacts_associat_0df_hs_created_by_user_id", - "contacts_associat_411_hs_additional_domains", - "contacts_associat_621_property_address2_ab1", - "contacts_associat_621_property_address2_ab2", - "contacts_associat_621_property_address2_ab3", - "contacts_associat_6d9_numberofemployees_ab1", - "contacts_associat_6d9_numberofemployees_ab2", - "contacts_associat_6d9_numberofemployees_ab3", - "contacts_associat_7d9_property_facebookfans", - "contacts_associat_86c_hs_updated_by_user_id", - "contacts_associat_872_property_industry_ab1", - "contacts_associat_872_property_industry_ab2", - "contacts_associat_872_property_industry_ab3", - "contacts_associat_9bf_linkedin_company_page", - "contacts_associat_a35_property_timezone_ab1", - "contacts_associat_a35_property_timezone_ab2", - "contacts_associat_a35_property_timezone_ab3", - "contacts_associat_a73_facebook_company_page", - "contacts_associat_bc4_hs_target_account_ab1", - "contacts_associat_bc4_hs_target_account_ab2", - "contacts_associat_bc4_hs_target_account_ab3", - "contacts_associat_d47_property_founded_year", - "contacts_associat_e2c_property_about_us_ab1", - "contacts_associat_e2c_property_about_us_ab2", - "contacts_associat_e2c_property_about_us_ab3", - "contacts_associat_f5e_hs_num_open_deals_ab1", - "contacts_associat_f5e_hs_num_open_deals_ab2", - "contacts_associat_f5e_hs_num_open_deals_ab3", - "contacts_associate_107_property_linkedinbio", - "contacts_associate_171_property_address_ab1", - "contacts_associate_171_property_address_ab2", - "contacts_associate_171_property_address_ab3", - "contacts_associate_283_property_description", - "contacts_associate_719_num_associated_deals", - "contacts_associate_76b_web_technologies_ab1", - "contacts_associate_76b_web_technologies_ab2", - "contacts_associate_76b_web_technologies_ab3", - "contacts_associate_80f_notes_last_contacted", - "contacts_associate_882_hubspot_owner_id_ab1", - "contacts_associate_882_hubspot_owner_id_ab2", - "contacts_associate_882_hubspot_owner_id_ab3", - "contacts_associate_953_hs_merged_object_ids", - "contacts_associate_a2f_hs_all_owner_ids_ab1", - "contacts_associate_a2f_hs_all_owner_ids_ab2", - "contacts_associate_a2f_hs_all_owner_ids_ab3", - "contacts_associate_a63_property_website_ab1", - "contacts_associate_a63_property_website_ab2", - "contacts_associate_a63_property_website_ab3", - "contacts_associate_ae9_property_country_ab1", - "contacts_associate_ae9_property_country_ab2", - "contacts_associate_ae9_property_country_ab3", - "contacts_associate_c38_hs_is_target_account", - "contacts_associate_d24_twitterfollowers_ab1", - "contacts_associate_d24_twitterfollowers_ab2", - "contacts_associate_d24_twitterfollowers_ab3", - "contacts_associate_edd_hs_parent_company_id", - "contacts_associated_1e1_hs_all_team_ids_ab1", - "contacts_associated_1e1_hs_all_team_ids_ab2", - "contacts_associated_1e1_hs_all_team_ids_ab3", - "contacts_associated_2cc_property_domain_ab1", - "contacts_associated_2cc_property_domain_ab2", - "contacts_associated_2cc_property_domain_ab3", - "contacts_associated_3aa_property_createdate", - "contacts_associated_447_hs_lastmodifieddate", - "contacts_associated_57d_hs_total_deal_value", - "contacts_associated_5e6_properties_versions", - "contacts_associated_810_googleplus_page_ab1", - "contacts_associated_810_googleplus_page_ab2", - "contacts_associated_810_googleplus_page_ab3", - "contacts_associated_81d_num_contacted_notes", - "contacts_associated__006_property_num_notes", - "contacts_associated__041_property_is_public", - "contacts_associated__211_property_closedate", - "contacts_associated__457_property_state_ab1", - "contacts_associated__457_property_state_ab2", - "contacts_associated__457_property_state_ab3", - "contacts_associated__46a_total_money_raised", - "contacts_associated__883_property_phone_ab1", - "contacts_associated__883_property_phone_ab2", - "contacts_associated__883_property_phone_ab3", - "contacts_associated__a64_lifecyclestage_ab1", - "contacts_associated__a64_lifecyclestage_ab2", - "contacts_associated__a64_lifecyclestage_ab3", - "contacts_associated__f4f_hs_lead_status_ab1", - "contacts_associated__f4f_hs_lead_status_ab2", - "contacts_associated__f4f_hs_lead_status_ab3", - "contacts_associated__f64_recent_deal_amount", - "contacts_associated__fc9_notes_last_updated", - "contacts_associated_bc9_hs_num_blockers_ab1", - "contacts_associated_bc9_hs_num_blockers_ab2", - "contacts_associated_bc9_hs_num_blockers_ab3", - "contacts_associated_c_129_hs_createdate_ab1", - "contacts_associated_c_129_hs_createdate_ab2", - "contacts_associated_c_129_hs_createdate_ab3", - "contacts_associated_c_14a_days_to_close_ab1", - "contacts_associated_c_14a_days_to_close_ab2", - "contacts_associated_c_14a_days_to_close_ab3", - "contacts_associated_c_290_total_revenue_ab1", - "contacts_associated_c_290_total_revenue_ab2", - "contacts_associated_c_290_total_revenue_ab3", - "contacts_associated_c_51f_twitterhandle_ab1", - "contacts_associated_c_51f_twitterhandle_ab2", - "contacts_associated_c_51f_twitterhandle_ab3", - "contacts_associated_c_541_annualrevenue_ab1", - "contacts_associated_c_541_annualrevenue_ab2", - "contacts_associated_c_541_annualrevenue_ab3", - "contacts_associated_c_621_property_address2", - "contacts_associated_c_6d9_numberofemployees", - "contacts_associated_c_872_property_industry", - "contacts_associated_c_a35_property_timezone", - "contacts_associated_c_bc4_hs_target_account", - "contacts_associated_c_c5f_property_type_ab1", - "contacts_associated_c_c5f_property_type_ab2", - "contacts_associated_c_c5f_property_type_ab3", - "contacts_associated_c_e2c_property_about_us", - "contacts_associated_c_ed5_property_city_ab1", - "contacts_associated_c_ed5_property_city_ab2", - "contacts_associated_c_ed5_property_city_ab3", - "contacts_associated_c_eed_property_name_ab1", - "contacts_associated_c_eed_property_name_ab2", - "contacts_associated_c_eed_property_name_ab3", - "contacts_associated_c_f5e_hs_num_open_deals", - "contacts_associated_co_171_property_address", - "contacts_associated_co_533_facebookfans_ab1", - "contacts_associated_co_533_facebookfans_ab2", - "contacts_associated_co_533_facebookfans_ab3", - "contacts_associated_co_76b_web_technologies", - "contacts_associated_co_79e_hs_object_id_ab1", - "contacts_associated_co_79e_hs_object_id_ab2", - "contacts_associated_co_79e_hs_object_id_ab3", - "contacts_associated_co_882_hubspot_owner_id", - "contacts_associated_co_8ef_property_zip_ab1", - "contacts_associated_co_8ef_property_zip_ab2", - "contacts_associated_co_8ef_property_zip_ab3", - "contacts_associated_co_a2f_hs_all_owner_ids", - "contacts_associated_co_a63_property_website", - "contacts_associated_co_aa0_founded_year_ab1", - "contacts_associated_co_aa0_founded_year_ab2", - "contacts_associated_co_aa0_founded_year_ab3", - "contacts_associated_co_ae9_property_country", - "contacts_associated_co_d24_twitterfollowers", - "contacts_associated_com_0ab_linkedinbio_ab1", - "contacts_associated_com_0ab_linkedinbio_ab2", - "contacts_associated_com_0ab_linkedinbio_ab3", - "contacts_associated_com_1e1_hs_all_team_ids", - "contacts_associated_com_2cc_property_domain", - "contacts_associated_com_810_googleplus_page", - "contacts_associated_com_8b4_description_ab1", - "contacts_associated_com_8b4_description_ab2", - "contacts_associated_com_8b4_description_ab3", - "contacts_associated_com_bc9_hs_num_blockers", - "contacts_associated_com_d52_hubspot_team_id", - "contacts_associated_comp_060_createdate_ab1", - "contacts_associated_comp_060_createdate_ab2", - "contacts_associated_comp_060_createdate_ab3", - "contacts_associated_comp_457_property_state", - "contacts_associated_comp_883_property_phone", - "contacts_associated_comp_a64_lifecyclestage", - "contacts_associated_comp_bcb_twitterbio_ab1", - "contacts_associated_comp_bcb_twitterbio_ab2", - "contacts_associated_comp_bcb_twitterbio_ab3", - "contacts_associated_comp_beb_properties_ab1", - "contacts_associated_comp_beb_properties_ab2", - "contacts_associated_comp_beb_properties_ab3", - "contacts_associated_comp_f4f_hs_lead_status", - "contacts_associated_compa_129_hs_createdate", - "contacts_associated_compa_14a_days_to_close", - "contacts_associated_compa_1a0_num_notes_ab1", - "contacts_associated_compa_1a0_num_notes_ab2", - "contacts_associated_compa_1a0_num_notes_ab3", - "contacts_associated_compa_290_total_revenue", - "contacts_associated_compa_51f_twitterhandle", - "contacts_associated_compa_541_annualrevenue", - "contacts_associated_compa_c5f_property_type", - "contacts_associated_compa_d9f_is_public_ab1", - "contacts_associated_compa_d9f_is_public_ab2", - "contacts_associated_compa_d9f_is_public_ab3", - "contacts_associated_compa_dbb_closedate_ab1", - "contacts_associated_compa_dbb_closedate_ab2", - "contacts_associated_compa_dbb_closedate_ab3", - "contacts_associated_compa_ed5_property_city", - "contacts_associated_compa_eed_property_name", - "contacts_associated_compan_01f_industry_ab1", - "contacts_associated_compan_01f_industry_ab2", - "contacts_associated_compan_01f_industry_ab3", - "contacts_associated_compan_152_about_us_ab1", - "contacts_associated_compan_152_about_us_ab2", - "contacts_associated_compan_152_about_us_ab3", - "contacts_associated_compan_15c_timezone_ab1", - "contacts_associated_compan_15c_timezone_ab2", - "contacts_associated_compan_15c_timezone_ab3", - "contacts_associated_compan_533_facebookfans", - "contacts_associated_compan_79e_hs_object_id", - "contacts_associated_compan_839_address2_ab1", - "contacts_associated_compan_839_address2_ab2", - "contacts_associated_compan_839_address2_ab3", - "contacts_associated_compan_8ef_property_zip", - "contacts_associated_compan_aa0_founded_year", - "contacts_associated_company_0ab_linkedinbio", - "contacts_associated_company_123_country_ab1", - "contacts_associated_company_123_country_ab2", - "contacts_associated_company_123_country_ab3", - "contacts_associated_company_82e_address_ab1", - "contacts_associated_company_82e_address_ab2", - "contacts_associated_company_82e_address_ab3", - "contacts_associated_company_8b4_description", - "contacts_associated_company__060_createdate", - "contacts_associated_company__acd_domain_ab1", - "contacts_associated_company__acd_domain_ab2", - "contacts_associated_company__acd_domain_ab3", - "contacts_associated_company__bcb_twitterbio", - "contacts_associated_company_beb_properties", - "contacts_associated_company_f57_website_ab1", - "contacts_associated_company_f57_website_ab2", - "contacts_associated_company_f57_website_ab3", - "contacts_associated_company_p_102_phone_ab1", - "contacts_associated_company_p_102_phone_ab2", - "contacts_associated_company_p_102_phone_ab3", - "contacts_associated_company_p_1a0_num_notes", - "contacts_associated_company_p_93c_state_ab1", - "contacts_associated_company_p_93c_state_ab2", - "contacts_associated_company_p_93c_state_ab3", - "contacts_associated_company_p_d9f_is_public", - "contacts_associated_company_p_dbb_closedate", - "contacts_associated_company_pr_01f_industry", - "contacts_associated_company_pr_152_about_us", - "contacts_associated_company_pr_15c_timezone", - "contacts_associated_company_pr_839_address2", - "contacts_associated_company_pr_91f_city_ab1", - "contacts_associated_company_pr_91f_city_ab2", - "contacts_associated_company_pr_91f_city_ab3", - "contacts_associated_company_pr_bf0_name_ab1", - "contacts_associated_company_pr_bf0_name_ab2", - "contacts_associated_company_pr_bf0_name_ab3", - "contacts_associated_company_pr_fb2_type_ab1", - "contacts_associated_company_pr_fb2_type_ab2", - "contacts_associated_company_pr_fb2_type_ab3", - "contacts_associated_company_pro_123_country", - "contacts_associated_company_pro_5fe_zip_ab1", - "contacts_associated_company_pro_5fe_zip_ab2", - "contacts_associated_company_pro_5fe_zip_ab3", - "contacts_associated_company_pro_82e_address", - "contacts_associated_company_pro_f57_website", - "contacts_associated_company_prop_acd_domain", - "contacts_associated_company_prope_102_phone", - "contacts_associated_company_prope_93c_state", - "contacts_associated_company_proper_91f_city", - "contacts_associated_company_proper_bf0_name", - "contacts_associated_company_proper_fb2_type", - "contacts_associated_company_propert_5fe_zip", - "contacts_associated_d05_property_twitterbio", - "contacts_associated_d1f_hs_analytics_source", - "contacts_associated_d52_hubspot_team_id_ab1", - "contacts_associated_d52_hubspot_team_id_ab2", - "contacts_associated_d52_hubspot_team_id_ab3", - "contacts_b1e_associated_company", - "contacts_b1e_associated_company_ab1", - "contacts_b1e_associated_company_ab2", - "contacts_b1e_associated_company_ab3", - "contacts_b3f_property_hs___st_revisited_ab1", - "contacts_b3f_property_hs___st_revisited_ab2", - "contacts_b3f_property_hs___st_revisited_ab3", - "contacts_b3f_property_hs_do__last_revisited", - "contacts_b44_property_hs___ast_referrer_ab1", - "contacts_b44_property_hs___ast_referrer_ab2", - "contacts_b44_property_hs___ast_referrer_ab3", - "contacts_b44_property_hs_an___last_referrer", - "contacts_b51_property_hs___nt_is_worked_ab1", - "contacts_b51_property_hs___nt_is_worked_ab2", - "contacts_b51_property_hs___nt_is_worked_ab3", - "contacts_b51_property_hs_count_is_worked", - "contacts_b64_property_hs___s_ineligible_ab1", - "contacts_b64_property_hs___s_ineligible_ab2", - "contacts_b64_property_hs___s_ineligible_ab3", - "contacts_b64_property_hs_em___is_ineligible", - "contacts_b95_property_hs___ustomer_date_ab1", - "contacts_b95_property_hs___ustomer_date_ab2", - "contacts_b95_property_hs___ustomer_date_ab3", - "contacts_b95_property_hs_li___customer_date", - "contacts_b9b_property_rel__nship_status_ab1", - "contacts_b9b_property_rel__nship_status_ab2", - "contacts_b9b_property_rel__nship_status_ab3", - "contacts_b9b_property_relationship_status", - "contacts_ba6_property_state", - "contacts_ba6_property_state_ab1", - "contacts_ba6_property_state_ab2", - "contacts_ba6_property_state_ab3", - "contacts_bbd_property_hs___obile_number_ab1", - "contacts_bbd_property_hs___obile_number_ab2", - "contacts_bbd_property_hs___obile_number_ab3", - "contacts_bbd_property_hs_ca___mobile_number", - "contacts_bd7_property_hs___obile_number_ab1", - "contacts_bd7_property_hs___obile_number_ab2", - "contacts_bd7_property_hs___obile_number_ab3", - "contacts_bd7_property_hs_se___mobile_number", - "contacts_c07_property_hs___tined_reason_ab1", - "contacts_c07_property_hs___tined_reason_ab2", - "contacts_c07_property_hs___tined_reason_ab3", - "contacts_c07_property_hs_em__antined_reason", - "contacts_c20_property_hs___d_by_user_id_ab1", - "contacts_c20_property_hs___d_by_user_id_ab2", - "contacts_c20_property_hs___d_by_user_id_ab3", - "contacts_c20_property_hs_updated_by_user_id", - "contacts_c35_property_job_function", - "contacts_c35_property_job_function_ab1", - "contacts_c35_property_job_function_ab2", - "contacts_c35_property_job_function_ab3", - "contacts_c44_property_hs___obile_number_ab1", - "contacts_c44_property_hs___obile_number_ab2", - "contacts_c44_property_hs___obile_number_ab3", - "contacts_c44_property_hs_se___mobile_number", - "contacts_c4b_property_hubspot_team_id", - "contacts_c4b_property_hubspot_team_id_ab1", - "contacts_c4b_property_hubspot_team_id_ab2", - "contacts_c4b_property_hubspot_team_id_ab3", - "contacts_c7a_property_hs___iedlead_date_ab1", - "contacts_c7a_property_hs___iedlead_date_ab2", - "contacts_c7a_property_hs___iedlead_date_ab3", - "contacts_c7a_property_hs_li__ifiedlead_date", - "contacts_c86_property_hs___gement_descr_ab1", - "contacts_c86_property_hs___gement_descr_ab2", - "contacts_c86_property_hs___gement_descr_ab3", - "contacts_c86_property_hs_sa__gagement_descr", - "contacts_cae_property_hs___e_other_date_ab1", - "contacts_cae_property_hs___e_other_date_ab2", - "contacts_cae_property_hs___e_other_date_ab3", - "contacts_cae_property_hs_li__age_other_date", - "contacts_cb8_property_ip_zipcode", - "contacts_cb8_property_ip_zipcode_ab1", - "contacts_cb8_property_ip_zipcode_ab2", - "contacts_cb8_property_ip_zipcode_ab3", - "contacts_cc5_property_hs___isitor_email_ab1", - "contacts_cc5_property_hs___isitor_email_ab2", - "contacts_cc5_property_hs___isitor_email_ab3", - "contacts_cc5_property_hs_co___visitor_email", - "contacts_cd3_property_hs___iedlead_date_ab1", - "contacts_cd3_property_hs___iedlead_date_ab2", - "contacts_cd3_property_hs___iedlead_date_ab3", - "contacts_cd3_property_hs_li__ifiedlead_date", - "contacts_cf0_property_phone", - "contacts_cf0_property_phone_ab1", - "contacts_cf0_property_phone_ab2", - "contacts_cf0_property_phone_ab3", - "contacts_d19_property_hs___egistered_at_ab1", - "contacts_d19_property_hs___egistered_at_ab2", - "contacts_d19_property_hs___egistered_at_ab3", - "contacts_d19_property_hs_co___registered_at", - "contacts_d3d_property_hs___phone_number_ab1", - "contacts_d3d_property_hs___phone_number_ab2", - "contacts_d3d_property_hs___phone_number_ab3", - "contacts_d3d_property_hs_se__l_phone_number", - "contacts_d49_property_numemployees", - "contacts_d49_property_numemployees_ab1", - "contacts_d49_property_numemployees_ab2", - "contacts_d49_property_numemployees_ab3", - "contacts_dc5_property_ip_country", - "contacts_dc5_property_ip_country_ab1", - "contacts_dc5_property_ip_country_ab2", - "contacts_dc5_property_ip_country_ab3", - "contacts_dd2_property_hs____is_unworked_ab1", - "contacts_dd2_property_hs____is_unworked_ab2", - "contacts_dd2_property_hs____is_unworked_ab3", - "contacts_dd2_property_hs_count_is_unworked", - "contacts_ddf_property_eng__ooked_source_ab1", - "contacts_ddf_property_eng__ooked_source_ab2", - "contacts_ddf_property_eng__ooked_source_ab3", - "contacts_ddf_property_engag___booked_source", - "contacts_def_property_jobtitle", - "contacts_def_property_jobtitle_ab1", - "contacts_def_property_jobtitle_ab2", - "contacts_def_property_jobtitle_ab3", - "contacts_df1_property_hs_createdate", - "contacts_df1_property_hs_createdate_ab1", - "contacts_df1_property_hs_createdate_ab2", - "contacts_df1_property_hs_createdate_ab3", - "contacts_e1b_property_eng__ooked_medium_ab1", - "contacts_e1b_property_eng__ooked_medium_ab2", - "contacts_e1b_property_eng__ooked_medium_ab3", - "contacts_e1b_property_engag___booked_medium", - "contacts_e23_property_degree", - "contacts_e23_property_degree_ab1", - "contacts_e23_property_degree_ab2", - "contacts_e23_property_degree_ab3", - "contacts_e37_property_lifecyclestage", - "contacts_e37_property_lifecyclestage_ab1", - "contacts_e37_property_lifecyclestage_ab2", - "contacts_e37_property_lifecyclestage_ab3", - "contacts_e5f_property_createdate", - "contacts_e5f_property_createdate_ab1", - "contacts_e5f_property_createdate_ab2", - "contacts_e5f_property_createdate_ab3", - "contacts_e81_property_rec__n_event_name_ab1", - "contacts_e81_property_rec__n_event_name_ab2", - "contacts_e81_property_rec__n_event_name_ab3", - "contacts_e81_property_recen__ion_event_name", - "contacts_ea2_property_hs___er_area_code_ab1", - "contacts_ea2_property_hs___er_area_code_ab2", - "contacts_ea2_property_hs___er_area_code_ab3", - "contacts_ea2_property_hs_ca__mber_area_code", - "contacts_eab_property_hs___agement_date_ab1", - "contacts_eab_property_hs___agement_date_ab2", - "contacts_eab_property_hs___agement_date_ab3", - "contacts_eab_property_hs_sa__ngagement_date", - "contacts_eb1_property_hs___gle_click_id_ab1", - "contacts_eb1_property_hs___gle_click_id_ab2", - "contacts_eb1_property_hs___gle_click_id_ab3", - "contacts_eb1_property_hs_google_click_id", - "contacts_ec0_property_hs___ics_last_url_ab1", - "contacts_ec0_property_hs___ics_last_url_ab2", - "contacts_ec0_property_hs___ics_last_url_ab3", - "contacts_ec0_property_hs_analytics_last_url", - "contacts_ed3_property_date_of_birth", - "contacts_ed3_property_date_of_birth_ab1", - "contacts_ed3_property_date_of_birth_ab2", - "contacts_ed3_property_date_of_birth_ab3", - "contacts_eda_property_hs____reason_enum_ab1", - "contacts_eda_property_hs____reason_enum_ab2", - "contacts_eda_property_hs____reason_enum_ab3", - "contacts_eda_property_hs_em__ce_reason_enum", - "contacts_eec_property_hs____region_code_ab1", - "contacts_eec_property_hs____region_code_ab2", - "contacts_eec_property_hs____region_code_ab3", - "contacts_eec_property_hs_ca__er_region_code", - "contacts_f0b_property_hs___nt_object_id_ab1", - "contacts_f0b_property_hs___nt_object_id_ab2", - "contacts_f0b_property_hs___nt_object_id_ab3", - "contacts_f0b_property_hs_fi__ment_object_id", - "contacts_f27_property_hs___ytics_source_ab1", - "contacts_f27_property_hs___ytics_source_ab2", - "contacts_f27_property_hs___ytics_source_ab3", - "contacts_f27_property_hs_analytics_source", - "contacts_fa8_property_graduation_date", - "contacts_fa8_property_graduation_date_ab1", - "contacts_fa8_property_graduation_date_ab2", - "contacts_fa8_property_graduation_date_ab3", - "contacts_fa8_property_ip_latlon", - "contacts_fa8_property_ip_latlon_ab1", - "contacts_fa8_property_ip_latlon_ab2", - "contacts_fa8_property_ip_latlon_ab3", - "contacts_fab_property_hs_persona", - "contacts_fab_property_hs_persona_ab1", - "contacts_fab_property_hs_persona_ab2", - "contacts_fab_property_hs_persona_ab3", - "contacts_fc3_property_hs___rtunity_date_ab1", - "contacts_fc3_property_hs___rtunity_date_ab2", - "contacts_fc3_property_hs___rtunity_date_ab3", - "contacts_fc3_property_hs_li__portunity_date", - "contacts_fd5_property_hs____quarantined_ab1", - "contacts_fd5_property_hs____quarantined_ab2", - "contacts_fd5_property_hs____quarantined_ab3", - "contacts_fd5_property_hs_email_quarantined", - "contacts_fdc_property_hubspotscore", - "contacts_fdc_property_hubspotscore_ab1", - "contacts_fdc_property_hubspotscore_ab2", - "contacts_fdc_property_hubspotscore_ab3", - "contacts_fea_identity_profiles", - "contacts_fea_identity_profiles_ab1", - "contacts_fea_identity_profiles_ab2", - "contacts_fea_identity_profiles_ab3", - "contacts_ff7_property_hs___cs_first_url_ab1", - "contacts_ff7_property_hs___cs_first_url_ab2", - "contacts_ff7_property_hs___cs_first_url_ab3", - "contacts_ff7_property_hs_an__tics_first_url", - "contacts_identity_profil_767_identities_ab1", - "contacts_identity_profil_767_identities_ab2", - "contacts_identity_profil_767_identities_ab3", - "contacts_identity_profiles_767_identities", - "contacts_merge_au_361_merged_from_email_ab1", - "contacts_merge_au_361_merged_from_email_ab2", - "contacts_merge_au_361_merged_from_email_ab3", - "contacts_merge_audi_3c4_merged_to_email_ab1", - "contacts_merge_audi_3c4_merged_to_email_ab2", - "contacts_merge_audi_3c4_merged_to_email_ab3", - "contacts_merge_audits_361_merged_from_email", - "contacts_merge_audits_3c4_merged_to_email", - "contacts_p_02e_hs_last_sal__y_timestamp_ab1", - "contacts_p_02e_hs_last_sal__y_timestamp_ab2", - "contacts_p_02e_hs_last_sal__y_timestamp_ab3", - "contacts_p_02e_hs_last_sales__ity_timestamp", - "contacts_p_03c_hs_email_se___engagement_ab1", - "contacts_p_03c_hs_email_se___engagement_ab2", - "contacts_p_03c_hs_email_se___engagement_ab3", - "contacts_p_03c_hs_email_send__st_engagement", - "contacts_p_046_hs_lifecycl___other_date_ab1", - "contacts_p_046_hs_lifecycl___other_date_ab2", - "contacts_p_046_hs_lifecycl___other_date_ab3", - "contacts_p_046_hs_lifecyclestage_other_date", - "contacts_p_04b_engagements__ed_campaign_ab1", - "contacts_p_04b_engagements__ed_campaign_ab2", - "contacts_p_04b_engagements__ed_campaign_ab3", - "contacts_p_04b_engagements_l__oked_campaign", - "contacts_p_0a7_hs_sa_first__gement_date_ab1", - "contacts_p_0a7_hs_sa_first__gement_date_ab2", - "contacts_p_0a7_hs_sa_first__gement_date_ab3", - "contacts_p_0d3_hs_lifecycl__e_lead_date_ab1", - "contacts_p_0d3_hs_lifecycl__e_lead_date_ab2", - "contacts_p_0d3_hs_lifecycl__e_lead_date_ab3", - "contacts_p_0e1_hs_analytic__st_referrer_ab1", - "contacts_p_0e1_hs_analytic__st_referrer_ab2", - "contacts_p_0e1_hs_analytic__st_referrer_ab3", - "contacts_p_0ee_num_unique___sion_events_ab1", - "contacts_p_0ee_num_unique___sion_events_ab2", - "contacts_p_0ee_num_unique___sion_events_ab3", - "contacts_p_0ee_num_unique_conversion_events", - "contacts_p_11b_hs_content___l_confirmed_ab1", - "contacts_p_11b_hs_content___l_confirmed_ab2", - "contacts_p_11b_hs_content___l_confirmed_ab3", - "contacts_p_11b_hs_content_me__ail_confirmed", - "contacts_p_131_hs_analytic___page_views_ab1", - "contacts_p_131_hs_analytic___page_views_ab2", - "contacts_p_131_hs_analytic___page_views_ab3", - "contacts_p_131_hs_analytics___ge_page_views", - "contacts_p_13c_hs_searchab__bile_number_ab1", - "contacts_p_13c_hs_searchab__bile_number_ab2", - "contacts_p_13c_hs_searchab__bile_number_ab3", - "contacts_p_13c_hs_searchable__mobile_number", - "contacts_p_188_recent_conv___event_name_ab1", - "contacts_p_188_recent_conv___event_name_ab2", - "contacts_p_188_recent_conv___event_name_ab3", - "contacts_p_188_recent_conversion_event_name", - "contacts_p_193_hs_lifecycl__gelist_date_ab1", - "contacts_p_193_hs_lifecycl__gelist_date_ab2", - "contacts_p_193_hs_lifecycl__gelist_date_ab3", - "contacts_p_193_hs_lifecycles__angelist_date", - "contacts_p_1ae_hs_email_qu__ined_reason_ab1", - "contacts_p_1ae_hs_email_qu__ined_reason_ab2", - "contacts_p_1ae_hs_email_qu__ined_reason_ab3", - "contacts_p_1d8_surveymonke__lastupdated_ab1", - "contacts_p_1d8_surveymonke__lastupdated_ab2", - "contacts_p_1d8_surveymonke__lastupdated_ab3", - "contacts_p_1d8_surveymonkeyeventlastupdated", - "contacts_p_1f3_hs_content___ail_sent_at_ab1", - "contacts_p_1f3_hs_content___ail_sent_at_ab2", - "contacts_p_1f3_hs_content___ail_sent_at_ab3", - "contacts_p_1f3_hs_content_me__email_sent_at", - "contacts_p_242_hs_email_fi___click_date_ab1", - "contacts_p_242_hs_email_fi___click_date_ab2", - "contacts_p_242_hs_email_fi___click_date_ab3", - "contacts_p_2ec_hs_searchab__hone_number_ab1", - "contacts_p_2ec_hs_searchab__hone_number_ab2", - "contacts_p_2ec_hs_searchab__hone_number_ab3", - "contacts_p_2ec_hs_searchable___phone_number", - "contacts_p_2f8_hs_conversa__sitor_email_ab1", - "contacts_p_2f8_hs_conversa__sitor_email_ab2", - "contacts_p_2f8_hs_conversa__sitor_email_ab3", - "contacts_p_2f8_hs_conversati__visitor_email", - "contacts_p_378_notes_next_activity_date_ab1", - "contacts_p_378_notes_next_activity_date_ab2", - "contacts_p_378_notes_next_activity_date_ab3", - "contacts_p_388_hs_analytic__st_referrer_ab1", - "contacts_p_388_hs_analytic__st_referrer_ab2", - "contacts_p_388_hs_analytic__st_referrer_ab3", - "contacts_p_3a1_hs_analytic__t_timestamp_ab1", - "contacts_p_3a1_hs_analytic__t_timestamp_ab2", - "contacts_p_3a1_hs_analytic__t_timestamp_ab3", - "contacts_p_3a1_hs_analytics_first_timestamp", - "contacts_p_3e9_hs_document__t_revisited_ab1", - "contacts_p_3e9_hs_document__t_revisited_ab2", - "contacts_p_3e9_hs_document__t_revisited_ab3", - "contacts_p_409_associatedc__lastupdated_ab1", - "contacts_p_409_associatedc__lastupdated_ab2", - "contacts_p_409_associatedc__lastupdated_ab3", - "contacts_p_409_associatedcompanylastupdated", - "contacts_p_429_engagements__oked_medium_ab1", - "contacts_p_429_engagements__oked_medium_ab2", - "contacts_p_429_engagements__oked_medium_ab3", - "contacts_p_429_engagements_l__booked_medium", - "contacts_p_42b_hs_email_ha__reason_enum_ab1", - "contacts_p_42b_hs_email_ha__reason_enum_ab2", - "contacts_p_42b_hs_email_ha__reason_enum_ab3", - "contacts_p_42b_hs_email_hard__e_reason_enum", - "contacts_p_467_hs_analytic__t_timestamp_ab1", - "contacts_p_467_hs_analytic__t_timestamp_ab2", - "contacts_p_467_hs_analytic__t_timestamp_ab3", - "contacts_p_467_hs_analytics___sit_timestamp", - "contacts_p_472_hs_time_to____engagement_ab1", - "contacts_p_472_hs_time_to____engagement_ab2", - "contacts_p_472_hs_time_to____engagement_ab3", - "contacts_p_562_hs_email_first_send_date_ab1", - "contacts_p_562_hs_email_first_send_date_ab2", - "contacts_p_562_hs_email_first_send_date_ab3", - "contacts_p_56f_first_conve___event_name_ab1", - "contacts_p_56f_first_conve___event_name_ab2", - "contacts_p_56f_first_conve___event_name_ab3", - "contacts_p_5ac_hs_calculat__hone_number_ab1", - "contacts_p_5ac_hs_calculat__hone_number_ab2", - "contacts_p_5ac_hs_calculat__hone_number_ab3", - "contacts_p_5b2_hs_analytic__ng_campaign_ab1", - "contacts_p_5b2_hs_analytic__ng_campaign_ab2", - "contacts_p_5b2_hs_analytic__ng_campaign_ab3", - "contacts_p_5b2_hs_analytics___ting_campaign", - "contacts_p_5c3_engagements__ting_booked_ab1", - "contacts_p_5c3_engagements__ting_booked_ab2", - "contacts_p_5c3_engagements__ting_booked_ab3", - "contacts_p_5c3_engagements_l__eeting_booked", - "contacts_p_5e2_hs_calculat__r_area_code_ab1", - "contacts_p_5e2_hs_calculat__r_area_code_ab2", - "contacts_p_5e2_hs_calculat__r_area_code_ab3", - "contacts_p_5e2_hs_calculated__ber_area_code", - "contacts_p_5fd_hs_sales_em__ast_replied_ab1", - "contacts_p_5fd_hs_sales_em__ast_replied_ab2", - "contacts_p_5fd_hs_sales_em__ast_replied_ab3", - "contacts_p_619_hs_sa_first__object_type_ab1", - "contacts_p_619_hs_sa_first__object_type_ab2", - "contacts_p_619_hs_sa_first__object_type_ab3", - "contacts_p_619_hs_sa_first_e__t_object_type", - "contacts_p_621_hs_content___ship_status_ab1", - "contacts_p_621_hs_content___ship_status_ab2", - "contacts_p_621_hs_content___ship_status_ab3", - "contacts_p_621_hs_content_membership_status", - "contacts_p_632_hs_content___ain_sent_to_ab1", - "contacts_p_632_hs_content___ain_sent_to_ab2", - "contacts_p_632_hs_content___ain_sent_to_ab3", - "contacts_p_632_hs_content_me__omain_sent_to", - "contacts_p_716_hs_sa_first__ement_descr_ab1", - "contacts_p_716_hs_sa_first__ement_descr_ab2", - "contacts_p_716_hs_sa_first__ement_descr_ab3", - "contacts_p_716_hs_sa_first_engagement_descr", - "contacts_p_732_hubspot_own__ssigneddate_ab1", - "contacts_p_732_hubspot_own__ssigneddate_ab2", - "contacts_p_732_hubspot_own__ssigneddate_ab3", - "contacts_p_753_hs_analytic__urce_data_1_ab1", - "contacts_p_753_hs_analytic__urce_data_1_ab2", - "contacts_p_753_hs_analytic__urce_data_1_ab3", - "contacts_p_7b1_hs_analytic___page_views_ab1", - "contacts_p_7b1_hs_analytic___page_views_ab2", - "contacts_p_7b1_hs_analytic___page_views_ab3", - "contacts_p_7d5_hs_searchab__bile_number_ab1", - "contacts_p_7d5_hs_searchab__bile_number_ab2", - "contacts_p_7d5_hs_searchab__bile_number_ab3", - "contacts_p_7d5_hs_searchable__mobile_number", - "contacts_p_803_hs_lifecycl__edlead_date_ab1", - "contacts_p_803_hs_lifecycl__edlead_date_ab2", - "contacts_p_803_hs_lifecycl__edlead_date_ab3", - "contacts_p_803_hs_lifecycles__fiedlead_date", - "contacts_p_82a_hs_email_last_email_name_ab1", - "contacts_p_82a_hs_email_last_email_name_ab2", - "contacts_p_82a_hs_email_last_email_name_ab3", - "contacts_p_915_hs_email_first_open_date_ab1", - "contacts_p_915_hs_email_first_open_date_ab2", - "contacts_p_915_hs_email_first_open_date_ab3", - "contacts_p_933_hs_sequences_is_enrolled_ab1", - "contacts_p_933_hs_sequences_is_enrolled_ab2", - "contacts_p_933_hs_sequences_is_enrolled_ab3", - "contacts_p_96d_hs_calculat__bile_number_ab1", - "contacts_p_96d_hs_calculat__bile_number_ab2", - "contacts_p_96d_hs_calculat__bile_number_ab3", - "contacts_p_97b_hs_analytic__urce_data_2_ab1", - "contacts_p_97b_hs_analytic__urce_data_2_ab2", - "contacts_p_97b_hs_analytic__urce_data_2_ab3", - "contacts_p_999_hs_lifecycl__edlead_date_ab1", - "contacts_p_999_hs_lifecycl__edlead_date_ab2", - "contacts_p_999_hs_lifecycl__edlead_date_ab3", - "contacts_p_999_hs_lifecycl__tunity_date_ab1", - "contacts_p_999_hs_lifecycl__tunity_date_ab2", - "contacts_p_999_hs_lifecycl__tunity_date_ab3", - "contacts_p_999_hs_lifecycles__fiedlead_date", - "contacts_p_999_hs_lifecycles__ortunity_date", - "contacts_p_9a3_hs_sales_em__ast_clicked_ab1", - "contacts_p_9a3_hs_sales_em__ast_clicked_ab2", - "contacts_p_9a3_hs_sales_em__ast_clicked_ab3", - "contacts_p_9a4_hs_calculat__ountry_code_ab1", - "contacts_p_9a4_hs_calculat__ountry_code_ab2", - "contacts_p_9a4_hs_calculat__ountry_code_ab3", - "contacts_p_9a4_hs_calculated___country_code", - "contacts_p_9b2_hs_first_en__t_object_id_ab1", - "contacts_p_9b2_hs_first_en__t_object_id_ab2", - "contacts_p_9b2_hs_first_en__t_object_id_ab3", - "contacts_p_9b2_hs_first_enga__ent_object_id", - "contacts_p_9fb_hs_lifecycl__stomer_date_ab1", - "contacts_p_9fb_hs_lifecycl__stomer_date_ab2", - "contacts_p_9fb_hs_lifecycl__stomer_date_ab3", - "contacts_p_9fb_hs_lifecycles__customer_date", - "contacts_p_a76_hs_emailcon__ationstatus_ab1", - "contacts_p_a76_hs_emailcon__ationstatus_ab2", - "contacts_p_a76_hs_emailcon__ationstatus_ab3", - "contacts_p_a7d_hs_user_ids___all_owners_ab1", - "contacts_p_a7d_hs_user_ids___all_owners_ab2", - "contacts_p_a7d_hs_user_ids___all_owners_ab3", - "contacts_p_a8a_hs_avatar_f__manager_key_ab1", - "contacts_p_a8a_hs_avatar_f__manager_key_ab2", - "contacts_p_a8a_hs_avatar_f__manager_key_ab3", - "contacts_p_af0_hs_calculat__region_code_ab1", - "contacts_p_af0_hs_calculat__region_code_ab2", - "contacts_p_af0_hs_calculat__region_code_ab3", - "contacts_p_af0_hs_calculated__r_region_code", - "contacts_p_b36_engagements__oked_source_ab1", - "contacts_p_b36_engagements__oked_source_ab2", - "contacts_p_b36_engagements__oked_source_ab3", - "contacts_p_b36_engagements_l__booked_source", - "contacts_p_b36_hs_email_ha__unce_reason_ab1", - "contacts_p_b36_hs_email_ha__unce_reason_ab2", - "contacts_p_b36_hs_email_ha__unce_reason_ab3", - "contacts_p_b37_hs_all_acce__le_team_ids_ab1", - "contacts_p_b37_hs_all_acce__le_team_ids_ab2", - "contacts_p_b37_hs_all_acce__le_team_ids_ab3", - "contacts_p_ba9_hs_content___rship_notes_ab1", - "contacts_p_ba9_hs_content___rship_notes_ab2", - "contacts_p_ba9_hs_content___rship_notes_ab3", - "contacts_p_bbb_hs_analytic__t_timestamp_ab1", - "contacts_p_bbb_hs_analytic__t_timestamp_ab2", - "contacts_p_bbb_hs_analytic__t_timestamp_ab3", - "contacts_p_bbb_hs_analytics___sit_timestamp", - "contacts_p_c2b_hs_last_sal__tivity_date_ab1", - "contacts_p_c2b_hs_last_sal__tivity_date_ab2", - "contacts_p_c2b_hs_last_sal__tivity_date_ab3", - "contacts_p_c3e_hs_email_cu__ined_reason_ab1", - "contacts_p_c3e_hs_email_cu__ined_reason_ab2", - "contacts_p_c3e_hs_email_cu__ined_reason_ab3", - "contacts_p_c3e_hs_email_cust__ntined_reason", - "contacts_p_c5a_hs_calculat__submissions_ab1", - "contacts_p_c5a_hs_calculat__submissions_ab2", - "contacts_p_c5a_hs_calculat__submissions_ab3", - "contacts_p_c5a_hs_calculated__m_submissions", - "contacts_p_c8f_hs_email_optout_10798197_ab1", - "contacts_p_c8f_hs_email_optout_10798197_ab2", - "contacts_p_c8f_hs_email_optout_10798197_ab3", - "contacts_p_caf_hs_analytic__t_timestamp_ab1", - "contacts_p_caf_hs_analytic__t_timestamp_ab2", - "contacts_p_caf_hs_analytic__t_timestamp_ab3", - "contacts_p_cd4_hs_latest_m__ng_activity_ab1", - "contacts_p_cd4_hs_latest_m__ng_activity_ab2", - "contacts_p_cd4_hs_latest_m__ng_activity_ab3", - "contacts_p_cde_hs_analytic__completions_ab1", - "contacts_p_cde_hs_analytic__completions_ab2", - "contacts_p_cde_hs_analytic__completions_ab3", - "contacts_p_cde_hs_analytics___t_completions", - "contacts_p_d32_hs_analytic__ng_campaign_ab1", - "contacts_p_d32_hs_analytic__ng_campaign_ab2", - "contacts_p_d32_hs_analytic__ng_campaign_ab3", - "contacts_p_d32_hs_analytics___ting_campaign", - "contacts_p_da2_hs_calculat__merged_vids_ab1", - "contacts_p_da2_hs_calculat__merged_vids_ab2", - "contacts_p_da2_hs_calculat__merged_vids_ab3", - "contacts_p_e4e_hs_email_last_click_date_ab1", - "contacts_p_e4e_hs_email_last_click_date_ab2", - "contacts_p_e4e_hs_email_last_click_date_ab3", - "contacts_p_e88_hs_created___nversations_ab1", - "contacts_p_e88_hs_created___nversations_ab2", - "contacts_p_e88_hs_created___nversations_ab3", - "contacts_p_f82_hs_sales_em__last_opened_ab1", - "contacts_p_f82_hs_sales_em__last_opened_ab2", - "contacts_p_f82_hs_sales_em__last_opened_ab3", - "contacts_p_fa8_hs_searchab__hone_number_ab1", - "contacts_p_fa8_hs_searchab__hone_number_ab2", - "contacts_p_fa8_hs_searchab__hone_number_ab3", - "contacts_p_fa8_hs_searchable___phone_number", - "contacts_p_faf_hs_lifecycl__criber_date_ab1", - "contacts_p_faf_hs_lifecycl__criber_date_ab2", - "contacts_p_faf_hs_lifecycl__criber_date_ab3", - "contacts_p_faf_hs_lifecycles__bscriber_date", - "contacts_p_ff7_hs_content___gistered_at_ab1", - "contacts_p_ff7_hs_content___gistered_at_ab2", - "contacts_p_ff7_hs_content___gistered_at_ab3", - "contacts_p_ff7_hs_content_me__registered_at", - "contacts_pr_0a7_hs_sa_first_engagement_date", - "contacts_pr_0d3_hs_lifecyclestage_lead_date", - "contacts_pr_18c_hs_email_last_send_date_ab1", - "contacts_pr_18c_hs_email_last_send_date_ab2", - "contacts_pr_18c_hs_email_last_send_date_ab3", - "contacts_pr_1ae_hs_email_quarantined_reason", - "contacts_pr_388_hs_analytics_first_referrer", - "contacts_pr_472_hs_time_to_first_engagement", - "contacts_pr_56f_first_conversion_event_name", - "contacts_pr_5fd_hs_sales_email_last_replied", - "contacts_pr_737_first_deal_created_date_ab1", - "contacts_pr_737_first_deal_created_date_ab2", - "contacts_pr_737_first_deal_created_date_ab3", - "contacts_pr_7b1_hs_analytics_num_page_views", - "contacts_pr_96d_hs_calculated_mobile_number", - "contacts_pr_9a3_hs_sales_email_last_clicked", - "contacts_pr_aed_webinareventlastupdated_ab1", - "contacts_pr_aed_webinareventlastupdated_ab2", - "contacts_pr_aed_webinareventlastupdated_ab3", - "contacts_pr_b36_hs_email_hard_bounce_reason", - "contacts_pr_ba9_hs_content_membership_notes", - "contacts_pr_c2b_hs_email_last_open_date_ab1", - "contacts_pr_c2b_hs_email_last_open_date_ab2", - "contacts_pr_c2b_hs_email_last_open_date_ab3", - "contacts_pr_c2b_hs_last_sales_activity_date", - "contacts_pr_caf_hs_analytics_last_timestamp", - "contacts_pr_e05_hs_analytics_num_visits_ab1", - "contacts_pr_e05_hs_analytics_num_visits_ab2", - "contacts_pr_e05_hs_analytics_num_visits_ab3", - "contacts_pr_e88_hs_created_by_conversations", - "contacts_pro_0e1_hs_analytics_last_referrer", - "contacts_pro_3e9_hs_document_last_revisited", - "contacts_pro_45d_hs_analytics_first_url_ab1", - "contacts_pro_45d_hs_analytics_first_url_ab2", - "contacts_pro_45d_hs_analytics_first_url_ab3", - "contacts_pro_5ac_hs_calculated_phone_number", - "contacts_pro_732_hubspot_owner_assigneddate", - "contacts_pro_753_hs_analytics_source_data_1", - "contacts_pro_86e_hs_facebook_ad_clicked_ab1", - "contacts_pro_86e_hs_facebook_ad_clicked_ab2", - "contacts_pro_86e_hs_facebook_ad_clicked_ab3", - "contacts_pro_97b_hs_analytics_source_data_2", - "contacts_pro_a4e_recent_conversion_date_ab1", - "contacts_pro_a4e_recent_conversion_date_ab2", - "contacts_pro_a4e_recent_conversion_date_ab3", - "contacts_pro_a76_hs_emailconfirmationstatus", - "contacts_pro_b37_hs_all_accessible_team_ids", - "contacts_pro_cd4_hs_latest_meeting_activity", - "contacts_pro_d9f_hs_email_is_ineligible_ab1", - "contacts_pro_d9f_hs_email_is_ineligible_ab2", - "contacts_pro_d9f_hs_email_is_ineligible_ab3", - "contacts_pro_de6_recent_deal_close_date_ab1", - "contacts_pro_de6_recent_deal_close_date_ab2", - "contacts_pro_de6_recent_deal_close_date_ab3", - "contacts_pro_f82_hs_sales_email_last_opened", - "contacts_prop_192_hs_analytics_last_url_ab1", - "contacts_prop_192_hs_analytics_last_url_ab2", - "contacts_prop_192_hs_analytics_last_url_ab3", - "contacts_prop_242_hs_email_first_click_date", - "contacts_prop_454_first_conversion_date_ab1", - "contacts_prop_454_first_conversion_date_ab2", - "contacts_prop_454_first_conversion_date_ab3", - "contacts_prop_60c_hs_created_by_user_id_ab1", - "contacts_prop_60c_hs_created_by_user_id_ab2", - "contacts_prop_60c_hs_created_by_user_id_ab3", - "contacts_prop_a7d_hs_user_ids_of_all_owners", - "contacts_prop_a8a_hs_avatar_filemanager_key", - "contacts_prop_cb6_hs_updated_by_user_id_ab1", - "contacts_prop_cb6_hs_updated_by_user_id_ab2", - "contacts_prop_cb6_hs_updated_by_user_id_ab3", - "contacts_prop_da2_hs_calculated_merged_vids", - "contacts_prop_f34_num_conversion_events_ab1", - "contacts_prop_f34_num_conversion_events_ab2", - "contacts_prop_f34_num_conversion_events_ab3", - "contacts_prope_03a_hs_analytics_revenue_ab1", - "contacts_prope_03a_hs_analytics_revenue_ab2", - "contacts_prope_03a_hs_analytics_revenue_ab3", - "contacts_prope_113_hs_email_quarantined_ab1", - "contacts_prope_113_hs_email_quarantined_ab2", - "contacts_prope_113_hs_email_quarantined_ab3", - "contacts_prope_378_notes_next_activity_date", - "contacts_prope_562_hs_email_first_send_date", - "contacts_prope_5ce_notes_last_contacted_ab1", - "contacts_prope_5ce_notes_last_contacted_ab2", - "contacts_prope_5ce_notes_last_contacted_ab3", - "contacts_prope_777_hs_facebook_click_id_ab1", - "contacts_prope_777_hs_facebook_click_id_ab2", - "contacts_prope_777_hs_facebook_click_id_ab3", - "contacts_prope_82a_hs_email_last_email_name", - "contacts_prope_915_hs_email_first_open_date", - "contacts_prope_933_hs_sequences_is_enrolled", - "contacts_prope_988_hs_email_bad_address_ab1", - "contacts_prope_988_hs_email_bad_address_ab2", - "contacts_prope_988_hs_email_bad_address_ab3", - "contacts_prope_9c5_hs_additional_emails_ab1", - "contacts_prope_9c5_hs_additional_emails_ab2", - "contacts_prope_9c5_hs_additional_emails_ab3", - "contacts_prope_a62_num_associated_deals_ab1", - "contacts_prope_a62_num_associated_deals_ab2", - "contacts_prope_a62_num_associated_deals_ab3", - "contacts_prope_ad3_hs_merged_object_ids_ab1", - "contacts_prope_ad3_hs_merged_object_ids_ab2", - "contacts_prope_ad3_hs_merged_object_ids_ab3", - "contacts_prope_c8f_hs_email_optout_10798197", - "contacts_prope_e4e_hs_email_last_click_date", - "contacts_prope_f48_hs_count_is_unworked_ab1", - "contacts_prope_f48_hs_count_is_unworked_ab2", - "contacts_prope_f48_hs_count_is_unworked_ab3", - "contacts_proper_147_associatedcompanyid_ab1", - "contacts_proper_147_associatedcompanyid_ab2", - "contacts_proper_147_associatedcompanyid_ab3", - "contacts_proper_18c_hs_email_last_send_date", - "contacts_proper_38e_relationship_status_ab1", - "contacts_proper_38e_relationship_status_ab2", - "contacts_proper_38e_relationship_status_ab3", - "contacts_proper_59f_hs_lastmodifieddate_ab1", - "contacts_proper_59f_hs_lastmodifieddate_ab2", - "contacts_proper_59f_hs_lastmodifieddate_ab3", - "contacts_proper_737_first_deal_created_date", - "contacts_proper_83f_hs_all_contact_vids_ab1", - "contacts_proper_83f_hs_all_contact_vids_ab2", - "contacts_proper_83f_hs_all_contact_vids_ab3", - "contacts_proper_901_hs_analytics_source_ab1", - "contacts_proper_901_hs_analytics_source_ab2", - "contacts_proper_901_hs_analytics_source_ab3", - "contacts_proper_9b5_num_contacted_notes_ab1", - "contacts_proper_9b5_num_contacted_notes_ab2", - "contacts_proper_9b5_num_contacted_notes_ab3", - "contacts_proper_aed_webinareventlastupdated", - "contacts_proper_c2b_hs_email_last_open_date", - "contacts_proper_e05_hs_analytics_num_visits", - "contacts_propert_185_notes_last_updated_ab1", - "contacts_propert_185_notes_last_updated_ab2", - "contacts_propert_185_notes_last_updated_ab3", - "contacts_propert_45d_hs_analytics_first_url", - "contacts_propert_58b_hs_google_click_id_ab1", - "contacts_propert_58b_hs_google_click_id_ab2", - "contacts_propert_58b_hs_google_click_id_ab3", - "contacts_propert_5fb_recent_deal_amount_ab1", - "contacts_propert_5fb_recent_deal_amount_ab2", - "contacts_propert_5fb_recent_deal_amount_ab3", - "contacts_propert_86e_hs_facebook_ad_clicked", - "contacts_propert_a4e_recent_conversion_date", - "contacts_propert_d9f_hs_email_is_ineligible", - "contacts_propert_de6_recent_deal_close_date", - "contacts_propert_e7f_hs_email_delivered_ab1", - "contacts_propert_e7f_hs_email_delivered_ab2", - "contacts_propert_e7f_hs_email_delivered_ab3", - "contacts_propert_ff4_hs_count_is_worked_ab1", - "contacts_propert_ff4_hs_count_is_worked_ab2", - "contacts_propert_ff4_hs_count_is_worked_ab3", - "contacts_properti_192_hs_analytics_last_url", - "contacts_properti_454_first_conversion_date", - "contacts_properti_60c_hs_created_by_user_id", - "contacts_properti_cb6_hs_updated_by_user_id", - "contacts_properti_f34_num_conversion_events", - "contacts_propertie_03a_hs_analytics_revenue", - "contacts_propertie_113_hs_email_quarantined", - "contacts_propertie_283_hs_all_owner_ids_ab1", - "contacts_propertie_283_hs_all_owner_ids_ab2", - "contacts_propertie_283_hs_all_owner_ids_ab3", - "contacts_propertie_5ce_notes_last_contacted", - "contacts_propertie_777_hs_facebook_click_id", - "contacts_propertie_800_hubspot_owner_id_ab1", - "contacts_propertie_800_hubspot_owner_id_ab2", - "contacts_propertie_800_hubspot_owner_id_ab3", - "contacts_propertie_988_hs_email_bad_address", - "contacts_propertie_9c5_hs_additional_emails", - "contacts_propertie_a62_num_associated_deals", - "contacts_propertie_ad3_hs_merged_object_ids", - "contacts_propertie_e2d_lastmodifieddate_ab1", - "contacts_propertie_e2d_lastmodifieddate_ab2", - "contacts_propertie_e2d_lastmodifieddate_ab3", - "contacts_propertie_f48_hs_count_is_unworked", - "contacts_properties_01c_seniority", - "contacts_properties_01c_seniority_ab1", - "contacts_properties_01c_seniority_ab2", - "contacts_properties_01c_seniority_ab3", - "contacts_properties_01e_company_size", - "contacts_properties_01e_company_size_ab1", - "contacts_properties_01e_company_size_ab2", - "contacts_properties_01e_company_size_ab3", - "contacts_properties_063_total_revenue", - "contacts_properties_063_total_revenue_ab1", - "contacts_properties_063_total_revenue_ab2", - "contacts_properties_063_total_revenue_ab3", - "contacts_properties_067_days_to_close", - "contacts_properties_067_days_to_close_ab1", - "contacts_properties_067_days_to_close_ab2", - "contacts_properties_067_days_to_close_ab3", - "contacts_properties_0fc_ip_state", - "contacts_properties_0fc_ip_state_ab1", - "contacts_properties_0fc_ip_state_ab2", - "contacts_properties_0fc_ip_state_ab3", - "contacts_properties_147_associatedcompanyid", - "contacts_properties_14c_firstname", - "contacts_properties_14c_firstname_ab1", - "contacts_properties_14c_firstname_ab2", - "contacts_properties_14c_firstname_ab3", - "contacts_properties_185_notes_last_updated", - "contacts_properties_1b9_mobilephone", - "contacts_properties_1b9_mobilephone_ab1", - "contacts_properties_1b9_mobilephone_ab2", - "contacts_properties_1b9_mobilephone_ab3", - "contacts_properties_232_phone", - "contacts_properties_232_phone_ab1", - "contacts_properties_232_phone_ab2", - "contacts_properties_232_phone_ab3", - "contacts_properties_265_hs_testrollback", - "contacts_properties_265_hs_testrollback_ab1", - "contacts_properties_265_hs_testrollback_ab2", - "contacts_properties_265_hs_testrollback_ab3", - "contacts_properties_27a_marital_status", - "contacts_properties_27a_marital_status_ab1", - "contacts_properties_27a_marital_status_ab2", - "contacts_properties_27a_marital_status_ab3", - "contacts_properties_283_hs_all_owner_ids", - "contacts_properties_283_hubspotscore", - "contacts_properties_283_hubspotscore_ab1", - "contacts_properties_283_hubspotscore_ab2", - "contacts_properties_283_hubspotscore_ab3", - "contacts_properties_2c2_salutation", - "contacts_properties_2c2_salutation_ab1", - "contacts_properties_2c2_salutation_ab2", - "contacts_properties_2c2_salutation_ab3", - "contacts_properties_2ce_date_of_birth", - "contacts_properties_2ce_date_of_birth_ab1", - "contacts_properties_2ce_date_of_birth_ab2", - "contacts_properties_2ce_date_of_birth_ab3", - "contacts_properties_2d1_createdate", - "contacts_properties_2d1_createdate_ab1", - "contacts_properties_2d1_createdate_ab2", - "contacts_properties_2d1_createdate_ab3", - "contacts_properties_2d6_hs_email_bounce", - "contacts_properties_2d6_hs_email_bounce_ab1", - "contacts_properties_2d6_hs_email_bounce_ab2", - "contacts_properties_2d6_hs_email_bounce_ab3", - "contacts_properties_2e4_hs_is_contact", - "contacts_properties_2e4_hs_is_contact_ab1", - "contacts_properties_2e4_hs_is_contact_ab2", - "contacts_properties_2e4_hs_is_contact_ab3", - "contacts_properties_337_industry", - "contacts_properties_337_industry_ab1", - "contacts_properties_337_industry_ab2", - "contacts_properties_337_industry_ab3", - "contacts_properties_38e_relationship_status", - "contacts_properties_3ff_work_email", - "contacts_properties_3ff_work_email_ab1", - "contacts_properties_3ff_work_email_ab2", - "contacts_properties_3ff_work_email_ab3", - "contacts_properties_411_ip_state_code", - "contacts_properties_411_ip_state_code_ab1", - "contacts_properties_411_ip_state_code_ab2", - "contacts_properties_411_ip_state_code_ab3", - "contacts_properties_42d_hs_object_id", - "contacts_properties_42d_hs_object_id_ab1", - "contacts_properties_42d_hs_object_id_ab2", - "contacts_properties_42d_hs_object_id_ab3", - "contacts_properties_43a_lifecyclestage", - "contacts_properties_43a_lifecyclestage_ab1", - "contacts_properties_43a_lifecyclestage_ab2", - "contacts_properties_43a_lifecyclestage_ab3", - "contacts_properties_4e6_numemployees", - "contacts_properties_4e6_numemployees_ab1", - "contacts_properties_4e6_numemployees_ab2", - "contacts_properties_4e6_numemployees_ab3", - "contacts_properties_58b_hs_google_click_id", - "contacts_properties_59f_hs_lastmodifieddate", - "contacts_properties_5cc_city", - "contacts_properties_5cc_city_ab1", - "contacts_properties_5cc_city_ab2", - "contacts_properties_5cc_city_ab3", - "contacts_properties_5e0_hs_legal_basis", - "contacts_properties_5e0_hs_legal_basis_ab1", - "contacts_properties_5e0_hs_legal_basis_ab2", - "contacts_properties_5e0_hs_legal_basis_ab3", - "contacts_properties_5fb_recent_deal_amount", - "contacts_properties_630_state", - "contacts_properties_630_state_ab1", - "contacts_properties_630_state_ab2", - "contacts_properties_630_state_ab3", - "contacts_properties_653_annualrevenue", - "contacts_properties_653_annualrevenue_ab1", - "contacts_properties_653_annualrevenue_ab2", - "contacts_properties_653_annualrevenue_ab3", - "contacts_properties_774_closedate", - "contacts_properties_774_closedate_ab1", - "contacts_properties_774_closedate_ab2", - "contacts_properties_774_closedate_ab3", - "contacts_properties_77d_lastname", - "contacts_properties_77d_lastname_ab1", - "contacts_properties_77d_lastname_ab2", - "contacts_properties_77d_lastname_ab3", - "contacts_properties_800_hubspot_owner_id", - "contacts_properties_83f_hs_all_contact_vids", - "contacts_properties_84e_school", - "contacts_properties_84e_school_ab1", - "contacts_properties_84e_school_ab2", - "contacts_properties_84e_school_ab3", - "contacts_properties_886_hs_buying_role", - "contacts_properties_886_hs_buying_role_ab1", - "contacts_properties_886_hs_buying_role_ab2", - "contacts_properties_886_hs_buying_role_ab3", - "contacts_properties_8ec_website", - "contacts_properties_8ec_website_ab1", - "contacts_properties_8ec_website_ab2", - "contacts_properties_8ec_website_ab3", - "contacts_properties_901_hs_analytics_source", - "contacts_properties_90d_hs_email_optout", - "contacts_properties_90d_hs_email_optout_ab1", - "contacts_properties_90d_hs_email_optout_ab2", - "contacts_properties_90d_hs_email_optout_ab3", - "contacts_properties_91c_gender", - "contacts_properties_91c_gender_ab1", - "contacts_properties_91c_gender_ab2", - "contacts_properties_91c_gender_ab3", - "contacts_properties_927_hs_lead_status", - "contacts_properties_927_hs_lead_status_ab1", - "contacts_properties_927_hs_lead_status_ab2", - "contacts_properties_927_hs_lead_status_ab3", - "contacts_properties_943_graduation_date", - "contacts_properties_943_graduation_date_ab1", - "contacts_properties_943_graduation_date_ab2", - "contacts_properties_943_graduation_date_ab3", - "contacts_properties_94d_company", - "contacts_properties_94d_company_ab1", - "contacts_properties_94d_company_ab2", - "contacts_properties_94d_company_ab3", - "contacts_properties_9a4_hs_language", - "contacts_properties_9a4_hs_language_ab1", - "contacts_properties_9a4_hs_language_ab2", - "contacts_properties_9a4_hs_language_ab3", - "contacts_properties_9a4_military_status", - "contacts_properties_9a4_military_status_ab1", - "contacts_properties_9a4_military_status_ab2", - "contacts_properties_9a4_military_status_ab3", - "contacts_properties_9b5_num_contacted_notes", - "contacts_properties_9e2_ip_city", - "contacts_properties_9e2_ip_city_ab1", - "contacts_properties_9e2_ip_city_ab2", - "contacts_properties_9e2_ip_city_ab3", - "contacts_properties_9ea_num_notes", - "contacts_properties_9ea_num_notes_ab1", - "contacts_properties_9ea_num_notes_ab2", - "contacts_properties_9ea_num_notes_ab3", - "contacts_properties_9fc_job_function", - "contacts_properties_9fc_job_function_ab1", - "contacts_properties_9fc_job_function_ab2", - "contacts_properties_9fc_job_function_ab3", - "contacts_properties_a22_hs_is_unworked", - "contacts_properties_a22_hs_is_unworked_ab1", - "contacts_properties_a22_hs_is_unworked_ab2", - "contacts_properties_a22_hs_is_unworked_ab3", - "contacts_properties_a5b_hs_email_domain", - "contacts_properties_a5b_hs_email_domain_ab1", - "contacts_properties_a5b_hs_email_domain_ab2", - "contacts_properties_a5b_hs_email_domain_ab3", - "contacts_properties_a62_field_of_study", - "contacts_properties_a62_field_of_study_ab1", - "contacts_properties_a62_field_of_study_ab2", - "contacts_properties_a62_field_of_study_ab3", - "contacts_properties_aa1_ip_country_code", - "contacts_properties_aa1_ip_country_code_ab1", - "contacts_properties_aa1_ip_country_code_ab2", - "contacts_properties_aa1_ip_country_code_ab3", - "contacts_properties_b08_message", - "contacts_properties_b08_message_ab1", - "contacts_properties_b08_message_ab2", - "contacts_properties_b08_message_ab3", - "contacts_properties_b59_hs_ip_timezone", - "contacts_properties_b59_hs_ip_timezone_ab1", - "contacts_properties_b59_hs_ip_timezone_ab2", - "contacts_properties_b59_hs_ip_timezone_ab3", - "contacts_properties_c11_jobtitle", - "contacts_properties_c11_jobtitle_ab1", - "contacts_properties_c11_jobtitle_ab2", - "contacts_properties_c11_jobtitle_ab3", - "contacts_properties_c97_hs_email_open", - "contacts_properties_c97_hs_email_open_ab1", - "contacts_properties_c97_hs_email_open_ab2", - "contacts_properties_c97_hs_email_open_ab3", - "contacts_properties_caf_hs_email_click", - "contacts_properties_caf_hs_email_click_ab1", - "contacts_properties_caf_hs_email_click_ab2", - "contacts_properties_caf_hs_email_click_ab3", - "contacts_properties_ccb_hs_testpurge", - "contacts_properties_ccb_hs_testpurge_ab1", - "contacts_properties_ccb_hs_testpurge_ab2", - "contacts_properties_ccb_hs_testpurge_ab3", - "contacts_properties_d24_hs_createdate", - "contacts_properties_d24_hs_createdate_ab1", - "contacts_properties_d24_hs_createdate_ab2", - "contacts_properties_d24_hs_createdate_ab3", - "contacts_properties_d29_fax", - "contacts_properties_d29_fax_ab1", - "contacts_properties_d29_fax_ab2", - "contacts_properties_d29_fax_ab3", - "contacts_properties_d37_hubspot_team_id", - "contacts_properties_d37_hubspot_team_id_ab1", - "contacts_properties_d37_hubspot_team_id_ab2", - "contacts_properties_d37_hubspot_team_id_ab3", - "contacts_properties_d40_zip", - "contacts_properties_d40_zip_ab1", - "contacts_properties_d40_zip_ab2", - "contacts_properties_d40_zip_ab3", - "contacts_properties_d8f_email", - "contacts_properties_d8f_email_ab1", - "contacts_properties_d8f_email_ab2", - "contacts_properties_d8f_email_ab3", - "contacts_properties_dc9_ip_zipcode", - "contacts_properties_dc9_ip_zipcode_ab1", - "contacts_properties_dc9_ip_zipcode_ab2", - "contacts_properties_dc9_ip_zipcode_ab3", - "contacts_properties_e2d_lastmodifieddate", - "contacts_properties_e31_twitterhandle", - "contacts_properties_e31_twitterhandle_ab1", - "contacts_properties_e31_twitterhandle_ab2", - "contacts_properties_e31_twitterhandle_ab3", - "contacts_properties_e7f_hs_email_delivered", - "contacts_properties_e87_ip_latlon", - "contacts_properties_e87_ip_latlon_ab1", - "contacts_properties_e87_ip_latlon_ab2", - "contacts_properties_e87_ip_latlon_ab3", - "contacts_properties_ef9_start_date", - "contacts_properties_ef9_start_date_ab1", - "contacts_properties_ef9_start_date_ab2", - "contacts_properties_ef9_start_date_ab3", - "contacts_properties_f00_hs_persona", - "contacts_properties_f00_hs_persona_ab1", - "contacts_properties_f00_hs_persona_ab2", - "contacts_properties_f00_hs_persona_ab3", - "contacts_properties_f39_address", - "contacts_properties_f39_address_ab1", - "contacts_properties_f39_address_ab2", - "contacts_properties_f39_address_ab3", - "contacts_properties_f3b_degree", - "contacts_properties_f3b_degree_ab1", - "contacts_properties_f3b_degree_ab2", - "contacts_properties_f3b_degree_ab3", - "contacts_properties_f4c_hs_all_team_ids", - "contacts_properties_f4c_hs_all_team_ids_ab1", - "contacts_properties_f4c_hs_all_team_ids_ab2", - "contacts_properties_f4c_hs_all_team_ids_ab3", - "contacts_properties_fd0_ip_country", - "contacts_properties_fd0_ip_country_ab1", - "contacts_properties_fd0_ip_country_ab2", - "contacts_properties_fd0_ip_country_ab3", - "contacts_properties_ff4_hs_count_is_worked", - "contacts_properties_fff_country", - "contacts_properties_fff_country_ab1", - "contacts_properties_fff_country_ab2", - "contacts_properties_fff_country_ab3", - "deal_pipelines_142_stages", - "deal_pipelines_142_stages_ab1", - "deal_pipelines_142_stages_ab2", - "deal_pipelines_142_stages_ab3", - "deals_070_properties", - "deals_070_properties_ab1", - "deals_070_properties_ab2", - "deals_070_properties_ab3", - "deals_0bf_property_engag__booked_medium_ab1", - "deals_0bf_property_engag__booked_medium_ab2", - "deals_0bf_property_engag__booked_medium_ab3", - "deals_0bf_property_engagem__g_booked_medium", - "deals_0d6_property_hs_us__of_all_owners_ab1", - "deals_0d6_property_hs_us__of_all_owners_ab2", - "deals_0d6_property_hs_us__of_all_owners_ab3", - "deals_0d6_property_hs_user__s_of_all_owners", - "deals_0dc_property_hs_da__red_closedwon_ab1", - "deals_0dc_property_hs_da__red_closedwon_ab2", - "deals_0dc_property_hs_da__red_closedwon_ab3", - "deals_0dc_property_hs_date__tered_closedwon", - "deals_0e7_property_hs_all_owner_ids", - "deals_0e7_property_hs_all_owner_ids_ab1", - "deals_0e7_property_hs_all_owner_ids_ab2", - "deals_0e7_property_hs_all_owner_ids_ab3", - "deals_139_property_notes__activity_date_ab1", - "deals_139_property_notes__activity_date_ab2", - "deals_139_property_notes__activity_date_ab3", - "deals_139_property_notes_next_activity_date", - "deals_141_property_hs_pr__home_currency_ab1", - "deals_141_property_hs_pr__home_currency_ab2", - "deals_141_property_hs_pr__home_currency_ab3", - "deals_141_property_hs_pred__n_home_currency", - "deals_16b_property_num_a__ated_contacts_ab1", - "deals_16b_property_num_a__ated_contacts_ab2", - "deals_16b_property_num_a__ated_contacts_ab3", - "deals_16b_property_num_associated_contacts", - "deals_19c_property_hs_ti___contractsent_ab1", - "deals_19c_property_hs_ti___contractsent_ab2", - "deals_19c_property_hs_ti___contractsent_ab3", - "deals_19c_property_hs_time_in_contractsent", - "deals_1f2_property_hs_da__tered_9567449_ab1", - "deals_1f2_property_hs_da__tered_9567449_ab2", - "deals_1f2_property_hs_da__tered_9567449_ab3", - "deals_1f2_property_hs_date_entered_9567449", - "deals_205_property_hs_an__source_data_1_ab1", - "deals_205_property_hs_an__source_data_1_ab2", - "deals_205_property_hs_an__source_data_1_ab3", - "deals_205_property_hs_anal__s_source_data_1", - "deals_212_property_hs_time_in_9567448", - "deals_212_property_hs_time_in_9567448_ab1", - "deals_212_property_hs_time_in_9567448_ab2", - "deals_212_property_hs_time_in_9567448_ab3", - "deals_241_property_hs_sa___last_replied_ab1", - "deals_241_property_hs_sa___last_replied_ab2", - "deals_241_property_hs_sa___last_replied_ab3", - "deals_241_property_hs_sale__il_last_replied", - "deals_26a_property_hs_da__ualifiedtobuy_ab1", - "deals_26a_property_hs_da__ualifiedtobuy_ab2", - "deals_26a_property_hs_da__ualifiedtobuy_ab3", - "deals_26a_property_hs_date___qualifiedtobuy", - "deals_298_property_hs_lastmodifieddate", - "deals_298_property_hs_lastmodifieddate_ab1", - "deals_298_property_hs_lastmodifieddate_ab2", - "deals_298_property_hs_lastmodifieddate_ab3", - "deals_2b5_property_hs_da__xited_9567448_ab1", - "deals_2b5_property_hs_da__xited_9567448_ab2", - "deals_2b5_property_hs_da__xited_9567448_ab3", - "deals_2b5_property_hs_date_exited_9567448", - "deals_2c9_property_hs_la__ting_activity_ab1", - "deals_2c9_property_hs_la__ting_activity_ab2", - "deals_2c9_property_hs_la__ting_activity_ab3", - "deals_2c9_property_hs_late__eeting_activity", - "deals_2de_property_hs_ti__tionscheduled_ab1", - "deals_2de_property_hs_ti__tionscheduled_ab2", - "deals_2de_property_hs_ti__tionscheduled_ab3", - "deals_2de_property_hs_time__tationscheduled", - "deals_2ea_property_hs_time_in_closedwon", - "deals_2ea_property_hs_time_in_closedwon_ab1", - "deals_2ea_property_hs_time_in_closedwon_ab2", - "deals_2ea_property_hs_time_in_closedwon_ab3", - "deals_326_property_notes_last_updated", - "deals_326_property_notes_last_updated_ab1", - "deals_326_property_notes_last_updated_ab2", - "deals_326_property_notes_last_updated_ab3", - "deals_33f_property_hs_projected_amount", - "deals_33f_property_hs_projected_amount_ab1", - "deals_33f_property_hs_projected_amount_ab2", - "deals_33f_property_hs_projected_amount_ab3", - "deals_348_property_amount", - "deals_348_property_amount_ab1", - "deals_348_property_amount_ab2", - "deals_348_property_amount_ab3", - "deals_34e_property_hs_tcv", - "deals_34e_property_hs_tcv_ab1", - "deals_34e_property_hs_tcv_ab2", - "deals_34e_property_hs_tcv_ab3", - "deals_3ce_property_hs_time_in_9567449", - "deals_3ce_property_hs_time_in_9567449_ab1", - "deals_3ce_property_hs_time_in_9567449_ab2", - "deals_3ce_property_hs_time_in_9567449_ab3", - "deals_3d9_property_hs_li__hood_to_close_ab1", - "deals_3d9_property_hs_li__hood_to_close_ab2", - "deals_3d9_property_hs_li__hood_to_close_ab3", - "deals_3d9_property_hs_likelihood_to_close", - "deals_40e_property_hs_cl__home_currency_ab1", - "deals_40e_property_hs_cl__home_currency_ab2", - "deals_40e_property_hs_cl__home_currency_ab3", - "deals_40e_property_hs_clos__n_home_currency", - "deals_41d_property_dealtype", - "deals_41d_property_dealtype_ab1", - "deals_41d_property_dealtype_ab2", - "deals_41d_property_dealtype_ab3", - "deals_43c_property_hs_li__illing_period_ab1", - "deals_43c_property_hs_li__illing_period_ab2", - "deals_43c_property_hs_li__illing_period_ab3", - "deals_43c_property_hs_line___billing_period", - "deals_477_property_closed_won_reason", - "deals_477_property_closed_won_reason_ab1", - "deals_477_property_closed_won_reason_ab2", - "deals_477_property_closed_won_reason_ab3", - "deals_4f5_properties_versions", - "deals_4f5_properties_versions_ab1", - "deals_4f5_properties_versions_ab2", - "deals_4f5_properties_versions_ab3", - "deals_4f5_property_closed_lost_reason", - "deals_4f5_property_closed_lost_reason_ab1", - "deals_4f5_property_closed_lost_reason_ab2", - "deals_4f5_property_closed_lost_reason_ab3", - "deals_52d_property_hs_is_closed", - "deals_52d_property_hs_is_closed_ab1", - "deals_52d_property_hs_is_closed_ab2", - "deals_52d_property_hs_is_closed_ab3", - "deals_53d_property_hs_all_team_ids", - "deals_53d_property_hs_all_team_ids_ab1", - "deals_53d_property_hs_all_team_ids_ab2", - "deals_53d_property_hs_all_team_ids_ab3", - "deals_555_property_hs_ti__makerboughtin_ab1", - "deals_555_property_hs_ti__makerboughtin_ab2", - "deals_555_property_hs_ti__makerboughtin_ab3", - "deals_555_property_hs_time__onmakerboughtin", - "deals_569_property_hs_ma__cast_category_ab1", - "deals_569_property_hs_ma__cast_category_ab2", - "deals_569_property_hs_ma__cast_category_ab3", - "deals_569_property_hs_manu__recast_category", - "deals_591_property_hs_an__source_data_2_ab1", - "deals_591_property_hs_an__source_data_2_ab2", - "deals_591_property_hs_an__source_data_2_ab3", - "deals_591_property_hs_anal__s_source_data_2", - "deals_59d_property_hs_li__ng_start_date_ab1", - "deals_59d_property_hs_li__ng_start_date_ab2", - "deals_59d_property_hs_li__ng_start_date_ab3", - "deals_59d_property_hs_line__ling_start_date", - "deals_5f7_property_hs_next_step", - "deals_5f7_property_hs_next_step_ab1", - "deals_5f7_property_hs_next_step_ab2", - "deals_5f7_property_hs_next_step_ab3", - "deals_60f_property_hs_da___contractsent_ab1", - "deals_60f_property_hs_da___contractsent_ab2", - "deals_60f_property_hs_da___contractsent_ab3", - "deals_60f_property_hs_date__ed_contractsent", - "deals_62b_property_amoun__home_currency_ab1", - "deals_62b_property_amoun__home_currency_ab2", - "deals_62b_property_amoun__home_currency_ab3", - "deals_62b_property_amount_in_home_currency", - "deals_650_property_hs_da__ualifiedtobuy_ab1", - "deals_650_property_hs_da__ualifiedtobuy_ab2", - "deals_650_property_hs_da__ualifiedtobuy_ab3", - "deals_650_property_hs_date___qualifiedtobuy", - "deals_6be_property_engag__booked_source_ab1", - "deals_6be_property_engag__booked_source_ab2", - "deals_6be_property_engag__booked_source_ab3", - "deals_6be_property_engagem__g_booked_source", - "deals_6fa_property_hs_da__tionscheduled_ab1", - "deals_6fa_property_hs_da__tionscheduled_ab2", - "deals_6fa_property_hs_da__tionscheduled_ab3", - "deals_6fa_property_hs_date__tationscheduled", - "deals_708_property_hs_da__losedwonstage_ab1", - "deals_708_property_hs_da__losedwonstage_ab2", - "deals_708_property_hs_da__losedwonstage_ab3", - "deals_708_property_hs_date__mclosedwonstage", - "deals_712_property_hs_fo__t_probability_ab1", - "deals_712_property_hs_fo__t_probability_ab2", - "deals_712_property_hs_fo__t_probability_ab3", - "deals_712_property_hs_forecast_probability", - "deals_72e_property_num_contacted_notes", - "deals_72e_property_num_contacted_notes_ab1", - "deals_72e_property_num_contacted_notes_ab2", - "deals_72e_property_num_contacted_notes_ab3", - "deals_73d_property_hs_merged_object_ids", - "deals_73d_property_hs_merged_object_ids_ab1", - "deals_73d_property_hs_merged_object_ids_ab2", - "deals_73d_property_hs_merged_object_ids_ab3", - "deals_74e_property_hubspot_team_id", - "deals_74e_property_hubspot_team_id_ab1", - "deals_74e_property_hubspot_team_id_ab2", - "deals_74e_property_hubspot_team_id_ab3", - "deals_75e_property_hs_li___date_enabled_ab1", - "deals_75e_property_hs_li___date_enabled_ab2", - "deals_75e_property_hs_li___date_enabled_ab3", - "deals_75e_property_hs_line__rt_date_enabled", - "deals_767_property_hs_de__on_preference_ab1", - "deals_767_property_hs_de__on_preference_ab2", - "deals_767_property_hs_de__on_preference_ab3", - "deals_767_property_hs_deal__tion_preference", - "deals_787_associations", - "deals_787_associations_ab1", - "deals_787_associations_ab2", - "deals_787_associations_ab3", - "deals_7ac_property_hs_da__ed_closedlost_ab1", - "deals_7ac_property_hs_da__ed_closedlost_ab2", - "deals_7ac_property_hs_da__ed_closedlost_ab3", - "deals_7ac_property_hs_date__ited_closedlost", - "deals_830_property_description", - "deals_830_property_description_ab1", - "deals_830_property_description_ab2", - "deals_830_property_description_ab3", - "deals_855_property_hs_createdate", - "deals_855_property_hs_createdate_ab1", - "deals_855_property_hs_createdate_ab2", - "deals_855_property_hs_createdate_ab3", - "deals_896_property_hs_da__ed_closedlost_ab1", - "deals_896_property_hs_da__ed_closedlost_ab2", - "deals_896_property_hs_da__ed_closedlost_ab3", - "deals_896_property_hs_date__ered_closedlost", - "deals_897_property_createdate", - "deals_897_property_createdate_ab1", - "deals_897_property_createdate_ab2", - "deals_897_property_createdate_ab3", - "deals_89d_property_hs_da__ted_closedwon_ab1", - "deals_89d_property_hs_da__ted_closedwon_ab2", - "deals_89d_property_hs_da__ted_closedwon_ab3", - "deals_89d_property_hs_date_exited_closedwon", - "deals_8ac_property_hs_closed_amount", - "deals_8ac_property_hs_closed_amount_ab1", - "deals_8ac_property_hs_closed_amount_ab2", - "deals_8ac_property_hs_closed_amount_ab3", - "deals_8b6_property_hs_ti__mentscheduled_ab1", - "deals_8b6_property_hs_ti__mentscheduled_ab2", - "deals_8b6_property_hs_ti__mentscheduled_ab3", - "deals_8b6_property_hs_time__ntmentscheduled", - "deals_8ff_property_hs_mrr", - "deals_8ff_property_hs_mrr_ab1", - "deals_8ff_property_hs_mrr_ab2", - "deals_8ff_property_hs_mrr_ab3", - "deals_95e_property_hs_ti__in_closedlost_ab1", - "deals_95e_property_hs_ti__in_closedlost_ab2", - "deals_95e_property_hs_ti__in_closedlost_ab3", - "deals_95e_property_hs_time_in_closedlost", - "deals_98e_property_engag__oked_campaign_ab1", - "deals_98e_property_engag__oked_campaign_ab2", - "deals_98e_property_engag__oked_campaign_ab3", - "deals_98e_property_engagem__booked_campaign", - "deals_9a9_property_hs_da___contractsent_ab1", - "deals_9a9_property_hs_da___contractsent_ab2", - "deals_9a9_property_hs_da___contractsent_ab3", - "deals_9a9_property_hs_date__ed_contractsent", - "deals_9b8_property_hs_li__nt_percentage_ab1", - "deals_9b8_property_hs_li__nt_percentage_ab2", - "deals_9b8_property_hs_li__nt_percentage_ab3", - "deals_9b8_property_hs_line__ount_percentage", - "deals_9c4_property_days_to_close", - "deals_9c4_property_days_to_close_ab1", - "deals_9c4_property_days_to_close_ab2", - "deals_9c4_property_days_to_close_ab3", - "deals_9cf_property_hs_cr__ed_by_user_id_ab1", - "deals_9cf_property_hs_cr__ed_by_user_id_ab2", - "deals_9cf_property_hs_cr__ed_by_user_id_ab3", - "deals_9cf_property_hs_created_by_user_id", - "deals_9e5_property_hs_predicted_amount", - "deals_9e5_property_hs_predicted_amount_ab1", - "deals_9e5_property_hs_predicted_amount_ab2", - "deals_9e5_property_hs_predicted_amount_ab3", - "deals_a61_property_hs_up__ed_by_user_id_ab1", - "deals_a61_property_hs_up__ed_by_user_id_ab2", - "deals_a61_property_hs_up__ed_by_user_id_ab3", - "deals_a61_property_hs_updated_by_user_id", - "deals_a72_property_hs_ti__ualifiedtobuy_ab1", - "deals_a72_property_hs_ti__ualifiedtobuy_ab2", - "deals_a72_property_hs_ti__ualifiedtobuy_ab3", - "deals_a72_property_hs_time___qualifiedtobuy", - "deals_abe_property_hs_pr__home_currency_ab1", - "deals_abe_property_hs_pr__home_currency_ab2", - "deals_abe_property_hs_pr__home_currency_ab3", - "deals_abe_property_hs_proj__n_home_currency", - "deals_b3e_property_closedate", - "deals_b3e_property_closedate_ab1", - "deals_b3e_property_closedate_ab2", - "deals_b3e_property_closedate_ab3", - "deals_b50_property_hs_arr", - "deals_b50_property_hs_arr_ab1", - "deals_b50_property_hs_arr_ab2", - "deals_b50_property_hs_arr_ab3", - "deals_b60_property_hs_da__mentscheduled_ab1", - "deals_b60_property_hs_da__mentscheduled_ab2", - "deals_b60_property_hs_da__mentscheduled_ab3", - "deals_b60_property_hs_date__ntmentscheduled", - "deals_b88_property_hs_da__xited_9567449_ab1", - "deals_b88_property_hs_da__xited_9567449_ab2", - "deals_b88_property_hs_da__xited_9567449_ab3", - "deals_b88_property_hs_date_exited_9567449", - "deals_b9d_property_hs_da__makerboughtin_ab1", - "deals_b9d_property_hs_da__makerboughtin_ab2", - "deals_b9d_property_hs_da__makerboughtin_ab3", - "deals_b9d_property_hs_date__onmakerboughtin", - "deals_ba8_property_hs_object_id", - "deals_ba8_property_hs_object_id_ab1", - "deals_ba8_property_hs_object_id_ab2", - "deals_ba8_property_hs_object_id_ab3", - "deals_bbd_property_hs_da__tered_9567448_ab1", - "deals_bbd_property_hs_da__tered_9567448_ab2", - "deals_bbd_property_hs_da__tered_9567448_ab3", - "deals_bbd_property_hs_date_entered_9567448", - "deals_be6_property_num_notes", - "deals_be6_property_num_notes_ab1", - "deals_be6_property_num_notes_ab2", - "deals_be6_property_num_notes_ab3", - "deals_c0d_property_engag__eeting_booked_ab1", - "deals_c0d_property_engag__eeting_booked_ab2", - "deals_c0d_property_engag__eeting_booked_ab3", - "deals_c0d_property_engagem___meeting_booked", - "deals_c6b_property_dealstage", - "deals_c6b_property_dealstage_ab1", - "deals_c6b_property_dealstage_ab2", - "deals_c6b_property_dealstage_ab3", - "deals_c6d_property_hs_ti__losedwonstage_ab1", - "deals_c6d_property_hs_ti__losedwonstage_ab2", - "deals_c6d_property_hs_ti__losedwonstage_ab3", - "deals_c6d_property_hs_time__mclosedwonstage", - "deals_ca0_property_hs_al__ible_team_ids_ab1", - "deals_ca0_property_hs_al__ible_team_ids_ab2", - "deals_ca0_property_hs_al__ible_team_ids_ab3", - "deals_ca0_property_hs_all___ssible_team_ids", - "deals_d34_property_hs_da__losedwonstage_ab1", - "deals_d34_property_hs_da__losedwonstage_ab2", - "deals_d34_property_hs_da__losedwonstage_ab3", - "deals_d34_property_hs_date__mclosedwonstage", - "deals_d56_property_hs_da__makerboughtin_ab1", - "deals_d56_property_hs_da__makerboughtin_ab2", - "deals_d56_property_hs_da__makerboughtin_ab3", - "deals_d56_property_hs_date__onmakerboughtin", - "deals_d63_property_hs_da__mentscheduled_ab1", - "deals_d63_property_hs_da__mentscheduled_ab2", - "deals_d63_property_hs_da__mentscheduled_ab3", - "deals_d63_property_hs_date__ntmentscheduled", - "deals_d6c_property_hs_acv", - "deals_d6c_property_hs_acv_ab1", - "deals_d6c_property_hs_acv_ab2", - "deals_d6c_property_hs_acv_ab3", - "deals_d8b_property_notes_last_contacted", - "deals_d8b_property_notes_last_contacted_ab1", - "deals_d8b_property_notes_last_contacted_ab2", - "deals_d8b_property_notes_last_contacted_ab3", - "deals_dc7_property_hs_de__e_probability_ab1", - "deals_dc7_property_hs_de__e_probability_ab2", - "deals_dc7_property_hs_de__e_probability_ab3", - "deals_dc7_property_hs_deal__age_probability", - "deals_e3c_property_hs_da__tionscheduled_ab1", - "deals_e3c_property_hs_da__tionscheduled_ab2", - "deals_e3c_property_hs_da__tionscheduled_ab3", - "deals_e3c_property_hs_date__tationscheduled", - "deals_e4a_property_pipeline", - "deals_e4a_property_pipeline_ab1", - "deals_e4a_property_pipeline_ab2", - "deals_e4a_property_pipeline_ab3", - "deals_e8c_property_dealname", - "deals_e8c_property_dealname_ab1", - "deals_e8c_property_dealname_ab2", - "deals_e8c_property_dealname_ab3", - "deals_e9e_property_hubsp___assigneddate_ab1", - "deals_e9e_property_hubsp___assigneddate_ab2", - "deals_e9e_property_hubsp___assigneddate_ab3", - "deals_e9e_property_hubspot__er_assigneddate", - "deals_ebb_property_hs_analytics_source", - "deals_ebb_property_hs_analytics_source_ab1", - "deals_ebb_property_hs_analytics_source_ab2", - "deals_ebb_property_hs_analytics_source_ab3", - "deals_f37_property_hs_li__lingfrequency_ab1", - "deals_f37_property_hs_li__lingfrequency_ab2", - "deals_f37_property_hs_li__lingfrequency_ab3", - "deals_f37_property_hs_line__illingfrequency", - "deals_f3d_property_hs_forecast_amount", - "deals_f3d_property_hs_forecast_amount_ab1", - "deals_f3d_property_hs_forecast_amount_ab2", - "deals_f3d_property_hs_forecast_amount_ab3", - "deals_fbd_property_hs_li__eriod_enabled_ab1", - "deals_fbd_property_hs_li__eriod_enabled_ab2", - "deals_fbd_property_hs_li__eriod_enabled_ab3", - "deals_fbd_property_hs_line___period_enabled", - "deals_fc5_property_hs_li__uency_enabled_ab1", - "deals_fc5_property_hs_li__uency_enabled_ab2", - "deals_fc5_property_hs_li__uency_enabled_ab3", - "deals_fc5_property_hs_line__equency_enabled", - "deals_fcc_property_hubspot_owner_id", - "deals_fcc_property_hubspot_owner_id_ab1", - "deals_fcc_property_hubspot_owner_id_ab2", - "deals_fcc_property_hubspot_owner_id_ab3", - "deals_ffc_property_hs_li__ntage_enabled_ab1", - "deals_ffc_property_hs_li__ntage_enabled_ab2", - "deals_ffc_property_hs_li__ntage_enabled_ab3", - "deals_ffc_property_hs_line__centage_enabled", - "deals_prop_067_hs_line_ite__ngfrequency_ab1", - "deals_prop_067_hs_line_ite__ngfrequency_ab2", - "deals_prop_067_hs_line_ite__ngfrequency_ab3", - "deals_prop_067_hs_line_item___lingfrequency", - "deals_prop_134_hs_date_ent__onscheduled_ab1", - "deals_prop_134_hs_date_ent__onscheduled_ab2", - "deals_prop_134_hs_date_ent__onscheduled_ab3", - "deals_prop_134_hs_date_enter__tionscheduled", - "deals_prop_1c0_hs_date_ent__sedwonstage_ab1", - "deals_prop_1c0_hs_date_ent__sedwonstage_ab2", - "deals_prop_1c0_hs_date_ent__sedwonstage_ab3", - "deals_prop_1c0_hs_date_enter__losedwonstage", - "deals_prop_1c6_hs_line_ite__ate_enabled_ab1", - "deals_prop_1c6_hs_line_ite__ate_enabled_ab2", - "deals_prop_1c6_hs_line_ite__ate_enabled_ab3", - "deals_prop_1c6_hs_line_item____date_enabled", - "deals_prop_1e1_hs_date_ent__lifiedtobuy_ab1", - "deals_prop_1e1_hs_date_ent__lifiedtobuy_ab2", - "deals_prop_1e1_hs_date_ent__lifiedtobuy_ab3", - "deals_prop_1e1_hs_date_enter__ualifiedtobuy", - "deals_prop_281_hs_date_ent__ntscheduled_ab1", - "deals_prop_281_hs_date_ent__ntscheduled_ab2", - "deals_prop_281_hs_date_ent__ntscheduled_ab3", - "deals_prop_281_hs_date_enter__mentscheduled", - "deals_prop_2b3_hs_time_in___onscheduled_ab1", - "deals_prop_2b3_hs_time_in___onscheduled_ab2", - "deals_prop_2b3_hs_time_in___onscheduled_ab3", - "deals_prop_2b3_hs_time_in_pr__tionscheduled", - "deals_prop_315_hs_line_ite__age_enabled_ab1", - "deals_prop_315_hs_line_ite__age_enabled_ab2", - "deals_prop_315_hs_line_ite__age_enabled_ab3", - "deals_prop_315_hs_line_item___ntage_enabled", - "deals_prop_38b_hubspot_own__ssigneddate_ab1", - "deals_prop_38b_hubspot_own__ssigneddate_ab2", - "deals_prop_38b_hubspot_own__ssigneddate_ab3", - "deals_prop_3e3_hs_date_exited_closedwon_ab1", - "deals_prop_3e3_hs_date_exited_closedwon_ab2", - "deals_prop_3e3_hs_date_exited_closedwon_ab3", - "deals_prop_3f4_hs_date_ent__ontractsent_ab1", - "deals_prop_3f4_hs_date_ent__ontractsent_ab2", - "deals_prop_3f4_hs_date_ent__ontractsent_ab3", - "deals_prop_3f4_hs_date_entered_contractsent", - "deals_prop_3fe_hs_date_exi__ntscheduled_ab1", - "deals_prop_3fe_hs_date_exi__ntscheduled_ab2", - "deals_prop_3fe_hs_date_exi__ntscheduled_ab3", - "deals_prop_3fe_hs_date_exite__mentscheduled", - "deals_prop_417_hs_all_acce__le_team_ids_ab1", - "deals_prop_417_hs_all_acce__le_team_ids_ab2", - "deals_prop_417_hs_all_acce__le_team_ids_ab3", - "deals_prop_4c2_hs_time_in___kerboughtin_ab1", - "deals_prop_4c2_hs_time_in___kerboughtin_ab2", - "deals_prop_4c2_hs_time_in___kerboughtin_ab3", - "deals_prop_4c2_hs_time_in_de__makerboughtin", - "deals_prop_500_hs_date_ent___closedlost_ab1", - "deals_prop_500_hs_date_ent___closedlost_ab2", - "deals_prop_500_hs_date_ent___closedlost_ab3", - "deals_prop_53c_hs_line_ite__ling_period_ab1", - "deals_prop_53c_hs_line_ite__ling_period_ab2", - "deals_prop_53c_hs_line_ite__ling_period_ab3", - "deals_prop_53c_hs_line_item___illing_period", - "deals_prop_53e_hs_deal_amo___preference_ab1", - "deals_prop_53e_hs_deal_amo___preference_ab2", - "deals_prop_53e_hs_deal_amo___preference_ab3", - "deals_prop_53e_hs_deal_amoun__on_preference", - "deals_prop_6e6_engagements__oked_medium_ab1", - "deals_prop_6e6_engagements__oked_medium_ab2", - "deals_prop_6e6_engagements__oked_medium_ab3", - "deals_prop_6e6_engagements_l__booked_medium", - "deals_prop_715_engagements__ting_booked_ab1", - "deals_prop_715_engagements__ting_booked_ab2", - "deals_prop_715_engagements__ting_booked_ab3", - "deals_prop_715_engagements_l__eeting_booked", - "deals_prop_78e_engagements__oked_source_ab1", - "deals_prop_78e_engagements__oked_source_ab2", - "deals_prop_78e_engagements__oked_source_ab3", - "deals_prop_78e_engagements_l__booked_source", - "deals_prop_7df_hs_date_exi__kerboughtin_ab1", - "deals_prop_7df_hs_date_exi__kerboughtin_ab2", - "deals_prop_7df_hs_date_exi__kerboughtin_ab3", - "deals_prop_7df_hs_date_exite__makerboughtin", - "deals_prop_7e0_hs_analytic__urce_data_2_ab1", - "deals_prop_7e0_hs_analytic__urce_data_2_ab2", - "deals_prop_7e0_hs_analytic__urce_data_2_ab3", - "deals_prop_879_hs_date_exi__ontractsent_ab1", - "deals_prop_879_hs_date_exi__ontractsent_ab2", - "deals_prop_879_hs_date_exi__ontractsent_ab3", - "deals_prop_8b2_hs_time_in___lifiedtobuy_ab1", - "deals_prop_8b2_hs_time_in___lifiedtobuy_ab2", - "deals_prop_8b2_hs_time_in___lifiedtobuy_ab3", - "deals_prop_8cd_hs_user_ids___all_owners_ab1", - "deals_prop_8cd_hs_user_ids___all_owners_ab2", - "deals_prop_8cd_hs_user_ids___all_owners_ab3", - "deals_prop_918_hs_manual_f__st_category_ab1", - "deals_prop_918_hs_manual_f__st_category_ab2", - "deals_prop_918_hs_manual_f__st_category_ab3", - "deals_prop_923_hs_sales_em__ast_replied_ab1", - "deals_prop_923_hs_sales_em__ast_replied_ab2", - "deals_prop_923_hs_sales_em__ast_replied_ab3", - "deals_prop_987_notes_next_activity_date_ab1", - "deals_prop_987_notes_next_activity_date_ab2", - "deals_prop_987_notes_next_activity_date_ab3", - "deals_prop_9d2_hs_time_in___sedwonstage_ab1", - "deals_prop_9d2_hs_time_in___sedwonstage_ab2", - "deals_prop_9d2_hs_time_in___sedwonstage_ab3", - "deals_prop_9d2_hs_time_in_cu__losedwonstage", - "deals_prop_9d5_hs_latest_m__ng_activity_ab1", - "deals_prop_9d5_hs_latest_m__ng_activity_ab2", - "deals_prop_9d5_hs_latest_m__ng_activity_ab3", - "deals_prop_9fd_hs_date_exi__onscheduled_ab1", - "deals_prop_9fd_hs_date_exi__onscheduled_ab2", - "deals_prop_9fd_hs_date_exi__onscheduled_ab3", - "deals_prop_9fd_hs_date_exite__tionscheduled", - "deals_prop_a14_hs_analytic__urce_data_1_ab1", - "deals_prop_a14_hs_analytic__urce_data_1_ab2", - "deals_prop_a14_hs_analytic__urce_data_1_ab3", - "deals_prop_a89_hs_line_ite__iod_enabled_ab1", - "deals_prop_a89_hs_line_ite__iod_enabled_ab2", - "deals_prop_a89_hs_line_ite__iod_enabled_ab3", - "deals_prop_a89_hs_line_item___eriod_enabled", - "deals_prop_ab1_hs_line_ite___percentage_ab1", - "deals_prop_ab1_hs_line_ite___percentage_ab2", - "deals_prop_ab1_hs_line_ite___percentage_ab3", - "deals_prop_ab1_hs_line_item___nt_percentage", - "deals_prop_b2f_engagements__ed_campaign_ab1", - "deals_prop_b2f_engagements__ed_campaign_ab2", - "deals_prop_b2f_engagements__ed_campaign_ab3", - "deals_prop_b2f_engagements_l__oked_campaign", - "deals_prop_bb8_hs_predicte__me_currency_ab1", - "deals_prop_bb8_hs_predicte__me_currency_ab2", - "deals_prop_bb8_hs_predicte__me_currency_ab3", - "deals_prop_bb8_hs_predicted___home_currency", - "deals_prop_cc3_hs_date_exi___closedlost_ab1", - "deals_prop_cc3_hs_date_exi___closedlost_ab2", - "deals_prop_cc3_hs_date_exi___closedlost_ab3", - "deals_prop_cf9_hs_time_in___ntscheduled_ab1", - "deals_prop_cf9_hs_time_in___ntscheduled_ab2", - "deals_prop_cf9_hs_time_in___ntscheduled_ab3", - "deals_prop_cf9_hs_time_in_ap__mentscheduled", - "deals_prop_d85_hs_date_exi__lifiedtobuy_ab1", - "deals_prop_d85_hs_date_exi__lifiedtobuy_ab2", - "deals_prop_d85_hs_date_exi__lifiedtobuy_ab3", - "deals_prop_d85_hs_date_exite__ualifiedtobuy", - "deals_prop_db7_hs_line_ite___start_date_ab1", - "deals_prop_db7_hs_line_ite___start_date_ab2", - "deals_prop_db7_hs_line_ite___start_date_ab3", - "deals_prop_db7_hs_line_item___ng_start_date", - "deals_prop_db9_hs_deal_sta__probability_ab1", - "deals_prop_db9_hs_deal_sta__probability_ab2", - "deals_prop_db9_hs_deal_sta__probability_ab3", - "deals_prop_de9_hs_date_ent__d_closedwon_ab1", - "deals_prop_de9_hs_date_ent__d_closedwon_ab2", - "deals_prop_de9_hs_date_ent__d_closedwon_ab3", - "deals_prop_e4a_hs_line_ite__ncy_enabled_ab1", - "deals_prop_e4a_hs_line_ite__ncy_enabled_ab2", - "deals_prop_e4a_hs_line_ite__ncy_enabled_ab3", - "deals_prop_e4a_hs_line_item___uency_enabled", - "deals_prop_edd_hs_date_exi__sedwonstage_ab1", - "deals_prop_edd_hs_date_exi__sedwonstage_ab2", - "deals_prop_edd_hs_date_exi__sedwonstage_ab3", - "deals_prop_edd_hs_date_exite__losedwonstage", - "deals_prop_f0b_hs_date_ent__kerboughtin_ab1", - "deals_prop_f0b_hs_date_ent__kerboughtin_ab2", - "deals_prop_f0b_hs_date_ent__kerboughtin_ab3", - "deals_prop_f0b_hs_date_enter__makerboughtin", - "deals_prop_f0d_hs_closed_a__me_currency_ab1", - "deals_prop_f0d_hs_closed_a__me_currency_ab2", - "deals_prop_f0d_hs_closed_a__me_currency_ab3", - "deals_prop_f0d_hs_closed_amo__home_currency", - "deals_prop_f57_hs_projecte__me_currency_ab1", - "deals_prop_f57_hs_projecte__me_currency_ab2", - "deals_prop_f57_hs_projecte__me_currency_ab3", - "deals_prop_f57_hs_projected___home_currency", - "deals_prope_328_num_associated_contacts_ab1", - "deals_prope_328_num_associated_contacts_ab2", - "deals_prope_328_num_associated_contacts_ab3", - "deals_prope_49b_hs_forecast_probability_ab1", - "deals_prope_49b_hs_forecast_probability_ab2", - "deals_prope_49b_hs_forecast_probability_ab3", - "deals_prope_851_hs_date_entered_9567448_ab1", - "deals_prope_851_hs_date_entered_9567448_ab2", - "deals_prope_851_hs_date_entered_9567448_ab3", - "deals_prope_879_hs_date_exited_contractsent", - "deals_prope_918_hs_manual_forecast_category", - "deals_prope_923_hs_sales_email_last_replied", - "deals_prope_976_hs_date_entered_9567449_ab1", - "deals_prope_976_hs_date_entered_9567449_ab2", - "deals_prope_976_hs_date_entered_9567449_ab3", - "deals_prope_ba5_amount_in_home_currency_ab1", - "deals_prope_ba5_amount_in_home_currency_ab2", - "deals_prope_ba5_amount_in_home_currency_ab3", - "deals_prope_cc2_hs_time_in_contractsent_ab1", - "deals_prope_cc2_hs_time_in_contractsent_ab2", - "deals_prope_cc2_hs_time_in_contractsent_ab3", - "deals_proper_247_hs_date_exited_9567449_ab1", - "deals_proper_247_hs_date_exited_9567449_ab2", - "deals_proper_247_hs_date_exited_9567449_ab3", - "deals_proper_38b_hubspot_owner_assigneddate", - "deals_proper_417_hs_all_accessible_team_ids", - "deals_proper_500_hs_date_entered_closedlost", - "deals_proper_5ad_hs_likelihood_to_close_ab1", - "deals_proper_5ad_hs_likelihood_to_close_ab2", - "deals_proper_5ad_hs_likelihood_to_close_ab3", - "deals_proper_7e0_hs_analytics_source_data_2", - "deals_proper_9d5_hs_latest_meeting_activity", - "deals_proper_a14_hs_analytics_source_data_1", - "deals_proper_ad9_hs_date_exited_9567448_ab1", - "deals_proper_ad9_hs_date_exited_9567448_ab2", - "deals_proper_ad9_hs_date_exited_9567448_ab3", - "deals_propert_8b2_hs_time_in_qualifiedtobuy", - "deals_propert_8cd_hs_user_ids_of_all_owners", - "deals_propert_b8c_hs_time_in_closedlost_ab1", - "deals_propert_b8c_hs_time_in_closedlost_ab2", - "deals_propert_b8c_hs_time_in_closedlost_ab3", - "deals_propert_c18_hs_created_by_user_id_ab1", - "deals_propert_c18_hs_created_by_user_id_ab2", - "deals_propert_c18_hs_created_by_user_id_ab3", - "deals_propert_ca9_hs_updated_by_user_id_ab1", - "deals_propert_ca9_hs_updated_by_user_id_ab2", - "deals_propert_ca9_hs_updated_by_user_id_ab3", - "deals_propert_cc3_hs_date_exited_closedlost", - "deals_propert_db9_hs_deal_stage_probability", - "deals_propert_de9_hs_date_entered_closedwon", - "deals_properti_3e3_hs_date_exited_closedwon", - "deals_properti_540_hs_merged_object_ids_ab1", - "deals_properti_540_hs_merged_object_ids_ab2", - "deals_properti_540_hs_merged_object_ids_ab3", - "deals_properti_66c_hs_time_in_closedwon_ab1", - "deals_properti_66c_hs_time_in_closedwon_ab2", - "deals_properti_66c_hs_time_in_closedwon_ab3", - "deals_properti_93a_notes_last_contacted_ab1", - "deals_properti_93a_notes_last_contacted_ab2", - "deals_properti_93a_notes_last_contacted_ab3", - "deals_properti_987_notes_next_activity_date", - "deals_propertie_328_num_associated_contacts", - "deals_propertie_49b_hs_forecast_probability", - "deals_propertie_5fb_hs_analytics_source_ab1", - "deals_propertie_5fb_hs_analytics_source_ab2", - "deals_propertie_5fb_hs_analytics_source_ab3", - "deals_propertie_610_hs_projected_amount_ab1", - "deals_propertie_610_hs_projected_amount_ab2", - "deals_propertie_610_hs_projected_amount_ab3", - "deals_propertie_851_hs_date_entered_9567448", - "deals_propertie_8da_num_contacted_notes_ab1", - "deals_propertie_8da_num_contacted_notes_ab2", - "deals_propertie_8da_num_contacted_notes_ab3", - "deals_propertie_976_hs_date_entered_9567449", - "deals_propertie_9ca_hs_lastmodifieddate_ab1", - "deals_propertie_9ca_hs_lastmodifieddate_ab2", - "deals_propertie_9ca_hs_lastmodifieddate_ab3", - "deals_propertie_ba5_amount_in_home_currency", - "deals_propertie_c00_hs_predicted_amount_ab1", - "deals_propertie_c00_hs_predicted_amount_ab2", - "deals_propertie_c00_hs_predicted_amount_ab3", - "deals_propertie_cc2_hs_time_in_contractsent", - "deals_properties_0d7_hs_tcv", - "deals_properties_0d7_hs_tcv_ab1", - "deals_properties_0d7_hs_tcv_ab2", - "deals_properties_0d7_hs_tcv_ab3", - "deals_properties_121_amount", - "deals_properties_121_amount_ab1", - "deals_properties_121_amount_ab2", - "deals_properties_121_amount_ab3", - "deals_properties_247_hs_date_exited_9567449", - "deals_properties_395_hs_arr", - "deals_properties_395_hs_arr_ab1", - "deals_properties_395_hs_arr_ab2", - "deals_properties_395_hs_arr_ab3", - "deals_properties_3b2_hs_time_in_9567449", - "deals_properties_3b2_hs_time_in_9567449_ab1", - "deals_properties_3b2_hs_time_in_9567449_ab2", - "deals_properties_3b2_hs_time_in_9567449_ab3", - "deals_properties_3c9_hs_next_step", - "deals_properties_3c9_hs_next_step_ab1", - "deals_properties_3c9_hs_next_step_ab2", - "deals_properties_3c9_hs_next_step_ab3", - "deals_properties_3ec_days_to_close", - "deals_properties_3ec_days_to_close_ab1", - "deals_properties_3ec_days_to_close_ab2", - "deals_properties_3ec_days_to_close_ab3", - "deals_properties_43e_dealstage", - "deals_properties_43e_dealstage_ab1", - "deals_properties_43e_dealstage_ab2", - "deals_properties_43e_dealstage_ab3", - "deals_properties_478_notes_last_updated", - "deals_properties_478_notes_last_updated_ab1", - "deals_properties_478_notes_last_updated_ab2", - "deals_properties_478_notes_last_updated_ab3", - "deals_properties_540_hs_merged_object_ids", - "deals_properties_58a_num_notes", - "deals_properties_58a_num_notes_ab1", - "deals_properties_58a_num_notes_ab2", - "deals_properties_58a_num_notes_ab3", - "deals_properties_5ad_hs_likelihood_to_close", - "deals_properties_5c1_hs_acv", - "deals_properties_5c1_hs_acv_ab1", - "deals_properties_5c1_hs_acv_ab2", - "deals_properties_5c1_hs_acv_ab3", - "deals_properties_5e3_hubspot_team_id", - "deals_properties_5e3_hubspot_team_id_ab1", - "deals_properties_5e3_hubspot_team_id_ab2", - "deals_properties_5e3_hubspot_team_id_ab3", - "deals_properties_5fb_hs_analytics_source", - "deals_properties_610_hs_projected_amount", - "deals_properties_657_pipeline", - "deals_properties_657_pipeline_ab1", - "deals_properties_657_pipeline_ab2", - "deals_properties_657_pipeline_ab3", - "deals_properties_66c_hs_time_in_closedwon", - "deals_properties_6d2_hs_mrr", - "deals_properties_6d2_hs_mrr_ab1", - "deals_properties_6d2_hs_mrr_ab2", - "deals_properties_6d2_hs_mrr_ab3", - "deals_properties_711_dealname", - "deals_properties_711_dealname_ab1", - "deals_properties_711_dealname_ab2", - "deals_properties_711_dealname_ab3", - "deals_properties_764_hs_is_closed", - "deals_properties_764_hs_is_closed_ab1", - "deals_properties_764_hs_is_closed_ab2", - "deals_properties_764_hs_is_closed_ab3", - "deals_properties_8da_num_contacted_notes", - "deals_properties_910_closed_lost_reason", - "deals_properties_910_closed_lost_reason_ab1", - "deals_properties_910_closed_lost_reason_ab2", - "deals_properties_910_closed_lost_reason_ab3", - "deals_properties_93a_notes_last_contacted", - "deals_properties_983_createdate", - "deals_properties_983_createdate_ab1", - "deals_properties_983_createdate_ab2", - "deals_properties_983_createdate_ab3", - "deals_properties_9ca_hs_lastmodifieddate", - "deals_properties_ad9_hs_date_exited_9567448", - "deals_properties_b0b_hubspot_owner_id", - "deals_properties_b0b_hubspot_owner_id_ab1", - "deals_properties_b0b_hubspot_owner_id_ab2", - "deals_properties_b0b_hubspot_owner_id_ab3", - "deals_properties_b7d_hs_all_owner_ids", - "deals_properties_b7d_hs_all_owner_ids_ab1", - "deals_properties_b7d_hs_all_owner_ids_ab2", - "deals_properties_b7d_hs_all_owner_ids_ab3", - "deals_properties_b8c_hs_time_in_closedlost", - "deals_properties_c00_hs_predicted_amount", - "deals_properties_c0c_description", - "deals_properties_c0c_description_ab1", - "deals_properties_c0c_description_ab2", - "deals_properties_c0c_description_ab3", - "deals_properties_c18_hs_created_by_user_id", - "deals_properties_c8e_closed_won_reason", - "deals_properties_c8e_closed_won_reason_ab1", - "deals_properties_c8e_closed_won_reason_ab2", - "deals_properties_c8e_closed_won_reason_ab3", - "deals_properties_ca9_hs_updated_by_user_id", - "deals_properties_cdb_hs_time_in_9567448", - "deals_properties_cdb_hs_time_in_9567448_ab1", - "deals_properties_cdb_hs_time_in_9567448_ab2", - "deals_properties_cdb_hs_time_in_9567448_ab3", - "deals_properties_ce2_hs_all_team_ids", - "deals_properties_ce2_hs_all_team_ids_ab1", - "deals_properties_ce2_hs_all_team_ids_ab2", - "deals_properties_ce2_hs_all_team_ids_ab3", - "deals_properties_df7_hs_forecast_amount", - "deals_properties_df7_hs_forecast_amount_ab1", - "deals_properties_df7_hs_forecast_amount_ab2", - "deals_properties_df7_hs_forecast_amount_ab3", - "deals_properties_e6e_closedate", - "deals_properties_e6e_closedate_ab1", - "deals_properties_e6e_closedate_ab2", - "deals_properties_e6e_closedate_ab3", - "deals_properties_e99_hs_object_id", - "deals_properties_e99_hs_object_id_ab1", - "deals_properties_e99_hs_object_id_ab2", - "deals_properties_e99_hs_object_id_ab3", - "deals_properties_f29_hs_closed_amount", - "deals_properties_f29_hs_closed_amount_ab1", - "deals_properties_f29_hs_closed_amount_ab2", - "deals_properties_f29_hs_closed_amount_ab3", - "deals_properties_f61_hs_createdate", - "deals_properties_f61_hs_createdate_ab1", - "deals_properties_f61_hs_createdate_ab2", - "deals_properties_f61_hs_createdate_ab3", - "deals_properties_fb8_dealtype", - "deals_properties_fb8_dealtype_ab1", - "deals_properties_fb8_dealtype_ab2", - "deals_properties_fb8_dealtype_ab3", - "email_events_04b_location", - "email_events_04b_location_ab1", - "email_events_04b_location_ab2", - "email_events_04b_location_ab3", - "email_events_4bd_browser", - "email_events_4bd_browser_ab1", - "email_events_4bd_browser_ab2", - "email_events_4bd_browser_ab3", - "email_events_df5_sentby", - "email_events_df5_sentby_ab1", - "email_events_df5_sentby_ab2", - "email_events_df5_sentby_ab3", - "engagements_1c3_associations", - "engagements_1c3_associations_ab1", - "engagements_1c3_associations_ab2", - "engagements_1c3_associations_ab3", - "engagements_3c8_attachments", - "engagements_3c8_attachments_ab1", - "engagements_3c8_attachments_ab2", - "engagements_3c8_attachments_ab3", - "engagements_4ef_metadata", - "engagements_4ef_metadata_ab1", - "engagements_4ef_metadata_ab2", - "engagements_4ef_metadata_ab3", - "engagements_760_engagement", - "engagements_760_engagement_ab1", - "engagements_760_engagement_ab2", - "engagements_760_engagement_ab3", - "engagements_metadata_075_to", - "engagements_metadata_075_to_ab1", - "engagements_metadata_075_to_ab2", - "engagements_metadata_075_to_ab3", - "engagements_metadata_444_from", - "engagements_metadata_444_from_ab1", - "engagements_metadata_444_from_ab2", - "engagements_metadata_444_from_ab3", - "engagements_metadata_9a2_cc", - "engagements_metadata_9a2_cc_ab1", - "engagements_metadata_9a2_cc_ab2", - "engagements_metadata_9a2_cc_ab3", - "engagements_metadata_a27_bcc", - "engagements_metadata_a27_bcc_ab1", - "engagements_metadata_a27_bcc_ab2", - "engagements_metadata_a27_bcc_ab3", - "forms_aad_metadata", - "forms_aad_metadata_ab1", - "forms_aad_metadata_ab2", - "forms_aad_metadata_ab3", - "forms_beb_formfieldgroups", - "forms_beb_formfieldgroups_ab1", - "forms_beb_formfieldgroups_ab2", - "forms_beb_formfieldgroups_ab3", - "forms_formfieldgroups_58f_fields", - "forms_formfieldgroups_58f_fields_ab1", - "forms_formfieldgroups_58f_fields_ab2", - "forms_formfieldgroups_58f_fields_ab3", - "forms_formfieldgroups_77e_richtext", - "forms_formfieldgroups_77e_richtext_ab1", - "forms_formfieldgroups_77e_richtext_ab2", - "forms_formfieldgroups_77e_richtext_ab3", - "forms_formfieldgroups_fi_273_validation_ab1", - "forms_formfieldgroups_fi_273_validation_ab2", - "forms_formfieldgroups_fi_273_validation_ab3", - "forms_formfieldgroups_field_642_options_ab1", - "forms_formfieldgroups_field_642_options_ab2", - "forms_formfieldgroups_field_642_options_ab3", - "forms_formfieldgroups_fields_273_validation", - "forms_formfieldgroups_fields_642_options", - "owners_1d3_remotelist", - "owners_1d3_remotelist_ab1", - "owners_1d3_remotelist_ab2", - "owners_1d3_remotelist_ab3", - "subscription_changes_88e_changes", - "subscription_changes_88e_changes_ab1", - "subscription_changes_88e_changes_ab2", - "subscription_changes_88e_changes_ab3", - "subscription_changes__047_causedbyevent_ab1", - "subscription_changes__047_causedbyevent_ab2", - "subscription_changes__047_causedbyevent_ab3", - "subscription_changes_chan_047_causedbyevent", - "workflows_d02_contactlistids", - "workflows_d02_contactlistids_ab1", - "workflows_d02_contactlistids_ab2", - "workflows_d02_contactlistids_ab3" - ] -} diff --git a/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog_expected_nested_redshift.json b/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog_expected_nested_redshift.json deleted file mode 100644 index 9adc6ae764a49d..00000000000000 --- a/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog_expected_nested_redshift.json +++ /dev/null @@ -1,4244 +0,0 @@ -{ - "tables": [ - "campaigns_cd2_counters", - "campaigns_cd2_counters_ab1", - "campaigns_cd2_counters_ab2", - "campaigns_cd2_counters_ab3", - "companies_002_property_hs_analytics_source_timestamp_earliest_value_25a3a52c", - "companies_002_property_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab1", - "companies_002_property_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab2", - "companies_002_property_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab3", - "companies_047_property_recent_deal_amount", - "companies_047_property_recent_deal_amount_ab1", - "companies_047_property_recent_deal_amount_ab2", - "companies_047_property_recent_deal_amount_ab3", - "companies_071_property_hs_sales_email_last_replied", - "companies_071_property_hs_sales_email_last_replied_ab1", - "companies_071_property_hs_sales_email_last_replied_ab2", - "companies_071_property_hs_sales_email_last_replied_ab3", - "companies_09c_property_hubspot_owner_assigneddate", - "companies_09c_property_hubspot_owner_assigneddate_ab1", - "companies_09c_property_hubspot_owner_assigneddate_ab2", - "companies_09c_property_hubspot_owner_assigneddate_ab3", - "companies_09d_property_recent_deal_close_date", - "companies_09d_property_recent_deal_close_date_ab1", - "companies_09d_property_recent_deal_close_date_ab2", - "companies_09d_property_recent_deal_close_date_ab3", - "companies_0bf_property_twitterbio", - "companies_0bf_property_twitterbio_ab1", - "companies_0bf_property_twitterbio_ab2", - "companies_0bf_property_twitterbio_ab3", - "companies_100_property_phone", - "companies_100_property_phone_ab1", - "companies_100_property_phone_ab2", - "companies_100_property_phone_ab3", - "companies_11d_property_industry", - "companies_11d_property_industry_ab1", - "companies_11d_property_industry_ab2", - "companies_11d_property_industry_ab3", - "companies_13d_property_hs_createdate", - "companies_13d_property_hs_createdate_ab1", - "companies_13d_property_hs_createdate_ab2", - "companies_13d_property_hs_createdate_ab3", - "companies_147_property_country", - "companies_147_property_country_ab1", - "companies_147_property_country_ab2", - "companies_147_property_country_ab3", - "companies_14a_property_first_contact_createdate", - "companies_14a_property_first_contact_createdate_ab1", - "companies_14a_property_first_contact_createdate_ab2", - "companies_14a_property_first_contact_createdate_ab3", - "companies_154_property_num_associated_contacts", - "companies_154_property_num_associated_contacts_ab1", - "companies_154_property_num_associated_contacts_ab2", - "companies_154_property_num_associated_contacts_ab3", - "companies_161_property_hubspot_team_id", - "companies_161_property_hubspot_team_id_ab1", - "companies_161_property_hubspot_team_id_ab2", - "companies_161_property_hubspot_team_id_ab3", - "companies_185_property_recent_conversion_event_name_timestamp_latest_value_66c820bf", - "companies_185_property_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab1", - "companies_185_property_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab2", - "companies_185_property_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab3", - "companies_1b3_property_linkedinbio", - "companies_1b3_property_linkedinbio_ab1", - "companies_1b3_property_linkedinbio_ab2", - "companies_1b3_property_linkedinbio_ab3", - "companies_1be_property_hs_num_contacts_with_buying_roles", - "companies_1be_property_hs_num_contacts_with_buying_roles_ab1", - "companies_1be_property_hs_num_contacts_with_buying_roles_ab2", - "companies_1be_property_hs_num_contacts_with_buying_roles_ab3", - "companies_1be_property_hs_object_id", - "companies_1be_property_hs_object_id_ab1", - "companies_1be_property_hs_object_id_ab2", - "companies_1be_property_hs_object_id_ab3", - "companies_1bf_property_hs_target_account_probability", - "companies_1bf_property_hs_target_account_probability_ab1", - "companies_1bf_property_hs_target_account_probability_ab2", - "companies_1bf_property_hs_target_account_probability_ab3", - "companies_1ef_property_hs_total_deal_value", - "companies_1ef_property_hs_total_deal_value_ab1", - "companies_1ef_property_hs_total_deal_value_ab2", - "companies_1ef_property_hs_total_deal_value_ab3", - "companies_22c_property_first_conversion_date_timestamp_earliest_value_61f58f2c", - "companies_22c_property_first_conversion_date_timestamp_earliest_value_61f58f2c_ab1", - "companies_22c_property_first_conversion_date_timestamp_earliest_value_61f58f2c_ab2", - "companies_22c_property_first_conversion_date_timestamp_earliest_value_61f58f2c_ab3", - "companies_244_properties_versions", - "companies_244_properties_versions_ab1", - "companies_244_properties_versions_ab2", - "companies_244_properties_versions_ab3", - "companies_249_property_hs_analytics_first_visit_timestamp", - "companies_249_property_hs_analytics_first_visit_timestamp_ab1", - "companies_249_property_hs_analytics_first_visit_timestamp_ab2", - "companies_249_property_hs_analytics_first_visit_timestamp_ab3", - "companies_24f_property_hs_analytics_first_timestamp", - "companies_24f_property_hs_analytics_first_timestamp_ab1", - "companies_24f_property_hs_analytics_first_timestamp_ab2", - "companies_24f_property_hs_analytics_first_timestamp_ab3", - "companies_275_property_facebook_company_page", - "companies_275_property_facebook_company_page_ab1", - "companies_275_property_facebook_company_page_ab2", - "companies_275_property_facebook_company_page_ab3", - "companies_2a8_property_state", - "companies_2a8_property_state_ab1", - "companies_2a8_property_state_ab2", - "companies_2a8_property_state_ab3", - "companies_2e8_property_engagements_last_meeting_booked_campaign", - "companies_2e8_property_engagements_last_meeting_booked_campaign_ab1", - "companies_2e8_property_engagements_last_meeting_booked_campaign_ab2", - "companies_2e8_property_engagements_last_meeting_booked_campaign_ab3", - "companies_2f1_property_hs_all_team_ids", - "companies_2f1_property_hs_all_team_ids_ab1", - "companies_2f1_property_hs_all_team_ids_ab2", - "companies_2f1_property_hs_all_team_ids_ab3", - "companies_336_property_engagements_last_meeting_booked", - "companies_336_property_engagements_last_meeting_booked_ab1", - "companies_336_property_engagements_last_meeting_booked_ab2", - "companies_336_property_engagements_last_meeting_booked_ab3", - "companies_346_property_hs_avatar_filemanager_key", - "companies_346_property_hs_avatar_filemanager_key_ab1", - "companies_346_property_hs_avatar_filemanager_key_ab2", - "companies_346_property_hs_avatar_filemanager_key_ab3", - "companies_35a_property_hs_latest_meeting_activity", - "companies_35a_property_hs_latest_meeting_activity_ab1", - "companies_35a_property_hs_latest_meeting_activity_ab2", - "companies_35a_property_hs_latest_meeting_activity_ab3", - "companies_376_property_first_contact_createdate_timestamp_earliest_value_78b50eea", - "companies_376_property_first_contact_createdate_timestamp_earliest_value_78b50eea_ab1", - "companies_376_property_first_contact_createdate_timestamp_earliest_value_78b50eea_ab2", - "companies_376_property_first_contact_createdate_timestamp_earliest_value_78b50eea_ab3", - "companies_3c7_property_hs_analytics_first_touch_converting_campaign", - "companies_3c7_property_hs_analytics_first_touch_converting_campaign_ab1", - "companies_3c7_property_hs_analytics_first_touch_converting_campaign_ab2", - "companies_3c7_property_hs_analytics_first_touch_converting_campaign_ab3", - "companies_3d7_property_hs_analytics_num_page_views", - "companies_3d7_property_hs_analytics_num_page_views_ab1", - "companies_3d7_property_hs_analytics_num_page_views_ab2", - "companies_3d7_property_hs_analytics_num_page_views_ab3", - "companies_401_property_first_conversion_event_name_timestamp_earliest_value_68ddae0a", - "companies_401_property_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab1", - "companies_401_property_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab2", - "companies_401_property_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab3", - "companies_429_property_engagements_last_meeting_booked_medium", - "companies_429_property_engagements_last_meeting_booked_medium_ab1", - "companies_429_property_engagements_last_meeting_booked_medium_ab2", - "companies_429_property_engagements_last_meeting_booked_medium_ab3", - "companies_44a_property_hs_last_booked_meeting_date", - "companies_44a_property_hs_last_booked_meeting_date_ab1", - "companies_44a_property_hs_last_booked_meeting_date_ab2", - "companies_44a_property_hs_last_booked_meeting_date_ab3", - "companies_477_property_hs_target_account", - "companies_477_property_hs_target_account_ab1", - "companies_477_property_hs_target_account_ab2", - "companies_477_property_hs_target_account_ab3", - "companies_47c_property_hs_last_open_task_date", - "companies_47c_property_hs_last_open_task_date_ab1", - "companies_47c_property_hs_last_open_task_date_ab2", - "companies_47c_property_hs_last_open_task_date_ab3", - "companies_494_property_hs_last_logged_call_date", - "companies_494_property_hs_last_logged_call_date_ab1", - "companies_494_property_hs_last_logged_call_date_ab2", - "companies_494_property_hs_last_logged_call_date_ab3", - "companies_4ee_property_total_money_raised", - "companies_4ee_property_total_money_raised_ab1", - "companies_4ee_property_total_money_raised_ab2", - "companies_4ee_property_total_money_raised_ab3", - "companies_528_property_recent_conversion_date_timestamp_latest_value_72856da1", - "companies_528_property_recent_conversion_date_timestamp_latest_value_72856da1_ab1", - "companies_528_property_recent_conversion_date_timestamp_latest_value_72856da1_ab2", - "companies_528_property_recent_conversion_date_timestamp_latest_value_72856da1_ab3", - "companies_541_property_hs_analytics_source_data_1", - "companies_541_property_hs_analytics_source_data_1_ab1", - "companies_541_property_hs_analytics_source_data_1_ab2", - "companies_541_property_hs_analytics_source_data_1_ab3", - "companies_57c_property_hs_lastmodifieddate", - "companies_57c_property_hs_lastmodifieddate_ab1", - "companies_57c_property_hs_lastmodifieddate_ab2", - "companies_57c_property_hs_lastmodifieddate_ab3", - "companies_5e4_property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae", - "companies_5e4_property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab1", - "companies_5e4_property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab2", - "companies_5e4_property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab3", - "companies_617_property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10", - "companies_617_property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab1", - "companies_617_property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab2", - "companies_617_property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab3", - "companies_638_property_hs_target_account_recommendation_state", - "companies_638_property_hs_target_account_recommendation_state_ab1", - "companies_638_property_hs_target_account_recommendation_state_ab2", - "companies_638_property_hs_target_account_recommendation_state_ab3", - "companies_64e_property_description", - "companies_64e_property_description_ab1", - "companies_64e_property_description_ab2", - "companies_64e_property_description_ab3", - "companies_64f_property_timezone", - "companies_64f_property_timezone_ab1", - "companies_64f_property_timezone_ab2", - "companies_64f_property_timezone_ab3", - "companies_6b5_property_hs_all_accessible_team_ids", - "companies_6b5_property_hs_all_accessible_team_ids_ab1", - "companies_6b5_property_hs_all_accessible_team_ids_ab2", - "companies_6b5_property_hs_all_accessible_team_ids_ab3", - "companies_6fb_property_type", - "companies_6fb_property_type_ab1", - "companies_6fb_property_type_ab2", - "companies_6fb_property_type_ab3", - "companies_705_property_hs_analytics_num_page_views_cardinality_sum_e46e85b0", - "companies_705_property_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab1", - "companies_705_property_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab2", - "companies_705_property_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab3", - "companies_719_property_num_conversion_events_cardinality_sum_d095f14b", - "companies_719_property_num_conversion_events_cardinality_sum_d095f14b_ab1", - "companies_719_property_num_conversion_events_cardinality_sum_d095f14b_ab2", - "companies_719_property_num_conversion_events_cardinality_sum_d095f14b_ab3", - "companies_749_property_engagements_last_meeting_booked_source", - "companies_749_property_engagements_last_meeting_booked_source_ab1", - "companies_749_property_engagements_last_meeting_booked_source_ab2", - "companies_749_property_engagements_last_meeting_booked_source_ab3", - "companies_777_property_hs_analytics_last_timestamp", - "companies_777_property_hs_analytics_last_timestamp_ab1", - "companies_777_property_hs_analytics_last_timestamp_ab2", - "companies_777_property_hs_analytics_last_timestamp_ab3", - "companies_7a7_property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1", - "companies_7a7_property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab1", - "companies_7a7_property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab2", - "companies_7a7_property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab3", - "companies_7d6_property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400", - "companies_7d6_property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab1", - "companies_7d6_property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab2", - "companies_7d6_property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab3", - "companies_7da_property_hs_analytics_last_touch_converting_campaign", - "companies_7da_property_hs_analytics_last_touch_converting_campaign_ab1", - "companies_7da_property_hs_analytics_last_touch_converting_campaign_ab2", - "companies_7da_property_hs_analytics_last_touch_converting_campaign_ab3", - "companies_7ff_properties", - "companies_7ff_properties_ab1", - "companies_7ff_properties_ab2", - "companies_7ff_properties_ab3", - "companies_851_property_twitterfollowers", - "companies_851_property_twitterfollowers_ab1", - "companies_851_property_twitterfollowers_ab2", - "companies_851_property_twitterfollowers_ab3", - "companies_888_property_hs_parent_company_id", - "companies_888_property_hs_parent_company_id_ab1", - "companies_888_property_hs_parent_company_id_ab2", - "companies_888_property_hs_parent_company_id_ab3", - "companies_8a9_property_website", - "companies_8a9_property_website_ab1", - "companies_8a9_property_website_ab2", - "companies_8a9_property_website_ab3", - "companies_8c4_property_closedate", - "companies_8c4_property_closedate_ab1", - "companies_8c4_property_closedate_ab2", - "companies_8c4_property_closedate_ab3", - "companies_8c9_property_hs_num_blockers", - "companies_8c9_property_hs_num_blockers_ab1", - "companies_8c9_property_hs_num_blockers_ab2", - "companies_8c9_property_hs_num_blockers_ab3", - "companies_8df_property_num_contacted_notes", - "companies_8df_property_num_contacted_notes_ab1", - "companies_8df_property_num_contacted_notes_ab2", - "companies_8df_property_num_contacted_notes_ab3", - "companies_8fe_property_createdate", - "companies_8fe_property_createdate_ab1", - "companies_8fe_property_createdate_ab2", - "companies_8fe_property_createdate_ab3", - "companies_905_property_zip", - "companies_905_property_zip_ab1", - "companies_905_property_zip_ab2", - "companies_905_property_zip_ab3", - "companies_90d_property_hs_analytics_source", - "companies_90d_property_hs_analytics_source_ab1", - "companies_90d_property_hs_analytics_source_ab2", - "companies_90d_property_hs_analytics_source_ab3", - "companies_91a_property_hs_analytics_source_data_2", - "companies_91a_property_hs_analytics_source_data_2_ab1", - "companies_91a_property_hs_analytics_source_data_2_ab2", - "companies_91a_property_hs_analytics_source_data_2_ab3", - "companies_944_property_facebookfans", - "companies_944_property_facebookfans_ab1", - "companies_944_property_facebookfans_ab2", - "companies_944_property_facebookfans_ab3", - "companies_960_property_hs_num_decision_makers", - "companies_960_property_hs_num_decision_makers_ab1", - "companies_960_property_hs_num_decision_makers_ab2", - "companies_960_property_hs_num_decision_makers_ab3", - "companies_97f_property_googleplus_page", - "companies_97f_property_googleplus_page_ab1", - "companies_97f_property_googleplus_page_ab2", - "companies_97f_property_googleplus_page_ab3", - "companies_9b2_property_annualrevenue", - "companies_9b2_property_annualrevenue_ab1", - "companies_9b2_property_annualrevenue_ab2", - "companies_9b2_property_annualrevenue_ab3", - "companies_9d5_property_num_notes", - "companies_9d5_property_num_notes_ab1", - "companies_9d5_property_num_notes_ab2", - "companies_9d5_property_num_notes_ab3", - "companies_9d9_property_hs_analytics_last_visit_timestamp", - "companies_9d9_property_hs_analytics_last_visit_timestamp_ab1", - "companies_9d9_property_hs_analytics_last_visit_timestamp_ab2", - "companies_9d9_property_hs_analytics_last_visit_timestamp_ab3", - "companies_acc_property_num_associated_deals", - "companies_acc_property_num_associated_deals_ab1", - "companies_acc_property_num_associated_deals_ab2", - "companies_acc_property_num_associated_deals_ab3", - "companies_b26_property_linkedin_company_page", - "companies_b26_property_linkedin_company_page_ab1", - "companies_b26_property_linkedin_company_page_ab2", - "companies_b26_property_linkedin_company_page_ab3", - "companies_b38_property_closedate_timestamp_earliest_value_a2a17e6e", - "companies_b38_property_closedate_timestamp_earliest_value_a2a17e6e_ab1", - "companies_b38_property_closedate_timestamp_earliest_value_a2a17e6e_ab2", - "companies_b38_property_closedate_timestamp_earliest_value_a2a17e6e_ab3", - "companies_b4f_property_hs_num_child_companies", - "companies_b4f_property_hs_num_child_companies_ab1", - "companies_b4f_property_hs_num_child_companies_ab2", - "companies_b4f_property_hs_num_child_companies_ab3", - "companies_b66_property_address", - "companies_b66_property_address_ab1", - "companies_b66_property_address_ab2", - "companies_b66_property_address_ab3", - "companies_b6e_property_hs_all_owner_ids", - "companies_b6e_property_hs_all_owner_ids_ab1", - "companies_b6e_property_hs_all_owner_ids_ab2", - "companies_b6e_property_hs_all_owner_ids_ab3", - "companies_b77_property_days_to_close", - "companies_b77_property_days_to_close_ab1", - "companies_b77_property_days_to_close_ab2", - "companies_b77_property_days_to_close_ab3", - "companies_ba0_property_hubspot_owner_id", - "companies_ba0_property_hubspot_owner_id_ab1", - "companies_ba0_property_hubspot_owner_id_ab2", - "companies_ba0_property_hubspot_owner_id_ab3", - "companies_bd5_property_web_technologies", - "companies_bd5_property_web_technologies_ab1", - "companies_bd5_property_web_technologies_ab2", - "companies_bd5_property_web_technologies_ab3", - "companies_bdb_property_lifecyclestage", - "companies_bdb_property_lifecyclestage_ab1", - "companies_bdb_property_lifecyclestage_ab2", - "companies_bdb_property_lifecyclestage_ab3", - "companies_bec_property_hs_analytics_num_visits_cardinality_sum_53d952a6", - "companies_bec_property_hs_analytics_num_visits_cardinality_sum_53d952a6_ab1", - "companies_bec_property_hs_analytics_num_visits_cardinality_sum_53d952a6_ab2", - "companies_bec_property_hs_analytics_num_visits_cardinality_sum_53d952a6_ab3", - "companies_c41_property_is_public", - "companies_c41_property_is_public_ab1", - "companies_c41_property_is_public_ab2", - "companies_c41_property_is_public_ab3", - "companies_c5a_property_hs_is_target_account", - "companies_c5a_property_hs_is_target_account_ab1", - "companies_c5a_property_hs_is_target_account_ab2", - "companies_c5a_property_hs_is_target_account_ab3", - "companies_c5d_property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce", - "companies_c5d_property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab1", - "companies_c5d_property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab2", - "companies_c5d_property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab3", - "companies_c65_property_notes_last_updated", - "companies_c65_property_notes_last_updated_ab1", - "companies_c65_property_notes_last_updated_ab2", - "companies_c65_property_notes_last_updated_ab3", - "companies_ca3_property_hs_ideal_customer_profile", - "companies_ca3_property_hs_ideal_customer_profile_ab1", - "companies_ca3_property_hs_ideal_customer_profile_ab2", - "companies_ca3_property_hs_ideal_customer_profile_ab3", - "companies_ccf_property_hs_lead_status", - "companies_ccf_property_hs_lead_status_ab1", - "companies_ccf_property_hs_lead_status_ab2", - "companies_ccf_property_hs_lead_status_ab3", - "companies_ce3_property_hs_target_account_recommendation_snooze_time", - "companies_ce3_property_hs_target_account_recommendation_snooze_time_ab1", - "companies_ce3_property_hs_target_account_recommendation_snooze_time_ab2", - "companies_ce3_property_hs_target_account_recommendation_snooze_time_ab3", - "companies_d62_property_twitterhandle", - "companies_d62_property_twitterhandle_ab1", - "companies_d62_property_twitterhandle_ab2", - "companies_d62_property_twitterhandle_ab3", - "companies_d75_property_notes_next_activity_date", - "companies_d75_property_notes_next_activity_date_ab1", - "companies_d75_property_notes_next_activity_date_ab2", - "companies_d75_property_notes_next_activity_date_ab3", - "companies_d82_property_city", - "companies_d82_property_city_ab1", - "companies_d82_property_city_ab2", - "companies_d82_property_city_ab3", - "companies_d8c_property_hs_last_sales_activity_timestamp", - "companies_d8c_property_hs_last_sales_activity_timestamp_ab1", - "companies_d8c_property_hs_last_sales_activity_timestamp_ab2", - "companies_d8c_property_hs_last_sales_activity_timestamp_ab3", - "companies_db7_property_hs_analytics_num_visits", - "companies_db7_property_hs_analytics_num_visits_ab1", - "companies_db7_property_hs_analytics_num_visits_ab2", - "companies_db7_property_hs_analytics_num_visits_ab3", - "companies_dd0_property_about_us", - "companies_dd0_property_about_us_ab1", - "companies_dd0_property_about_us_ab2", - "companies_dd0_property_about_us_ab3", - "companies_ddf_property_numberofemployees", - "companies_ddf_property_numberofemployees_ab1", - "companies_ddf_property_numberofemployees_ab2", - "companies_ddf_property_numberofemployees_ab3", - "companies_de4_property_total_revenue", - "companies_de4_property_total_revenue_ab1", - "companies_de4_property_total_revenue_ab2", - "companies_de4_property_total_revenue_ab3", - "companies_e0e_property_hs_merged_object_ids", - "companies_e0e_property_hs_merged_object_ids_ab1", - "companies_e0e_property_hs_merged_object_ids_ab2", - "companies_e0e_property_hs_merged_object_ids_ab3", - "companies_e13_property_founded_year", - "companies_e13_property_founded_year_ab1", - "companies_e13_property_founded_year_ab2", - "companies_e13_property_founded_year_ab3", - "companies_e27_property_address2", - "companies_e27_property_address2_ab1", - "companies_e27_property_address2_ab2", - "companies_e27_property_address2_ab3", - "companies_e42_property_hs_user_ids_of_all_owners", - "companies_e42_property_hs_user_ids_of_all_owners_ab1", - "companies_e42_property_hs_user_ids_of_all_owners_ab2", - "companies_e42_property_hs_user_ids_of_all_owners_ab3", - "companies_e46_property_hs_updated_by_user_id", - "companies_e46_property_hs_updated_by_user_id_ab1", - "companies_e46_property_hs_updated_by_user_id_ab2", - "companies_e46_property_hs_updated_by_user_id_ab3", - "companies_e48_property_first_deal_created_date", - "companies_e48_property_first_deal_created_date_ab1", - "companies_e48_property_first_deal_created_date_ab2", - "companies_e48_property_first_deal_created_date_ab3", - "companies_e5f_property_domain", - "companies_e5f_property_domain_ab1", - "companies_e5f_property_domain_ab2", - "companies_e5f_property_domain_ab3", - "companies_e90_property_hs_num_open_deals", - "companies_e90_property_hs_num_open_deals_ab1", - "companies_e90_property_hs_num_open_deals_ab2", - "companies_e90_property_hs_num_open_deals_ab3", - "companies_e9f_property_hs_additional_domains", - "companies_e9f_property_hs_additional_domains_ab1", - "companies_e9f_property_hs_additional_domains_ab2", - "companies_e9f_property_hs_additional_domains_ab3", - "companies_eac_property_hs_created_by_user_id", - "companies_eac_property_hs_created_by_user_id_ab1", - "companies_eac_property_hs_created_by_user_id_ab2", - "companies_eac_property_hs_created_by_user_id_ab3", - "companies_ebe_property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a", - "companies_ebe_property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab1", - "companies_ebe_property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab2", - "companies_ebe_property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab3", - "companies_ed2_property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30", - "companies_ed2_property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab1", - "companies_ed2_property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab2", - "companies_ed2_property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab3", - "companies_f07_property_name", - "companies_f07_property_name_ab1", - "companies_f07_property_name_ab2", - "companies_f07_property_name_ab3", - "companies_f20_property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a", - "companies_f20_property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab1", - "companies_f20_property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab2", - "companies_f20_property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab3", - "companies_f39_property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e", - "companies_f39_property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab1", - "companies_f39_property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab2", - "companies_f39_property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab3", - "companies_f76_property_hs_last_sales_activity_date", - "companies_f76_property_hs_last_sales_activity_date_ab1", - "companies_f76_property_hs_last_sales_activity_date_ab2", - "companies_f76_property_hs_last_sales_activity_date_ab3", - "companies_fbd_property_notes_last_contacted", - "companies_fbd_property_notes_last_contacted_ab1", - "companies_fbd_property_notes_last_contacted_ab2", - "companies_fbd_property_notes_last_contacted_ab3", - "companies_properties_004_notes_last_contacted", - "companies_properties_004_notes_last_contacted_ab1", - "companies_properties_004_notes_last_contacted_ab2", - "companies_properties_004_notes_last_contacted_ab3", - "companies_properties_018_hs_latest_meeting_activity", - "companies_properties_018_hs_latest_meeting_activity_ab1", - "companies_properties_018_hs_latest_meeting_activity_ab2", - "companies_properties_018_hs_latest_meeting_activity_ab3", - "companies_properties_01e_recent_deal_amount", - "companies_properties_01e_recent_deal_amount_ab1", - "companies_properties_01e_recent_deal_amount_ab2", - "companies_properties_01e_recent_deal_amount_ab3", - "companies_properties_05c_hs_num_contacts_with_buying_roles", - "companies_properties_05c_hs_num_contacts_with_buying_roles_ab1", - "companies_properties_05c_hs_num_contacts_with_buying_roles_ab2", - "companies_properties_05c_hs_num_contacts_with_buying_roles_ab3", - "companies_properties_08d_numberofemployees", - "companies_properties_08d_numberofemployees_ab1", - "companies_properties_08d_numberofemployees_ab2", - "companies_properties_08d_numberofemployees_ab3", - "companies_properties_0b7_first_contact_createdate_timestamp_earliest_value_78b50eea", - "companies_properties_0b7_first_contact_createdate_timestamp_earliest_value_78b50eea_ab1", - "companies_properties_0b7_first_contact_createdate_timestamp_earliest_value_78b50eea_ab2", - "companies_properties_0b7_first_contact_createdate_timestamp_earliest_value_78b50eea_ab3", - "companies_properties_0b9_hs_analytics_source_data_1", - "companies_properties_0b9_hs_analytics_source_data_1_ab1", - "companies_properties_0b9_hs_analytics_source_data_1_ab2", - "companies_properties_0b9_hs_analytics_source_data_1_ab3", - "companies_properties_0bc_recent_deal_close_date", - "companies_properties_0bc_recent_deal_close_date_ab1", - "companies_properties_0bc_recent_deal_close_date_ab2", - "companies_properties_0bc_recent_deal_close_date_ab3", - "companies_properties_0cb_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a", - "companies_properties_0cb_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab1", - "companies_properties_0cb_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab2", - "companies_properties_0cb_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab3", - "companies_properties_100_twitterhandle", - "companies_properties_100_twitterhandle_ab1", - "companies_properties_100_twitterhandle_ab2", - "companies_properties_100_twitterhandle_ab3", - "companies_properties_121_hs_analytics_source", - "companies_properties_121_hs_analytics_source_ab1", - "companies_properties_121_hs_analytics_source_ab2", - "companies_properties_121_hs_analytics_source_ab3", - "companies_properties_138_twitterbio", - "companies_properties_138_twitterbio_ab1", - "companies_properties_138_twitterbio_ab2", - "companies_properties_138_twitterbio_ab3", - "companies_properties_177_linkedin_company_page", - "companies_properties_177_linkedin_company_page_ab1", - "companies_properties_177_linkedin_company_page_ab2", - "companies_properties_177_linkedin_company_page_ab3", - "companies_properties_181_about_us", - "companies_properties_181_about_us_ab1", - "companies_properties_181_about_us_ab2", - "companies_properties_181_about_us_ab3", - "companies_properties_1ab_hs_last_logged_call_date", - "companies_properties_1ab_hs_last_logged_call_date_ab1", - "companies_properties_1ab_hs_last_logged_call_date_ab2", - "companies_properties_1ab_hs_last_logged_call_date_ab3", - "companies_properties_1b6_googleplus_page", - "companies_properties_1b6_googleplus_page_ab1", - "companies_properties_1b6_googleplus_page_ab2", - "companies_properties_1b6_googleplus_page_ab3", - "companies_properties_1d0_timezone", - "companies_properties_1d0_timezone_ab1", - "companies_properties_1d0_timezone_ab2", - "companies_properties_1d0_timezone_ab3", - "companies_properties_1d7_industry", - "companies_properties_1d7_industry_ab1", - "companies_properties_1d7_industry_ab2", - "companies_properties_1d7_industry_ab3", - "companies_properties_1fe_recent_conversion_event_name_timestamp_latest_value_66c820bf", - "companies_properties_1fe_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab1", - "companies_properties_1fe_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab2", - "companies_properties_1fe_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab3", - "companies_properties_220_hs_target_account", - "companies_properties_220_hs_target_account_ab1", - "companies_properties_220_hs_target_account_ab2", - "companies_properties_220_hs_target_account_ab3", - "companies_properties_259_first_conversion_date_timestamp_earliest_value_61f58f2c", - "companies_properties_259_first_conversion_date_timestamp_earliest_value_61f58f2c_ab1", - "companies_properties_259_first_conversion_date_timestamp_earliest_value_61f58f2c_ab2", - "companies_properties_259_first_conversion_date_timestamp_earliest_value_61f58f2c_ab3", - "companies_properties_27e_hs_createdate", - "companies_properties_27e_hs_createdate_ab1", - "companies_properties_27e_hs_createdate_ab2", - "companies_properties_27e_hs_createdate_ab3", - "companies_properties_29c_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce", - "companies_properties_29c_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab1", - "companies_properties_29c_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab2", - "companies_properties_29c_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab3", - "companies_properties_2db_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae", - "companies_properties_2db_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab1", - "companies_properties_2db_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab2", - "companies_properties_2db_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab3", - "companies_properties_2fa_hs_additional_domains", - "companies_properties_2fa_hs_additional_domains_ab1", - "companies_properties_2fa_hs_additional_domains_ab2", - "companies_properties_2fa_hs_additional_domains_ab3", - "companies_properties_30a_num_associated_deals", - "companies_properties_30a_num_associated_deals_ab1", - "companies_properties_30a_num_associated_deals_ab2", - "companies_properties_30a_num_associated_deals_ab3", - "companies_properties_30d_hs_lastmodifieddate", - "companies_properties_30d_hs_lastmodifieddate_ab1", - "companies_properties_30d_hs_lastmodifieddate_ab2", - "companies_properties_30d_hs_lastmodifieddate_ab3", - "companies_properties_330_hs_merged_object_ids", - "companies_properties_330_hs_merged_object_ids_ab1", - "companies_properties_330_hs_merged_object_ids_ab2", - "companies_properties_330_hs_merged_object_ids_ab3", - "companies_properties_393_hs_last_sales_activity_date", - "companies_properties_393_hs_last_sales_activity_date_ab1", - "companies_properties_393_hs_last_sales_activity_date_ab2", - "companies_properties_393_hs_last_sales_activity_date_ab3", - "companies_properties_3c9_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1", - "companies_properties_3c9_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab1", - "companies_properties_3c9_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab2", - "companies_properties_3c9_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab3", - "companies_properties_44b_num_associated_contacts", - "companies_properties_44b_num_associated_contacts_ab1", - "companies_properties_44b_num_associated_contacts_ab2", - "companies_properties_44b_num_associated_contacts_ab3", - "companies_properties_462_phone", - "companies_properties_462_phone_ab1", - "companies_properties_462_phone_ab2", - "companies_properties_462_phone_ab3", - "companies_properties_485_first_contact_createdate", - "companies_properties_485_first_contact_createdate_ab1", - "companies_properties_485_first_contact_createdate_ab2", - "companies_properties_485_first_contact_createdate_ab3", - "companies_properties_521_total_money_raised", - "companies_properties_521_total_money_raised_ab1", - "companies_properties_521_total_money_raised_ab2", - "companies_properties_521_total_money_raised_ab3", - "companies_properties_529_recent_conversion_date_timestamp_latest_value_72856da1", - "companies_properties_529_recent_conversion_date_timestamp_latest_value_72856da1_ab1", - "companies_properties_529_recent_conversion_date_timestamp_latest_value_72856da1_ab2", - "companies_properties_529_recent_conversion_date_timestamp_latest_value_72856da1_ab3", - "companies_properties_5f0_hs_analytics_last_timestamp", - "companies_properties_5f0_hs_analytics_last_timestamp_ab1", - "companies_properties_5f0_hs_analytics_last_timestamp_ab2", - "companies_properties_5f0_hs_analytics_last_timestamp_ab3", - "companies_properties_62b_hs_lead_status", - "companies_properties_62b_hs_lead_status_ab1", - "companies_properties_62b_hs_lead_status_ab2", - "companies_properties_62b_hs_lead_status_ab3", - "companies_properties_65a_annualrevenue", - "companies_properties_65a_annualrevenue_ab1", - "companies_properties_65a_annualrevenue_ab2", - "companies_properties_65a_annualrevenue_ab3", - "companies_properties_65d_founded_year", - "companies_properties_65d_founded_year_ab1", - "companies_properties_65d_founded_year_ab2", - "companies_properties_65d_founded_year_ab3", - "companies_properties_6bf_facebook_company_page", - "companies_properties_6bf_facebook_company_page_ab1", - "companies_properties_6bf_facebook_company_page_ab2", - "companies_properties_6bf_facebook_company_page_ab3", - "companies_properties_6d5_hs_predictivecontactscore_v2_next_max_max_d4e58c1e", - "companies_properties_6d5_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab1", - "companies_properties_6d5_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab2", - "companies_properties_6d5_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab3", - "companies_properties_6eb_first_conversion_event_name_timestamp_earliest_value_68ddae0a", - "companies_properties_6eb_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab1", - "companies_properties_6eb_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab2", - "companies_properties_6eb_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab3", - "companies_properties_6ee_hs_target_account_probability", - "companies_properties_6ee_hs_target_account_probability_ab1", - "companies_properties_6ee_hs_target_account_probability_ab2", - "companies_properties_6ee_hs_target_account_probability_ab3", - "companies_properties_701_days_to_close", - "companies_properties_701_days_to_close_ab1", - "companies_properties_701_days_to_close_ab2", - "companies_properties_701_days_to_close_ab3", - "companies_properties_71a_hs_num_decision_makers", - "companies_properties_71a_hs_num_decision_makers_ab1", - "companies_properties_71a_hs_num_decision_makers_ab2", - "companies_properties_71a_hs_num_decision_makers_ab3", - "companies_properties_726_num_notes", - "companies_properties_726_num_notes_ab1", - "companies_properties_726_num_notes_ab2", - "companies_properties_726_num_notes_ab3", - "companies_properties_73e_hs_ideal_customer_profile", - "companies_properties_73e_hs_ideal_customer_profile_ab1", - "companies_properties_73e_hs_ideal_customer_profile_ab2", - "companies_properties_73e_hs_ideal_customer_profile_ab3", - "companies_properties_746_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a", - "companies_properties_746_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab1", - "companies_properties_746_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab2", - "companies_properties_746_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab3", - "companies_properties_758_hs_parent_company_id", - "companies_properties_758_hs_parent_company_id_ab1", - "companies_properties_758_hs_parent_company_id_ab2", - "companies_properties_758_hs_parent_company_id_ab3", - "companies_properties_76d_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400", - "companies_properties_76d_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab1", - "companies_properties_76d_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab2", - "companies_properties_76d_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab3", - "companies_properties_777_hs_num_child_companies", - "companies_properties_777_hs_num_child_companies_ab1", - "companies_properties_777_hs_num_child_companies_ab2", - "companies_properties_777_hs_num_child_companies_ab3", - "companies_properties_785_hs_analytics_first_timestamp", - "companies_properties_785_hs_analytics_first_timestamp_ab1", - "companies_properties_785_hs_analytics_first_timestamp_ab2", - "companies_properties_785_hs_analytics_first_timestamp_ab3", - "companies_properties_7af_hs_target_account_recommendation_snooze_time", - "companies_properties_7af_hs_target_account_recommendation_snooze_time_ab1", - "companies_properties_7af_hs_target_account_recommendation_snooze_time_ab2", - "companies_properties_7af_hs_target_account_recommendation_snooze_time_ab3", - "companies_properties_7b6_domain", - "companies_properties_7b6_domain_ab1", - "companies_properties_7b6_domain_ab2", - "companies_properties_7b6_domain_ab3", - "companies_properties_7d1_num_contacted_notes", - "companies_properties_7d1_num_contacted_notes_ab1", - "companies_properties_7d1_num_contacted_notes_ab2", - "companies_properties_7d1_num_contacted_notes_ab3", - "companies_properties_7fc_type", - "companies_properties_7fc_type_ab1", - "companies_properties_7fc_type_ab2", - "companies_properties_7fc_type_ab3", - "companies_properties_81f_hs_analytics_source_timestamp_earliest_value_25a3a52c", - "companies_properties_81f_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab1", - "companies_properties_81f_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab2", - "companies_properties_81f_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab3", - "companies_properties_876_notes_last_updated", - "companies_properties_876_notes_last_updated_ab1", - "companies_properties_876_notes_last_updated_ab2", - "companies_properties_876_notes_last_updated_ab3", - "companies_properties_888_facebookfans", - "companies_properties_888_facebookfans_ab1", - "companies_properties_888_facebookfans_ab2", - "companies_properties_888_facebookfans_ab3", - "companies_properties_889_hs_all_owner_ids", - "companies_properties_889_hs_all_owner_ids_ab1", - "companies_properties_889_hs_all_owner_ids_ab2", - "companies_properties_889_hs_all_owner_ids_ab3", - "companies_properties_89f_hs_all_team_ids", - "companies_properties_89f_hs_all_team_ids_ab1", - "companies_properties_89f_hs_all_team_ids_ab2", - "companies_properties_89f_hs_all_team_ids_ab3", - "companies_properties_8a7_hs_created_by_user_id", - "companies_properties_8a7_hs_created_by_user_id_ab1", - "companies_properties_8a7_hs_created_by_user_id_ab2", - "companies_properties_8a7_hs_created_by_user_id_ab3", - "companies_properties_8b9_createdate", - "companies_properties_8b9_createdate_ab1", - "companies_properties_8b9_createdate_ab2", - "companies_properties_8b9_createdate_ab3", - "companies_properties_8d2_hs_avatar_filemanager_key", - "companies_properties_8d2_hs_avatar_filemanager_key_ab1", - "companies_properties_8d2_hs_avatar_filemanager_key_ab2", - "companies_properties_8d2_hs_avatar_filemanager_key_ab3", - "companies_properties_8dc_first_deal_created_date", - "companies_properties_8dc_first_deal_created_date_ab1", - "companies_properties_8dc_first_deal_created_date_ab2", - "companies_properties_8dc_first_deal_created_date_ab3", - "companies_properties_909_address2", - "companies_properties_909_address2_ab1", - "companies_properties_909_address2_ab2", - "companies_properties_909_address2_ab3", - "companies_properties_921_hs_is_target_account", - "companies_properties_921_hs_is_target_account_ab1", - "companies_properties_921_hs_is_target_account_ab2", - "companies_properties_921_hs_is_target_account_ab3", - "companies_properties_947_twitterfollowers", - "companies_properties_947_twitterfollowers_ab1", - "companies_properties_947_twitterfollowers_ab2", - "companies_properties_947_twitterfollowers_ab3", - "companies_properties_94f_name", - "companies_properties_94f_name_ab1", - "companies_properties_94f_name_ab2", - "companies_properties_94f_name_ab3", - "companies_properties_969_closedate", - "companies_properties_969_closedate_ab1", - "companies_properties_969_closedate_ab2", - "companies_properties_969_closedate_ab3", - "companies_properties_9ea_country", - "companies_properties_9ea_country_ab1", - "companies_properties_9ea_country_ab2", - "companies_properties_9ea_country_ab3", - "companies_properties_9fe_city", - "companies_properties_9fe_city_ab1", - "companies_properties_9fe_city_ab2", - "companies_properties_9fe_city_ab3", - "companies_properties_a27_hubspot_owner_id", - "companies_properties_a27_hubspot_owner_id_ab1", - "companies_properties_a27_hubspot_owner_id_ab2", - "companies_properties_a27_hubspot_owner_id_ab3", - "companies_properties_a37_hs_analytics_last_visit_timestamp", - "companies_properties_a37_hs_analytics_last_visit_timestamp_ab1", - "companies_properties_a37_hs_analytics_last_visit_timestamp_ab2", - "companies_properties_a37_hs_analytics_last_visit_timestamp_ab3", - "companies_properties_a5b_notes_next_activity_date", - "companies_properties_a5b_notes_next_activity_date_ab1", - "companies_properties_a5b_notes_next_activity_date_ab2", - "companies_properties_a5b_notes_next_activity_date_ab3", - "companies_properties_a85_hs_analytics_first_touch_converting_campaign", - "companies_properties_a85_hs_analytics_first_touch_converting_campaign_ab1", - "companies_properties_a85_hs_analytics_first_touch_converting_campaign_ab2", - "companies_properties_a85_hs_analytics_first_touch_converting_campaign_ab3", - "companies_properties_a8a_hs_updated_by_user_id", - "companies_properties_a8a_hs_updated_by_user_id_ab1", - "companies_properties_a8a_hs_updated_by_user_id_ab2", - "companies_properties_a8a_hs_updated_by_user_id_ab3", - "companies_properties_aaa_linkedinbio", - "companies_properties_aaa_linkedinbio_ab1", - "companies_properties_aaa_linkedinbio_ab2", - "companies_properties_aaa_linkedinbio_ab3", - "companies_properties_ab7_address", - "companies_properties_ab7_address_ab1", - "companies_properties_ab7_address_ab2", - "companies_properties_ab7_address_ab3", - "companies_properties_ad4_hs_analytics_last_touch_converting_campaign", - "companies_properties_ad4_hs_analytics_last_touch_converting_campaign_ab1", - "companies_properties_ad4_hs_analytics_last_touch_converting_campaign_ab2", - "companies_properties_ad4_hs_analytics_last_touch_converting_campaign_ab3", - "companies_properties_ad4_lifecyclestage", - "companies_properties_ad4_lifecyclestage_ab1", - "companies_properties_ad4_lifecyclestage_ab2", - "companies_properties_ad4_lifecyclestage_ab3", - "companies_properties_ada_web_technologies", - "companies_properties_ada_web_technologies_ab1", - "companies_properties_ada_web_technologies_ab2", - "companies_properties_ada_web_technologies_ab3", - "companies_properties_ade_hubspot_owner_assigneddate", - "companies_properties_ade_hubspot_owner_assigneddate_ab1", - "companies_properties_ade_hubspot_owner_assigneddate_ab2", - "companies_properties_ade_hubspot_owner_assigneddate_ab3", - "companies_properties_af0_engagements_last_meeting_booked_medium", - "companies_properties_af0_engagements_last_meeting_booked_medium_ab1", - "companies_properties_af0_engagements_last_meeting_booked_medium_ab2", - "companies_properties_af0_engagements_last_meeting_booked_medium_ab3", - "companies_properties_af6_engagements_last_meeting_booked_source", - "companies_properties_af6_engagements_last_meeting_booked_source_ab1", - "companies_properties_af6_engagements_last_meeting_booked_source_ab2", - "companies_properties_af6_engagements_last_meeting_booked_source_ab3", - "companies_properties_b76_hs_user_ids_of_all_owners", - "companies_properties_b76_hs_user_ids_of_all_owners_ab1", - "companies_properties_b76_hs_user_ids_of_all_owners_ab2", - "companies_properties_b76_hs_user_ids_of_all_owners_ab3", - "companies_properties_b8e_is_public", - "companies_properties_b8e_is_public_ab1", - "companies_properties_b8e_is_public_ab2", - "companies_properties_b8e_is_public_ab3", - "companies_properties_b91_hs_object_id", - "companies_properties_b91_hs_object_id_ab1", - "companies_properties_b91_hs_object_id_ab2", - "companies_properties_b91_hs_object_id_ab3", - "companies_properties_b92_engagements_last_meeting_booked", - "companies_properties_b92_engagements_last_meeting_booked_ab1", - "companies_properties_b92_engagements_last_meeting_booked_ab2", - "companies_properties_b92_engagements_last_meeting_booked_ab3", - "companies_properties_bc4_engagements_last_meeting_booked_campaign", - "companies_properties_bc4_engagements_last_meeting_booked_campaign_ab1", - "companies_properties_bc4_engagements_last_meeting_booked_campaign_ab2", - "companies_properties_bc4_engagements_last_meeting_booked_campaign_ab3", - "companies_properties_bfe_hs_sales_email_last_replied", - "companies_properties_bfe_hs_sales_email_last_replied_ab1", - "companies_properties_bfe_hs_sales_email_last_replied_ab2", - "companies_properties_bfe_hs_sales_email_last_replied_ab3", - "companies_properties_c5f_description", - "companies_properties_c5f_description_ab1", - "companies_properties_c5f_description_ab2", - "companies_properties_c5f_description_ab3", - "companies_properties_c84_hs_all_accessible_team_ids", - "companies_properties_c84_hs_all_accessible_team_ids_ab1", - "companies_properties_c84_hs_all_accessible_team_ids_ab2", - "companies_properties_c84_hs_all_accessible_team_ids_ab3", - "companies_properties_c92_hs_num_open_deals", - "companies_properties_c92_hs_num_open_deals_ab1", - "companies_properties_c92_hs_num_open_deals_ab2", - "companies_properties_c92_hs_num_open_deals_ab3", - "companies_properties_c97_hubspot_team_id", - "companies_properties_c97_hubspot_team_id_ab1", - "companies_properties_c97_hubspot_team_id_ab2", - "companies_properties_c97_hubspot_team_id_ab3", - "companies_properties_cbb_hs_analytics_num_page_views", - "companies_properties_cbb_hs_analytics_num_page_views_ab1", - "companies_properties_cbb_hs_analytics_num_page_views_ab2", - "companies_properties_cbb_hs_analytics_num_page_views_ab3", - "companies_properties_ce7_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10", - "companies_properties_ce7_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab1", - "companies_properties_ce7_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab2", - "companies_properties_ce7_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab3", - "companies_properties_cf7_hs_total_deal_value", - "companies_properties_cf7_hs_total_deal_value_ab1", - "companies_properties_cf7_hs_total_deal_value_ab2", - "companies_properties_cf7_hs_total_deal_value_ab3", - "companies_properties_d07_hs_last_booked_meeting_date", - "companies_properties_d07_hs_last_booked_meeting_date_ab1", - "companies_properties_d07_hs_last_booked_meeting_date_ab2", - "companies_properties_d07_hs_last_booked_meeting_date_ab3", - "companies_properties_d6e_closedate_timestamp_earliest_value_a2a17e6e", - "companies_properties_d6e_closedate_timestamp_earliest_value_a2a17e6e_ab1", - "companies_properties_d6e_closedate_timestamp_earliest_value_a2a17e6e_ab2", - "companies_properties_d6e_closedate_timestamp_earliest_value_a2a17e6e_ab3", - "companies_properties_d74_num_conversion_events_cardinality_sum_d095f14b", - "companies_properties_d74_num_conversion_events_cardinality_sum_d095f14b_ab1", - "companies_properties_d74_num_conversion_events_cardinality_sum_d095f14b_ab2", - "companies_properties_d74_num_conversion_events_cardinality_sum_d095f14b_ab3", - "companies_properties_d85_state", - "companies_properties_d85_state_ab1", - "companies_properties_d85_state_ab2", - "companies_properties_d85_state_ab3", - "companies_properties_d9e_hs_target_account_recommendation_state", - "companies_properties_d9e_hs_target_account_recommendation_state_ab1", - "companies_properties_d9e_hs_target_account_recommendation_state_ab2", - "companies_properties_d9e_hs_target_account_recommendation_state_ab3", - "companies_properties_d9e_total_revenue", - "companies_properties_d9e_total_revenue_ab1", - "companies_properties_d9e_total_revenue_ab2", - "companies_properties_d9e_total_revenue_ab3", - "companies_properties_db7_hs_analytics_num_visits_cardinality_sum_53d952a6", - "companies_properties_db7_hs_analytics_num_visits_cardinality_sum_53d952a6_ab1", - "companies_properties_db7_hs_analytics_num_visits_cardinality_sum_53d952a6_ab2", - "companies_properties_db7_hs_analytics_num_visits_cardinality_sum_53d952a6_ab3", - "companies_properties_dc5_hs_analytics_source_data_2", - "companies_properties_dc5_hs_analytics_source_data_2_ab1", - "companies_properties_dc5_hs_analytics_source_data_2_ab2", - "companies_properties_dc5_hs_analytics_source_data_2_ab3", - "companies_properties_e1d_hs_last_sales_activity_timestamp", - "companies_properties_e1d_hs_last_sales_activity_timestamp_ab1", - "companies_properties_e1d_hs_last_sales_activity_timestamp_ab2", - "companies_properties_e1d_hs_last_sales_activity_timestamp_ab3", - "companies_properties_e33_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30", - "companies_properties_e33_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab1", - "companies_properties_e33_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab2", - "companies_properties_e33_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab3", - "companies_properties_f1d_hs_analytics_first_visit_timestamp", - "companies_properties_f1d_hs_analytics_first_visit_timestamp_ab1", - "companies_properties_f1d_hs_analytics_first_visit_timestamp_ab2", - "companies_properties_f1d_hs_analytics_first_visit_timestamp_ab3", - "companies_properties_f28_hs_analytics_num_visits", - "companies_properties_f28_hs_analytics_num_visits_ab1", - "companies_properties_f28_hs_analytics_num_visits_ab2", - "companies_properties_f28_hs_analytics_num_visits_ab3", - "companies_properties_f8e_hs_num_blockers", - "companies_properties_f8e_hs_num_blockers_ab1", - "companies_properties_f8e_hs_num_blockers_ab2", - "companies_properties_f8e_hs_num_blockers_ab3", - "companies_properties_f95_hs_analytics_num_page_views_cardinality_sum_e46e85b0", - "companies_properties_f95_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab1", - "companies_properties_f95_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab2", - "companies_properties_f95_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab3", - "companies_properties_fc1_hs_last_open_task_date", - "companies_properties_fc1_hs_last_open_task_date_ab1", - "companies_properties_fc1_hs_last_open_task_date_ab2", - "companies_properties_fc1_hs_last_open_task_date_ab3", - "companies_properties_fdb_zip", - "companies_properties_fdb_zip_ab1", - "companies_properties_fdb_zip_ab2", - "companies_properties_fdb_zip_ab3", - "companies_properties_ff9_website", - "companies_properties_ff9_website_ab1", - "companies_properties_ff9_website_ab2", - "companies_properties_ff9_website_ab3", - "contact_lists_4c6_metadata", - "contact_lists_4c6_metadata_ab1", - "contact_lists_4c6_metadata_ab2", - "contact_lists_4c6_metadata_ab3", - "contact_lists_a20_filters", - "contact_lists_a20_filters_ab1", - "contact_lists_a20_filters_ab2", - "contact_lists_a20_filters_ab3", - "contacts_00a_property_hs_content_membership_email_confirmed", - "contacts_00a_property_hs_content_membership_email_confirmed_ab1", - "contacts_00a_property_hs_content_membership_email_confirmed_ab2", - "contacts_00a_property_hs_content_membership_email_confirmed_ab3", - "contacts_010_property_hs_created_by_user_id", - "contacts_010_property_hs_created_by_user_id_ab1", - "contacts_010_property_hs_created_by_user_id_ab2", - "contacts_010_property_hs_created_by_user_id_ab3", - "contacts_014_property_hs_testpurge", - "contacts_014_property_hs_testpurge_ab1", - "contacts_014_property_hs_testpurge_ab2", - "contacts_014_property_hs_testpurge_ab3", - "contacts_01b_property_hs_all_contact_vids", - "contacts_01b_property_hs_all_contact_vids_ab1", - "contacts_01b_property_hs_all_contact_vids_ab2", - "contacts_01b_property_hs_all_contact_vids_ab3", - "contacts_022_property_hs_calculated_phone_number_country_code", - "contacts_022_property_hs_calculated_phone_number_country_code_ab1", - "contacts_022_property_hs_calculated_phone_number_country_code_ab2", - "contacts_022_property_hs_calculated_phone_number_country_code_ab3", - "contacts_031_property_hs_analytics_first_referrer", - "contacts_031_property_hs_analytics_first_referrer_ab1", - "contacts_031_property_hs_analytics_first_referrer_ab2", - "contacts_031_property_hs_analytics_first_referrer_ab3", - "contacts_04b_property_hs_merged_object_ids", - "contacts_04b_property_hs_merged_object_ids_ab1", - "contacts_04b_property_hs_merged_object_ids_ab2", - "contacts_04b_property_hs_merged_object_ids_ab3", - "contacts_052_property_first_conversion_event_name", - "contacts_052_property_first_conversion_event_name_ab1", - "contacts_052_property_first_conversion_event_name_ab2", - "contacts_052_property_first_conversion_event_name_ab3", - "contacts_053_property_recent_conversion_date", - "contacts_053_property_recent_conversion_date_ab1", - "contacts_053_property_recent_conversion_date_ab2", - "contacts_053_property_recent_conversion_date_ab3", - "contacts_056_property_work_email", - "contacts_056_property_work_email_ab1", - "contacts_056_property_work_email_ab2", - "contacts_056_property_work_email_ab3", - "contacts_059_property_hs_email_last_open_date", - "contacts_059_property_hs_email_last_open_date_ab1", - "contacts_059_property_hs_email_last_open_date_ab2", - "contacts_059_property_hs_email_last_open_date_ab3", - "contacts_05c_property_hs_is_unworked", - "contacts_05c_property_hs_is_unworked_ab1", - "contacts_05c_property_hs_is_unworked_ab2", - "contacts_05c_property_hs_is_unworked_ab3", - "contacts_0a4_property_engagements_last_meeting_booked", - "contacts_0a4_property_engagements_last_meeting_booked_ab1", - "contacts_0a4_property_engagements_last_meeting_booked_ab2", - "contacts_0a4_property_engagements_last_meeting_booked_ab3", - "contacts_0a9_property_hs_email_bad_address", - "contacts_0a9_property_hs_email_bad_address_ab1", - "contacts_0a9_property_hs_email_bad_address_ab2", - "contacts_0a9_property_hs_email_bad_address_ab3", - "contacts_0ac_property_engagements_last_meeting_booked_campaign", - "contacts_0ac_property_engagements_last_meeting_booked_campaign_ab1", - "contacts_0ac_property_engagements_last_meeting_booked_campaign_ab2", - "contacts_0ac_property_engagements_last_meeting_booked_campaign_ab3", - "contacts_0b2_property_hs_calculated_form_submissions", - "contacts_0b2_property_hs_calculated_form_submissions_ab1", - "contacts_0b2_property_hs_calculated_form_submissions_ab2", - "contacts_0b2_property_hs_calculated_form_submissions_ab3", - "contacts_0c8_property_twitterhandle", - "contacts_0c8_property_twitterhandle_ab1", - "contacts_0c8_property_twitterhandle_ab2", - "contacts_0c8_property_twitterhandle_ab3", - "contacts_0fc_property_fax", - "contacts_0fc_property_fax_ab1", - "contacts_0fc_property_fax_ab2", - "contacts_0fc_property_fax_ab3", - "contacts_0fc_property_hs_content_membership_registration_email_sent_at", - "contacts_0fc_property_hs_content_membership_registration_email_sent_at_ab1", - "contacts_0fc_property_hs_content_membership_registration_email_sent_at_ab2", - "contacts_0fc_property_hs_content_membership_registration_email_sent_at_ab3", - "contacts_12b_property_school", - "contacts_12b_property_school_ab1", - "contacts_12b_property_school_ab2", - "contacts_12b_property_school_ab3", - "contacts_141_property_hs_avatar_filemanager_key", - "contacts_141_property_hs_avatar_filemanager_key_ab1", - "contacts_141_property_hs_avatar_filemanager_key_ab2", - "contacts_141_property_hs_avatar_filemanager_key_ab3", - "contacts_14d_property_website", - "contacts_14d_property_website_ab1", - "contacts_14d_property_website_ab2", - "contacts_14d_property_website_ab3", - "contacts_14f_property_hs_email_open", - "contacts_14f_property_hs_email_open_ab1", - "contacts_14f_property_hs_email_open_ab2", - "contacts_14f_property_hs_email_open_ab3", - "contacts_15c_property_notes_next_activity_date", - "contacts_15c_property_notes_next_activity_date_ab1", - "contacts_15c_property_notes_next_activity_date_ab2", - "contacts_15c_property_notes_next_activity_date_ab3", - "contacts_19f_property_hs_analytics_num_event_completions", - "contacts_19f_property_hs_analytics_num_event_completions_ab1", - "contacts_19f_property_hs_analytics_num_event_completions_ab2", - "contacts_19f_property_hs_analytics_num_event_completions_ab3", - "contacts_1b0_property_hs_additional_emails", - "contacts_1b0_property_hs_additional_emails_ab1", - "contacts_1b0_property_hs_additional_emails_ab2", - "contacts_1b0_property_hs_additional_emails_ab3", - "contacts_1c7_property_hs_email_quarantined_reason", - "contacts_1c7_property_hs_email_quarantined_reason_ab1", - "contacts_1c7_property_hs_email_quarantined_reason_ab2", - "contacts_1c7_property_hs_email_quarantined_reason_ab3", - "contacts_1cd_property_hs_sa_first_engagement_object_type", - "contacts_1cd_property_hs_sa_first_engagement_object_type_ab1", - "contacts_1cd_property_hs_sa_first_engagement_object_type_ab2", - "contacts_1cd_property_hs_sa_first_engagement_object_type_ab3", - "contacts_1e0_properties", - "contacts_1e0_properties_ab1", - "contacts_1e0_properties_ab2", - "contacts_1e0_properties_ab3", - "contacts_1fe_property_hs_facebook_click_id", - "contacts_1fe_property_hs_facebook_click_id_ab1", - "contacts_1fe_property_hs_facebook_click_id_ab2", - "contacts_1fe_property_hs_facebook_click_id_ab3", - "contacts_20f_property_hs_analytics_num_page_views", - "contacts_20f_property_hs_analytics_num_page_views_ab1", - "contacts_20f_property_hs_analytics_num_page_views_ab2", - "contacts_20f_property_hs_analytics_num_page_views_ab3", - "contacts_21d_property_hs_email_optout_10798197", - "contacts_21d_property_hs_email_optout_10798197_ab1", - "contacts_21d_property_hs_email_optout_10798197_ab2", - "contacts_21d_property_hs_email_optout_10798197_ab3", - "contacts_224_property_industry", - "contacts_224_property_industry_ab1", - "contacts_224_property_industry_ab2", - "contacts_224_property_industry_ab3", - "contacts_24d_property_hs_email_domain", - "contacts_24d_property_hs_email_domain_ab1", - "contacts_24d_property_hs_email_domain_ab2", - "contacts_24d_property_hs_email_domain_ab3", - "contacts_250_property_hs_content_membership_registration_domain_sent_to", - "contacts_250_property_hs_content_membership_registration_domain_sent_to_ab1", - "contacts_250_property_hs_content_membership_registration_domain_sent_to_ab2", - "contacts_250_property_hs_content_membership_registration_domain_sent_to_ab3", - "contacts_251_property_ip_country_code", - "contacts_251_property_ip_country_code_ab1", - "contacts_251_property_ip_country_code_ab2", - "contacts_251_property_ip_country_code_ab3", - "contacts_25a_property_salutation", - "contacts_25a_property_salutation_ab1", - "contacts_25a_property_salutation_ab2", - "contacts_25a_property_salutation_ab3", - "contacts_298_property_email", - "contacts_298_property_email_ab1", - "contacts_298_property_email_ab2", - "contacts_298_property_email_ab3", - "contacts_29f_property_military_status", - "contacts_29f_property_military_status_ab1", - "contacts_29f_property_military_status_ab2", - "contacts_29f_property_military_status_ab3", - "contacts_2a3_property_hs_email_optout", - "contacts_2a3_property_hs_email_optout_ab1", - "contacts_2a3_property_hs_email_optout_ab2", - "contacts_2a3_property_hs_email_optout_ab3", - "contacts_2bc_property_hs_email_first_send_date", - "contacts_2bc_property_hs_email_first_send_date_ab1", - "contacts_2bc_property_hs_email_first_send_date_ab2", - "contacts_2bc_property_hs_email_first_send_date_ab3", - "contacts_2dd_property_country", - "contacts_2dd_property_country_ab1", - "contacts_2dd_property_country_ab2", - "contacts_2dd_property_country_ab3", - "contacts_2f8_property_hs_last_sales_activity_timestamp", - "contacts_2f8_property_hs_last_sales_activity_timestamp_ab1", - "contacts_2f8_property_hs_last_sales_activity_timestamp_ab2", - "contacts_2f8_property_hs_last_sales_activity_timestamp_ab3", - "contacts_325_property_hs_email_click", - "contacts_325_property_hs_email_click_ab1", - "contacts_325_property_hs_email_click_ab2", - "contacts_325_property_hs_email_click_ab3", - "contacts_326_property_webinareventlastupdated", - "contacts_326_property_webinareventlastupdated_ab1", - "contacts_326_property_webinareventlastupdated_ab2", - "contacts_326_property_webinareventlastupdated_ab3", - "contacts_33e_property_recent_deal_amount", - "contacts_33e_property_recent_deal_amount_ab1", - "contacts_33e_property_recent_deal_amount_ab2", - "contacts_33e_property_recent_deal_amount_ab3", - "contacts_33f_property_associatedcompanylastupdated", - "contacts_33f_property_associatedcompanylastupdated_ab1", - "contacts_33f_property_associatedcompanylastupdated_ab2", - "contacts_33f_property_associatedcompanylastupdated_ab3", - "contacts_348_property_hs_time_to_first_engagement", - "contacts_348_property_hs_time_to_first_engagement_ab1", - "contacts_348_property_hs_time_to_first_engagement_ab2", - "contacts_348_property_hs_time_to_first_engagement_ab3", - "contacts_37a_property_hs_last_sales_activity_date", - "contacts_37a_property_hs_last_sales_activity_date_ab1", - "contacts_37a_property_hs_last_sales_activity_date_ab2", - "contacts_37a_property_hs_last_sales_activity_date_ab3", - "contacts_3be_property_hs_email_delivered", - "contacts_3be_property_hs_email_delivered_ab1", - "contacts_3be_property_hs_email_delivered_ab2", - "contacts_3be_property_hs_email_delivered_ab3", - "contacts_3c0_merge_audits", - "contacts_3c0_merge_audits_ab1", - "contacts_3c0_merge_audits_ab2", - "contacts_3c0_merge_audits_ab3", - "contacts_3e9_property_num_notes", - "contacts_3e9_property_num_notes_ab1", - "contacts_3e9_property_num_notes_ab2", - "contacts_3e9_property_num_notes_ab3", - "contacts_3ee_property_hs_lifecyclestage_lead_date", - "contacts_3ee_property_hs_lifecyclestage_lead_date_ab1", - "contacts_3ee_property_hs_lifecyclestage_lead_date_ab2", - "contacts_3ee_property_hs_lifecyclestage_lead_date_ab3", - "contacts_401_property_hubspot_owner_id", - "contacts_401_property_hubspot_owner_id_ab1", - "contacts_401_property_hubspot_owner_id_ab2", - "contacts_401_property_hubspot_owner_id_ab3", - "contacts_42e_property_city", - "contacts_42e_property_city_ab1", - "contacts_42e_property_city_ab2", - "contacts_42e_property_city_ab3", - "contacts_44c_property_hs_email_last_send_date", - "contacts_44c_property_hs_email_last_send_date_ab1", - "contacts_44c_property_hs_email_last_send_date_ab2", - "contacts_44c_property_hs_email_last_send_date_ab3", - "contacts_465_property_zip", - "contacts_465_property_zip_ab1", - "contacts_465_property_zip_ab2", - "contacts_465_property_zip_ab3", - "contacts_472_property_address", - "contacts_472_property_address_ab1", - "contacts_472_property_address_ab2", - "contacts_472_property_address_ab3", - "contacts_48e_property_hs_legal_basis", - "contacts_48e_property_hs_legal_basis_ab1", - "contacts_48e_property_hs_legal_basis_ab2", - "contacts_48e_property_hs_legal_basis_ab3", - "contacts_49c_property_hs_facebook_ad_clicked", - "contacts_49c_property_hs_facebook_ad_clicked_ab1", - "contacts_49c_property_hs_facebook_ad_clicked_ab2", - "contacts_49c_property_hs_facebook_ad_clicked_ab3", - "contacts_4ab_property_closedate", - "contacts_4ab_property_closedate_ab1", - "contacts_4ab_property_closedate_ab2", - "contacts_4ab_property_closedate_ab3", - "contacts_4c9_property_num_conversion_events", - "contacts_4c9_property_num_conversion_events_ab1", - "contacts_4c9_property_num_conversion_events_ab2", - "contacts_4c9_property_num_conversion_events_ab3", - "contacts_4e2_property_hs_calculated_phone_number", - "contacts_4e2_property_hs_calculated_phone_number_ab1", - "contacts_4e2_property_hs_calculated_phone_number_ab2", - "contacts_4e2_property_hs_calculated_phone_number_ab3", - "contacts_4fc_property_num_unique_conversion_events", - "contacts_4fc_property_num_unique_conversion_events_ab1", - "contacts_4fc_property_num_unique_conversion_events_ab2", - "contacts_4fc_property_num_unique_conversion_events_ab3", - "contacts_503_property_firstname", - "contacts_503_property_firstname_ab1", - "contacts_503_property_firstname_ab2", - "contacts_503_property_firstname_ab3", - "contacts_505_property_hs_email_bounce", - "contacts_505_property_hs_email_bounce_ab1", - "contacts_505_property_hs_email_bounce_ab2", - "contacts_505_property_hs_email_bounce_ab3", - "contacts_507_property_seniority", - "contacts_507_property_seniority_ab1", - "contacts_507_property_seniority_ab2", - "contacts_507_property_seniority_ab3", - "contacts_516_property_start_date", - "contacts_516_property_start_date_ab1", - "contacts_516_property_start_date_ab2", - "contacts_516_property_start_date_ab3", - "contacts_520_property_hs_lastmodifieddate", - "contacts_520_property_hs_lastmodifieddate_ab1", - "contacts_520_property_hs_lastmodifieddate_ab2", - "contacts_520_property_hs_lastmodifieddate_ab3", - "contacts_541_property_hs_lifecyclestage_subscriber_date", - "contacts_541_property_hs_lifecyclestage_subscriber_date_ab1", - "contacts_541_property_hs_lifecyclestage_subscriber_date_ab2", - "contacts_541_property_hs_lifecyclestage_subscriber_date_ab3", - "contacts_546_property_hs_buying_role", - "contacts_546_property_hs_buying_role_ab1", - "contacts_546_property_hs_buying_role_ab2", - "contacts_546_property_hs_buying_role_ab3", - "contacts_569_property_num_associated_deals", - "contacts_569_property_num_associated_deals_ab1", - "contacts_569_property_num_associated_deals_ab2", - "contacts_569_property_num_associated_deals_ab3", - "contacts_58a_property_annualrevenue", - "contacts_58a_property_annualrevenue_ab1", - "contacts_58a_property_annualrevenue_ab2", - "contacts_58a_property_annualrevenue_ab3", - "contacts_5a2_list_memberships", - "contacts_5a2_list_memberships_ab1", - "contacts_5a2_list_memberships_ab2", - "contacts_5a2_list_memberships_ab3", - "contacts_5b6_property_hs_calculated_merged_vids", - "contacts_5b6_property_hs_calculated_merged_vids_ab1", - "contacts_5b6_property_hs_calculated_merged_vids_ab2", - "contacts_5b6_property_hs_calculated_merged_vids_ab3", - "contacts_5c6_property_hs_sales_email_last_clicked", - "contacts_5c6_property_hs_sales_email_last_clicked_ab1", - "contacts_5c6_property_hs_sales_email_last_clicked_ab2", - "contacts_5c6_property_hs_sales_email_last_clicked_ab3", - "contacts_5cb_property_hs_sales_email_last_opened", - "contacts_5cb_property_hs_sales_email_last_opened_ab1", - "contacts_5cb_property_hs_sales_email_last_opened_ab2", - "contacts_5cb_property_hs_sales_email_last_opened_ab3", - "contacts_5fe_property_lastname", - "contacts_5fe_property_lastname_ab1", - "contacts_5fe_property_lastname_ab2", - "contacts_5fe_property_lastname_ab3", - "contacts_600_property_hs_is_contact", - "contacts_600_property_hs_is_contact_ab1", - "contacts_600_property_hs_is_contact_ab2", - "contacts_600_property_hs_is_contact_ab3", - "contacts_606_property_hs_analytics_num_visits", - "contacts_606_property_hs_analytics_num_visits_ab1", - "contacts_606_property_hs_analytics_num_visits_ab2", - "contacts_606_property_hs_analytics_num_visits_ab3", - "contacts_646_properties_versions", - "contacts_646_properties_versions_ab1", - "contacts_646_properties_versions_ab2", - "contacts_646_properties_versions_ab3", - "contacts_65f_property_hs_lead_status", - "contacts_65f_property_hs_lead_status_ab1", - "contacts_65f_property_hs_lead_status_ab2", - "contacts_65f_property_hs_lead_status_ab3", - "contacts_663_property_hs_ip_timezone", - "contacts_663_property_hs_ip_timezone_ab1", - "contacts_663_property_hs_ip_timezone_ab2", - "contacts_663_property_hs_ip_timezone_ab3", - "contacts_663_property_marital_status", - "contacts_663_property_marital_status_ab1", - "contacts_663_property_marital_status_ab2", - "contacts_663_property_marital_status_ab3", - "contacts_673_property_associatedcompanyid", - "contacts_673_property_associatedcompanyid_ab1", - "contacts_673_property_associatedcompanyid_ab2", - "contacts_673_property_associatedcompanyid_ab3", - "contacts_688_property_hs_all_team_ids", - "contacts_688_property_hs_all_team_ids_ab1", - "contacts_688_property_hs_all_team_ids_ab2", - "contacts_688_property_hs_all_team_ids_ab3", - "contacts_68d_property_hs_email_last_click_date", - "contacts_68d_property_hs_email_last_click_date_ab1", - "contacts_68d_property_hs_email_last_click_date_ab2", - "contacts_68d_property_hs_email_last_click_date_ab3", - "contacts_690_property_hs_language", - "contacts_690_property_hs_language_ab1", - "contacts_690_property_hs_language_ab2", - "contacts_690_property_hs_language_ab3", - "contacts_6ee_property_hs_analytics_first_timestamp", - "contacts_6ee_property_hs_analytics_first_timestamp_ab1", - "contacts_6ee_property_hs_analytics_first_timestamp_ab2", - "contacts_6ee_property_hs_analytics_first_timestamp_ab3", - "contacts_6f4_property_hs_analytics_revenue", - "contacts_6f4_property_hs_analytics_revenue_ab1", - "contacts_6f4_property_hs_analytics_revenue_ab2", - "contacts_6f4_property_hs_analytics_revenue_ab3", - "contacts_6fa_property_hs_object_id", - "contacts_6fa_property_hs_object_id_ab1", - "contacts_6fa_property_hs_object_id_ab2", - "contacts_6fa_property_hs_object_id_ab3", - "contacts_6ff_property_hs_analytics_last_timestamp", - "contacts_6ff_property_hs_analytics_last_timestamp_ab1", - "contacts_6ff_property_hs_analytics_last_timestamp_ab2", - "contacts_6ff_property_hs_analytics_last_timestamp_ab3", - "contacts_713_property_first_conversion_date", - "contacts_713_property_first_conversion_date_ab1", - "contacts_713_property_first_conversion_date_ab2", - "contacts_713_property_first_conversion_date_ab3", - "contacts_71c_property_notes_last_updated", - "contacts_71c_property_notes_last_updated_ab1", - "contacts_71c_property_notes_last_updated_ab2", - "contacts_71c_property_notes_last_updated_ab3", - "contacts_744_property_company_size", - "contacts_744_property_company_size_ab1", - "contacts_744_property_company_size_ab2", - "contacts_744_property_company_size_ab3", - "contacts_759_property_hs_analytics_source_data_1", - "contacts_759_property_hs_analytics_source_data_1_ab1", - "contacts_759_property_hs_analytics_source_data_1_ab2", - "contacts_759_property_hs_analytics_source_data_1_ab3", - "contacts_75f_property_hs_lifecyclestage_evangelist_date", - "contacts_75f_property_hs_lifecyclestage_evangelist_date_ab1", - "contacts_75f_property_hs_lifecyclestage_evangelist_date_ab2", - "contacts_75f_property_hs_lifecyclestage_evangelist_date_ab3", - "contacts_79b_property_mobilephone", - "contacts_79b_property_mobilephone_ab1", - "contacts_79b_property_mobilephone_ab2", - "contacts_79b_property_mobilephone_ab3", - "contacts_7aa_property_hs_user_ids_of_all_owners", - "contacts_7aa_property_hs_user_ids_of_all_owners_ab1", - "contacts_7aa_property_hs_user_ids_of_all_owners_ab2", - "contacts_7aa_property_hs_user_ids_of_all_owners_ab3", - "contacts_7b0_property_days_to_close", - "contacts_7b0_property_days_to_close_ab1", - "contacts_7b0_property_days_to_close_ab2", - "contacts_7b0_property_days_to_close_ab3", - "contacts_811_property_hs_analytics_last_touch_converting_campaign", - "contacts_811_property_hs_analytics_last_touch_converting_campaign_ab1", - "contacts_811_property_hs_analytics_last_touch_converting_campaign_ab2", - "contacts_811_property_hs_analytics_last_touch_converting_campaign_ab3", - "contacts_822_property_hs_email_last_email_name", - "contacts_822_property_hs_email_last_email_name_ab1", - "contacts_822_property_hs_email_last_email_name_ab2", - "contacts_822_property_hs_email_last_email_name_ab3", - "contacts_86f_property_company", - "contacts_86f_property_company_ab1", - "contacts_86f_property_company_ab2", - "contacts_86f_property_company_ab3", - "contacts_886_property_hs_all_accessible_team_ids", - "contacts_886_property_hs_all_accessible_team_ids_ab1", - "contacts_886_property_hs_all_accessible_team_ids_ab2", - "contacts_886_property_hs_all_accessible_team_ids_ab3", - "contacts_893_property_message", - "contacts_893_property_message_ab1", - "contacts_893_property_message_ab2", - "contacts_893_property_message_ab3", - "contacts_8ae_property_gender", - "contacts_8ae_property_gender_ab1", - "contacts_8ae_property_gender_ab2", - "contacts_8ae_property_gender_ab3", - "contacts_8c7_property_num_contacted_notes", - "contacts_8c7_property_num_contacted_notes_ab1", - "contacts_8c7_property_num_contacted_notes_ab2", - "contacts_8c7_property_num_contacted_notes_ab3", - "contacts_8ca_property_total_revenue", - "contacts_8ca_property_total_revenue_ab1", - "contacts_8ca_property_total_revenue_ab2", - "contacts_8ca_property_total_revenue_ab3", - "contacts_8cb_property_hs_analytics_last_visit_timestamp", - "contacts_8cb_property_hs_analytics_last_visit_timestamp_ab1", - "contacts_8cb_property_hs_analytics_last_visit_timestamp_ab2", - "contacts_8cb_property_hs_analytics_last_visit_timestamp_ab3", - "contacts_8cd_property_surveymonkeyeventlastupdated", - "contacts_8cd_property_surveymonkeyeventlastupdated_ab1", - "contacts_8cd_property_surveymonkeyeventlastupdated_ab2", - "contacts_8cd_property_surveymonkeyeventlastupdated_ab3", - "contacts_8ed_property_hs_all_owner_ids", - "contacts_8ed_property_hs_all_owner_ids_ab1", - "contacts_8ed_property_hs_all_owner_ids_ab2", - "contacts_8ed_property_hs_all_owner_ids_ab3", - "contacts_901_property_hs_emailconfirmationstatus", - "contacts_901_property_hs_emailconfirmationstatus_ab1", - "contacts_901_property_hs_emailconfirmationstatus_ab2", - "contacts_901_property_hs_emailconfirmationstatus_ab3", - "contacts_936_property_hs_email_hard_bounce_reason", - "contacts_936_property_hs_email_hard_bounce_reason_ab1", - "contacts_936_property_hs_email_hard_bounce_reason_ab2", - "contacts_936_property_hs_email_hard_bounce_reason_ab3", - "contacts_938_property_hs_email_first_open_date", - "contacts_938_property_hs_email_first_open_date_ab1", - "contacts_938_property_hs_email_first_open_date_ab2", - "contacts_938_property_hs_email_first_open_date_ab3", - "contacts_964_property_notes_last_contacted", - "contacts_964_property_notes_last_contacted_ab1", - "contacts_964_property_notes_last_contacted_ab2", - "contacts_964_property_notes_last_contacted_ab3", - "contacts_982_form_submissions", - "contacts_982_form_submissions_ab1", - "contacts_982_form_submissions_ab2", - "contacts_982_form_submissions_ab3", - "contacts_98a_property_hs_content_membership_notes", - "contacts_98a_property_hs_content_membership_notes_ab1", - "contacts_98a_property_hs_content_membership_notes_ab2", - "contacts_98a_property_hs_content_membership_notes_ab3", - "contacts_994_property_hs_analytics_source_data_2", - "contacts_994_property_hs_analytics_source_data_2_ab1", - "contacts_994_property_hs_analytics_source_data_2_ab2", - "contacts_994_property_hs_analytics_source_data_2_ab3", - "contacts_99b_property_lastmodifieddate", - "contacts_99b_property_lastmodifieddate_ab1", - "contacts_99b_property_lastmodifieddate_ab2", - "contacts_99b_property_lastmodifieddate_ab3", - "contacts_9b0_property_hs_content_membership_status", - "contacts_9b0_property_hs_content_membership_status_ab1", - "contacts_9b0_property_hs_content_membership_status_ab2", - "contacts_9b0_property_hs_content_membership_status_ab3", - "contacts_9c3_property_hs_searchable_calculated_phone_number", - "contacts_9c3_property_hs_searchable_calculated_phone_number_ab1", - "contacts_9c3_property_hs_searchable_calculated_phone_number_ab2", - "contacts_9c3_property_hs_searchable_calculated_phone_number_ab3", - "contacts_9ca_property_ip_state_code", - "contacts_9ca_property_ip_state_code_ab1", - "contacts_9ca_property_ip_state_code_ab2", - "contacts_9ca_property_ip_state_code_ab3", - "contacts_9dd_property_hs_testrollback", - "contacts_9dd_property_hs_testrollback_ab1", - "contacts_9dd_property_hs_testrollback_ab2", - "contacts_9dd_property_hs_testrollback_ab3", - "contacts_9de_property_hs_email_first_click_date", - "contacts_9de_property_hs_email_first_click_date_ab1", - "contacts_9de_property_hs_email_first_click_date_ab2", - "contacts_9de_property_hs_email_first_click_date_ab3", - "contacts_9fe_property_hs_created_by_conversations", - "contacts_9fe_property_hs_created_by_conversations_ab1", - "contacts_9fe_property_hs_created_by_conversations_ab2", - "contacts_9fe_property_hs_created_by_conversations_ab3", - "contacts_a25_property_hs_latest_meeting_activity", - "contacts_a25_property_hs_latest_meeting_activity_ab1", - "contacts_a25_property_hs_latest_meeting_activity_ab2", - "contacts_a25_property_hs_latest_meeting_activity_ab3", - "contacts_a2f_property_hs_sequences_is_enrolled", - "contacts_a2f_property_hs_sequences_is_enrolled_ab1", - "contacts_a2f_property_hs_sequences_is_enrolled_ab2", - "contacts_a2f_property_hs_sequences_is_enrolled_ab3", - "contacts_a60_property_hs_analytics_first_touch_converting_campaign", - "contacts_a60_property_hs_analytics_first_touch_converting_campaign_ab1", - "contacts_a60_property_hs_analytics_first_touch_converting_campaign_ab2", - "contacts_a60_property_hs_analytics_first_touch_converting_campaign_ab3", - "contacts_a6f_property_first_deal_created_date", - "contacts_a6f_property_first_deal_created_date_ab1", - "contacts_a6f_property_first_deal_created_date_ab2", - "contacts_a6f_property_first_deal_created_date_ab3", - "contacts_a76_property_field_of_study", - "contacts_a76_property_field_of_study_ab1", - "contacts_a76_property_field_of_study_ab2", - "contacts_a76_property_field_of_study_ab3", - "contacts_a85_property_hs_analytics_average_page_views", - "contacts_a85_property_hs_analytics_average_page_views_ab1", - "contacts_a85_property_hs_analytics_average_page_views_ab2", - "contacts_a85_property_hs_analytics_average_page_views_ab3", - "contacts_a92_property_hs_sales_email_last_replied", - "contacts_a92_property_hs_sales_email_last_replied_ab1", - "contacts_a92_property_hs_sales_email_last_replied_ab2", - "contacts_a92_property_hs_sales_email_last_replied_ab3", - "contacts_aa6_property_hs_analytics_first_visit_timestamp", - "contacts_aa6_property_hs_analytics_first_visit_timestamp_ab1", - "contacts_aa6_property_hs_analytics_first_visit_timestamp_ab2", - "contacts_aa6_property_hs_analytics_first_visit_timestamp_ab3", - "contacts_aa8_property_hubspot_owner_assigneddate", - "contacts_aa8_property_hubspot_owner_assigneddate_ab1", - "contacts_aa8_property_hubspot_owner_assigneddate_ab2", - "contacts_aa8_property_hubspot_owner_assigneddate_ab3", - "contacts_ab7_property_ip_state", - "contacts_ab7_property_ip_state_ab1", - "contacts_ab7_property_ip_state_ab2", - "contacts_ab7_property_ip_state_ab3", - "contacts_ac7_property_hs_email_sends_since_last_engagement", - "contacts_ac7_property_hs_email_sends_since_last_engagement_ab1", - "contacts_ac7_property_hs_email_sends_since_last_engagement_ab2", - "contacts_ac7_property_hs_email_sends_since_last_engagement_ab3", - "contacts_ac8_property_ip_city", - "contacts_ac8_property_ip_city_ab1", - "contacts_ac8_property_ip_city_ab2", - "contacts_ac8_property_ip_city_ab3", - "contacts_aff_property_recent_deal_close_date", - "contacts_aff_property_recent_deal_close_date_ab1", - "contacts_aff_property_recent_deal_close_date_ab2", - "contacts_aff_property_recent_deal_close_date_ab3", - "contacts_as_615_property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab1", - "contacts_as_615_property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab2", - "contacts_as_615_property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab3", - "contacts_assoc_98c_property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab1", - "contacts_assoc_98c_property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab2", - "contacts_assoc_98c_property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab3", - "contacts_associ_615_property_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10", - "contacts_associate_98c_property_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30", - "contacts_associated__2d0_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab1", - "contacts_associated__2d0_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab2", - "contacts_associated__2d0_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10_ab3", - "contacts_associated_c_1f5_property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab1", - "contacts_associated_c_1f5_property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab2", - "contacts_associated_c_1f5_property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab3", - "contacts_associated_com_8cf_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab1", - "contacts_associated_com_8cf_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab2", - "contacts_associated_com_8cf_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30_ab3", - "contacts_associated_comp_2d0_hs_analytics_first_touch_converting_campaign_timestamp_earliest_value_4757fe10", - "contacts_associated_comp_973_property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab1", - "contacts_associated_comp_973_property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab2", - "contacts_associated_comp_973_property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab3", - "contacts_associated_compa_1f5_property_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae", - "contacts_associated_company_006_property_num_notes", - "contacts_associated_company_006_property_num_notes_ab1", - "contacts_associated_company_006_property_num_notes_ab2", - "contacts_associated_company_006_property_num_notes_ab3", - "contacts_associated_company_041_property_is_public", - "contacts_associated_company_041_property_is_public_ab1", - "contacts_associated_company_041_property_is_public_ab2", - "contacts_associated_company_041_property_is_public_ab3", - "contacts_associated_company_04f_property_hs_num_blockers", - "contacts_associated_company_04f_property_hs_num_blockers_ab1", - "contacts_associated_company_04f_property_hs_num_blockers_ab2", - "contacts_associated_company_04f_property_hs_num_blockers_ab3", - "contacts_associated_company_05d_property_hs_object_id", - "contacts_associated_company_05d_property_hs_object_id_ab1", - "contacts_associated_company_05d_property_hs_object_id_ab2", - "contacts_associated_company_05d_property_hs_object_id_ab3", - "contacts_associated_company_087_property_hs_lastmodifieddate", - "contacts_associated_company_087_property_hs_lastmodifieddate_ab1", - "contacts_associated_company_087_property_hs_lastmodifieddate_ab2", - "contacts_associated_company_087_property_hs_lastmodifieddate_ab3", - "contacts_associated_company_089_property_hs_num_decision_makers", - "contacts_associated_company_089_property_hs_num_decision_makers_ab1", - "contacts_associated_company_089_property_hs_num_decision_makers_ab2", - "contacts_associated_company_089_property_hs_num_decision_makers_ab3", - "contacts_associated_company_09c_property_hs_additional_domains", - "contacts_associated_company_09c_property_hs_additional_domains_ab1", - "contacts_associated_company_09c_property_hs_additional_domains_ab2", - "contacts_associated_company_09c_property_hs_additional_domains_ab3", - "contacts_associated_company_0db_property_hs_analytics_first_timestamp", - "contacts_associated_company_0db_property_hs_analytics_first_timestamp_ab1", - "contacts_associated_company_0db_property_hs_analytics_first_timestamp_ab2", - "contacts_associated_company_0db_property_hs_analytics_first_timestamp_ab3", - "contacts_associated_company_0fe_property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1", - "contacts_associated_company_0fe_property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab1", - "contacts_associated_company_0fe_property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab2", - "contacts_associated_company_0fe_property_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab3", - "contacts_associated_company_107_property_linkedinbio", - "contacts_associated_company_107_property_linkedinbio_ab1", - "contacts_associated_company_107_property_linkedinbio_ab2", - "contacts_associated_company_107_property_linkedinbio_ab3", - "contacts_associated_company_12c_property_first_conversion_date_timestamp_earliest_value_61f58f2c", - "contacts_associated_company_12c_property_first_conversion_date_timestamp_earliest_value_61f58f2c_ab1", - "contacts_associated_company_12c_property_first_conversion_date_timestamp_earliest_value_61f58f2c_ab2", - "contacts_associated_company_12c_property_first_conversion_date_timestamp_earliest_value_61f58f2c_ab3", - "contacts_associated_company_147_property_notes_next_activity_date", - "contacts_associated_company_147_property_notes_next_activity_date_ab1", - "contacts_associated_company_147_property_notes_next_activity_date_ab2", - "contacts_associated_company_147_property_notes_next_activity_date_ab3", - "contacts_associated_company_16f_property_hs_lead_status", - "contacts_associated_company_16f_property_hs_lead_status_ab1", - "contacts_associated_company_16f_property_hs_lead_status_ab2", - "contacts_associated_company_16f_property_hs_lead_status_ab3", - "contacts_associated_company_171_property_address", - "contacts_associated_company_171_property_address_ab1", - "contacts_associated_company_171_property_address_ab2", - "contacts_associated_company_171_property_address_ab3", - "contacts_associated_company_1bc_property_hs_last_open_task_date", - "contacts_associated_company_1bc_property_hs_last_open_task_date_ab1", - "contacts_associated_company_1bc_property_hs_last_open_task_date_ab2", - "contacts_associated_company_1bc_property_hs_last_open_task_date_ab3", - "contacts_associated_company_1cb_property_engagements_last_meeting_booked", - "contacts_associated_company_1cb_property_engagements_last_meeting_booked_ab1", - "contacts_associated_company_1cb_property_engagements_last_meeting_booked_ab2", - "contacts_associated_company_1cb_property_engagements_last_meeting_booked_ab3", - "contacts_associated_company_1d9_property_hs_analytics_num_visits", - "contacts_associated_company_1d9_property_hs_analytics_num_visits_ab1", - "contacts_associated_company_1d9_property_hs_analytics_num_visits_ab2", - "contacts_associated_company_1d9_property_hs_analytics_num_visits_ab3", - "contacts_associated_company_1e5_property_hs_last_logged_call_date", - "contacts_associated_company_1e5_property_hs_last_logged_call_date_ab1", - "contacts_associated_company_1e5_property_hs_last_logged_call_date_ab2", - "contacts_associated_company_1e5_property_hs_last_logged_call_date_ab3", - "contacts_associated_company_1e6_property_facebook_company_page", - "contacts_associated_company_1e6_property_facebook_company_page_ab1", - "contacts_associated_company_1e6_property_facebook_company_page_ab2", - "contacts_associated_company_1e6_property_facebook_company_page_ab3", - "contacts_associated_company_211_property_closedate", - "contacts_associated_company_211_property_closedate_ab1", - "contacts_associated_company_211_property_closedate_ab2", - "contacts_associated_company_211_property_closedate_ab3", - "contacts_associated_company_246_property_closedate_timestamp_earliest_value_a2a17e6e", - "contacts_associated_company_246_property_closedate_timestamp_earliest_value_a2a17e6e_ab1", - "contacts_associated_company_246_property_closedate_timestamp_earliest_value_a2a17e6e_ab2", - "contacts_associated_company_246_property_closedate_timestamp_earliest_value_a2a17e6e_ab3", - "contacts_associated_company_24d_property_hs_last_sales_activity_date", - "contacts_associated_company_24d_property_hs_last_sales_activity_date_ab1", - "contacts_associated_company_24d_property_hs_last_sales_activity_date_ab2", - "contacts_associated_company_24d_property_hs_last_sales_activity_date_ab3", - "contacts_associated_company_283_property_description", - "contacts_associated_company_283_property_description_ab1", - "contacts_associated_company_283_property_description_ab2", - "contacts_associated_company_283_property_description_ab3", - "contacts_associated_company_2bf_property_hs_analytics_num_visits_cardinality_sum_53d952a6", - "contacts_associated_company_2bf_property_hs_analytics_num_visits_cardinality_sum_53d952a6_ab1", - "contacts_associated_company_2bf_property_hs_analytics_num_visits_cardinality_sum_53d952a6_ab2", - "contacts_associated_company_2bf_property_hs_analytics_num_visits_cardinality_sum_53d952a6_ab3", - "contacts_associated_company_2cc_property_domain", - "contacts_associated_company_2cc_property_domain_ab1", - "contacts_associated_company_2cc_property_domain_ab2", - "contacts_associated_company_2cc_property_domain_ab3", - "contacts_associated_company_300_property_hs_analytics_source_data_1", - "contacts_associated_company_300_property_hs_analytics_source_data_1_ab1", - "contacts_associated_company_300_property_hs_analytics_source_data_1_ab2", - "contacts_associated_company_300_property_hs_analytics_source_data_1_ab3", - "contacts_associated_company_380_property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e", - "contacts_associated_company_380_property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab1", - "contacts_associated_company_380_property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab2", - "contacts_associated_company_380_property_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab3", - "contacts_associated_company_3aa_property_createdate", - "contacts_associated_company_3aa_property_createdate_ab1", - "contacts_associated_company_3aa_property_createdate_ab2", - "contacts_associated_company_3aa_property_createdate_ab3", - "contacts_associated_company_3d7_property_num_associated_contacts", - "contacts_associated_company_3d7_property_num_associated_contacts_ab1", - "contacts_associated_company_3d7_property_num_associated_contacts_ab2", - "contacts_associated_company_3d7_property_num_associated_contacts_ab3", - "contacts_associated_company_405_property_hs_target_account_recommendation_state", - "contacts_associated_company_405_property_hs_target_account_recommendation_state_ab1", - "contacts_associated_company_405_property_hs_target_account_recommendation_state_ab2", - "contacts_associated_company_405_property_hs_target_account_recommendation_state_ab3", - "contacts_associated_company_44b_property_hs_ideal_customer_profile", - "contacts_associated_company_44b_property_hs_ideal_customer_profile_ab1", - "contacts_associated_company_44b_property_hs_ideal_customer_profile_ab2", - "contacts_associated_company_44b_property_hs_ideal_customer_profile_ab3", - "contacts_associated_company_457_property_state", - "contacts_associated_company_457_property_state_ab1", - "contacts_associated_company_457_property_state_ab2", - "contacts_associated_company_457_property_state_ab3", - "contacts_associated_company_459_property_notes_last_updated", - "contacts_associated_company_459_property_notes_last_updated_ab1", - "contacts_associated_company_459_property_notes_last_updated_ab2", - "contacts_associated_company_459_property_notes_last_updated_ab3", - "contacts_associated_company_47a_property_engagements_last_meeting_booked_source", - "contacts_associated_company_47a_property_engagements_last_meeting_booked_source_ab1", - "contacts_associated_company_47a_property_engagements_last_meeting_booked_source_ab2", - "contacts_associated_company_47a_property_engagements_last_meeting_booked_source_ab3", - "contacts_associated_company_51e_property_days_to_close", - "contacts_associated_company_51e_property_days_to_close_ab1", - "contacts_associated_company_51e_property_days_to_close_ab2", - "contacts_associated_company_51e_property_days_to_close_ab3", - "contacts_associated_company_521_property_hs_target_account_probability", - "contacts_associated_company_521_property_hs_target_account_probability_ab1", - "contacts_associated_company_521_property_hs_target_account_probability_ab2", - "contacts_associated_company_521_property_hs_target_account_probability_ab3", - "contacts_associated_company_524_property_hs_analytics_source_timestamp_earliest_value_25a3a52c", - "contacts_associated_company_524_property_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab1", - "contacts_associated_company_524_property_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab2", - "contacts_associated_company_524_property_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab3", - "contacts_associated_company_542_property_hs_target_account", - "contacts_associated_company_542_property_hs_target_account_ab1", - "contacts_associated_company_542_property_hs_target_account_ab2", - "contacts_associated_company_542_property_hs_target_account_ab3", - "contacts_associated_company_554_property_first_deal_created_date", - "contacts_associated_company_554_property_first_deal_created_date_ab1", - "contacts_associated_company_554_property_first_deal_created_date_ab2", - "contacts_associated_company_554_property_first_deal_created_date_ab3", - "contacts_associated_company_554_property_total_money_raised", - "contacts_associated_company_554_property_total_money_raised_ab1", - "contacts_associated_company_554_property_total_money_raised_ab2", - "contacts_associated_company_554_property_total_money_raised_ab3", - "contacts_associated_company_582_property_hubspot_owner_assigneddate", - "contacts_associated_company_582_property_hubspot_owner_assigneddate_ab1", - "contacts_associated_company_582_property_hubspot_owner_assigneddate_ab2", - "contacts_associated_company_582_property_hubspot_owner_assigneddate_ab3", - "contacts_associated_company_59c_property_num_conversion_events_cardinality_sum_d095f14b", - "contacts_associated_company_59c_property_num_conversion_events_cardinality_sum_d095f14b_ab1", - "contacts_associated_company_59c_property_num_conversion_events_cardinality_sum_d095f14b_ab2", - "contacts_associated_company_59c_property_num_conversion_events_cardinality_sum_d095f14b_ab3", - "contacts_associated_company_5e3_property_hs_all_accessible_team_ids", - "contacts_associated_company_5e3_property_hs_all_accessible_team_ids_ab1", - "contacts_associated_company_5e3_property_hs_all_accessible_team_ids_ab2", - "contacts_associated_company_5e3_property_hs_all_accessible_team_ids_ab3", - "contacts_associated_company_5e6_properties_versions", - "contacts_associated_company_5e6_properties_versions_ab1", - "contacts_associated_company_5e6_properties_versions_ab2", - "contacts_associated_company_5e6_properties_versions_ab3", - "contacts_associated_company_610_property_hs_analytics_last_visit_timestamp", - "contacts_associated_company_610_property_hs_analytics_last_visit_timestamp_ab1", - "contacts_associated_company_610_property_hs_analytics_last_visit_timestamp_ab2", - "contacts_associated_company_610_property_hs_analytics_last_visit_timestamp_ab3", - "contacts_associated_company_621_property_address2", - "contacts_associated_company_621_property_address2_ab1", - "contacts_associated_company_621_property_address2_ab2", - "contacts_associated_company_621_property_address2_ab3", - "contacts_associated_company_622_property_hs_analytics_last_touch_converting_campaign", - "contacts_associated_company_622_property_hs_analytics_last_touch_converting_campaign_ab1", - "contacts_associated_company_622_property_hs_analytics_last_touch_converting_campaign_ab2", - "contacts_associated_company_622_property_hs_analytics_last_touch_converting_campaign_ab3", - "contacts_associated_company_633_property_hs_all_owner_ids", - "contacts_associated_company_633_property_hs_all_owner_ids_ab1", - "contacts_associated_company_633_property_hs_all_owner_ids_ab2", - "contacts_associated_company_633_property_hs_all_owner_ids_ab3", - "contacts_associated_company_684_property_engagements_last_meeting_booked_medium", - "contacts_associated_company_684_property_engagements_last_meeting_booked_medium_ab1", - "contacts_associated_company_684_property_engagements_last_meeting_booked_medium_ab2", - "contacts_associated_company_684_property_engagements_last_meeting_booked_medium_ab3", - "contacts_associated_company_6b4_property_numberofemployees", - "contacts_associated_company_6b4_property_numberofemployees_ab1", - "contacts_associated_company_6b4_property_numberofemployees_ab2", - "contacts_associated_company_6b4_property_numberofemployees_ab3", - "contacts_associated_company_6db_property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a", - "contacts_associated_company_6db_property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab1", - "contacts_associated_company_6db_property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab2", - "contacts_associated_company_6db_property_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab3", - "contacts_associated_company_710_property_hs_is_target_account", - "contacts_associated_company_710_property_hs_is_target_account_ab1", - "contacts_associated_company_710_property_hs_is_target_account_ab2", - "contacts_associated_company_710_property_hs_is_target_account_ab3", - "contacts_associated_company_71b_property_hs_num_child_companies", - "contacts_associated_company_71b_property_hs_num_child_companies_ab1", - "contacts_associated_company_71b_property_hs_num_child_companies_ab2", - "contacts_associated_company_71b_property_hs_num_child_companies_ab3", - "contacts_associated_company_772_property_hs_analytics_first_touch_converting_campaign", - "contacts_associated_company_772_property_hs_analytics_first_touch_converting_campaign_ab1", - "contacts_associated_company_772_property_hs_analytics_first_touch_converting_campaign_ab2", - "contacts_associated_company_772_property_hs_analytics_first_touch_converting_campaign_ab3", - "contacts_associated_company_792_property_hs_createdate", - "contacts_associated_company_792_property_hs_createdate_ab1", - "contacts_associated_company_792_property_hs_createdate_ab2", - "contacts_associated_company_792_property_hs_createdate_ab3", - "contacts_associated_company_79b_property_notes_last_contacted", - "contacts_associated_company_79b_property_notes_last_contacted_ab1", - "contacts_associated_company_79b_property_notes_last_contacted_ab2", - "contacts_associated_company_79b_property_notes_last_contacted_ab3", - "contacts_associated_company_7bd_property_twitterhandle", - "contacts_associated_company_7bd_property_twitterhandle_ab1", - "contacts_associated_company_7bd_property_twitterhandle_ab2", - "contacts_associated_company_7bd_property_twitterhandle_ab3", - "contacts_associated_company_7d9_property_facebookfans", - "contacts_associated_company_7d9_property_facebookfans_ab1", - "contacts_associated_company_7d9_property_facebookfans_ab2", - "contacts_associated_company_7d9_property_facebookfans_ab3", - "contacts_associated_company_801_property_first_contact_createdate", - "contacts_associated_company_801_property_first_contact_createdate_ab1", - "contacts_associated_company_801_property_first_contact_createdate_ab2", - "contacts_associated_company_801_property_first_contact_createdate_ab3", - "contacts_associated_company_804_property_lifecyclestage", - "contacts_associated_company_804_property_lifecyclestage_ab1", - "contacts_associated_company_804_property_lifecyclestage_ab2", - "contacts_associated_company_804_property_lifecyclestage_ab3", - "contacts_associated_company_810_property_hs_updated_by_user_id", - "contacts_associated_company_810_property_hs_updated_by_user_id_ab1", - "contacts_associated_company_810_property_hs_updated_by_user_id_ab2", - "contacts_associated_company_810_property_hs_updated_by_user_id_ab3", - "contacts_associated_company_86d_property_twitterfollowers", - "contacts_associated_company_86d_property_twitterfollowers_ab1", - "contacts_associated_company_86d_property_twitterfollowers_ab2", - "contacts_associated_company_86d_property_twitterfollowers_ab3", - "contacts_associated_company_872_property_industry", - "contacts_associated_company_872_property_industry_ab1", - "contacts_associated_company_872_property_industry_ab2", - "contacts_associated_company_872_property_industry_ab3", - "contacts_associated_company_883_property_phone", - "contacts_associated_company_883_property_phone_ab1", - "contacts_associated_company_883_property_phone_ab2", - "contacts_associated_company_883_property_phone_ab3", - "contacts_associated_company_899_property_hs_analytics_num_page_views_cardinality_sum_e46e85b0", - "contacts_associated_company_899_property_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab1", - "contacts_associated_company_899_property_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab2", - "contacts_associated_company_899_property_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab3", - "contacts_associated_company_8cf_hs_analytics_last_touch_converting_campaign_timestamp_latest_value_81a64e30", - "contacts_associated_company_8e9_property_hubspot_team_id", - "contacts_associated_company_8e9_property_hubspot_team_id_ab1", - "contacts_associated_company_8e9_property_hubspot_team_id_ab2", - "contacts_associated_company_8e9_property_hubspot_team_id_ab3", - "contacts_associated_company_8ef_property_zip", - "contacts_associated_company_8ef_property_zip_ab1", - "contacts_associated_company_8ef_property_zip_ab2", - "contacts_associated_company_8ef_property_zip_ab3", - "contacts_associated_company_924_property_hs_last_booked_meeting_date", - "contacts_associated_company_924_property_hs_last_booked_meeting_date_ab1", - "contacts_associated_company_924_property_hs_last_booked_meeting_date_ab2", - "contacts_associated_company_924_property_hs_last_booked_meeting_date_ab3", - "contacts_associated_company_93b_property_hs_latest_meeting_activity", - "contacts_associated_company_93b_property_hs_latest_meeting_activity_ab1", - "contacts_associated_company_93b_property_hs_latest_meeting_activity_ab2", - "contacts_associated_company_93b_property_hs_latest_meeting_activity_ab3", - "contacts_associated_company_973_property_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce", - "contacts_associated_company_9a4_property_hs_analytics_first_visit_timestamp", - "contacts_associated_company_9a4_property_hs_analytics_first_visit_timestamp_ab1", - "contacts_associated_company_9a4_property_hs_analytics_first_visit_timestamp_ab2", - "contacts_associated_company_9a4_property_hs_analytics_first_visit_timestamp_ab3", - "contacts_associated_company_9b2_property_web_technologies", - "contacts_associated_company_9b2_property_web_technologies_ab1", - "contacts_associated_company_9b2_property_web_technologies_ab2", - "contacts_associated_company_9b2_property_web_technologies_ab3", - "contacts_associated_company_9b7_property_hs_created_by_user_id", - "contacts_associated_company_9b7_property_hs_created_by_user_id_ab1", - "contacts_associated_company_9b7_property_hs_created_by_user_id_ab2", - "contacts_associated_company_9b7_property_hs_created_by_user_id_ab3", - "contacts_associated_company_9d3_property_num_associated_deals", - "contacts_associated_company_9d3_property_num_associated_deals_ab1", - "contacts_associated_company_9d3_property_num_associated_deals_ab2", - "contacts_associated_company_9d3_property_num_associated_deals_ab3", - "contacts_associated_company_a22_property_annualrevenue", - "contacts_associated_company_a22_property_annualrevenue_ab1", - "contacts_associated_company_a22_property_annualrevenue_ab2", - "contacts_associated_company_a22_property_annualrevenue_ab3", - "contacts_associated_company_a35_property_timezone", - "contacts_associated_company_a35_property_timezone_ab1", - "contacts_associated_company_a35_property_timezone_ab2", - "contacts_associated_company_a35_property_timezone_ab3", - "contacts_associated_company_a63_property_website", - "contacts_associated_company_a63_property_website_ab1", - "contacts_associated_company_a63_property_website_ab2", - "contacts_associated_company_a63_property_website_ab3", - "contacts_associated_company_a94_property_hs_total_deal_value", - "contacts_associated_company_a94_property_hs_total_deal_value_ab1", - "contacts_associated_company_a94_property_hs_total_deal_value_ab2", - "contacts_associated_company_a94_property_hs_total_deal_value_ab3", - "contacts_associated_company_abc_property_total_revenue", - "contacts_associated_company_abc_property_total_revenue_ab1", - "contacts_associated_company_abc_property_total_revenue_ab2", - "contacts_associated_company_abc_property_total_revenue_ab3", - "contacts_associated_company_ae9_property_country", - "contacts_associated_company_ae9_property_country_ab1", - "contacts_associated_company_ae9_property_country_ab2", - "contacts_associated_company_ae9_property_country_ab3", - "contacts_associated_company_b06_property_hs_merged_object_ids", - "contacts_associated_company_b06_property_hs_merged_object_ids_ab1", - "contacts_associated_company_b06_property_hs_merged_object_ids_ab2", - "contacts_associated_company_b06_property_hs_merged_object_ids_ab3", - "contacts_associated_company_b80_property_recent_deal_close_date", - "contacts_associated_company_b80_property_recent_deal_close_date_ab1", - "contacts_associated_company_b80_property_recent_deal_close_date_ab2", - "contacts_associated_company_b80_property_recent_deal_close_date_ab3", - "contacts_associated_company_bb4_property_num_contacted_notes", - "contacts_associated_company_bb4_property_num_contacted_notes_ab1", - "contacts_associated_company_bb4_property_num_contacted_notes_ab2", - "contacts_associated_company_bb4_property_num_contacted_notes_ab3", - "contacts_associated_company_bd1_property_hs_target_account_recommendation_snooze_time", - "contacts_associated_company_bd1_property_hs_target_account_recommendation_snooze_time_ab1", - "contacts_associated_company_bd1_property_hs_target_account_recommendation_snooze_time_ab2", - "contacts_associated_company_bd1_property_hs_target_account_recommendation_snooze_time_ab3", - "contacts_associated_company_beb_properties", - "contacts_associated_company_beb_properties_ab1", - "contacts_associated_company_beb_properties_ab2", - "contacts_associated_company_beb_properties_ab3", - "contacts_associated_company_c3b_property_hs_sales_email_last_replied", - "contacts_associated_company_c3b_property_hs_sales_email_last_replied_ab1", - "contacts_associated_company_c3b_property_hs_sales_email_last_replied_ab2", - "contacts_associated_company_c3b_property_hs_sales_email_last_replied_ab3", - "contacts_associated_company_c5f_property_type", - "contacts_associated_company_c5f_property_type_ab1", - "contacts_associated_company_c5f_property_type_ab2", - "contacts_associated_company_c5f_property_type_ab3", - "contacts_associated_company_c7d_property_hs_user_ids_of_all_owners", - "contacts_associated_company_c7d_property_hs_user_ids_of_all_owners_ab1", - "contacts_associated_company_c7d_property_hs_user_ids_of_all_owners_ab2", - "contacts_associated_company_c7d_property_hs_user_ids_of_all_owners_ab3", - "contacts_associated_company_ca1_property_linkedin_company_page", - "contacts_associated_company_ca1_property_linkedin_company_page_ab1", - "contacts_associated_company_ca1_property_linkedin_company_page_ab2", - "contacts_associated_company_ca1_property_linkedin_company_page_ab3", - "contacts_associated_company_cd8_property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a", - "contacts_associated_company_cd8_property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab1", - "contacts_associated_company_cd8_property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab2", - "contacts_associated_company_cd8_property_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab3", - "contacts_associated_company_d03_property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400", - "contacts_associated_company_d03_property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab1", - "contacts_associated_company_d03_property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab2", - "contacts_associated_company_d03_property_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab3", - "contacts_associated_company_d05_property_twitterbio", - "contacts_associated_company_d05_property_twitterbio_ab1", - "contacts_associated_company_d05_property_twitterbio_ab2", - "contacts_associated_company_d05_property_twitterbio_ab3", - "contacts_associated_company_d47_property_founded_year", - "contacts_associated_company_d47_property_founded_year_ab1", - "contacts_associated_company_d47_property_founded_year_ab2", - "contacts_associated_company_d47_property_founded_year_ab3", - "contacts_associated_company_d56_property_recent_conversion_event_name_timestamp_latest_value_66c820bf", - "contacts_associated_company_d56_property_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab1", - "contacts_associated_company_d56_property_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab2", - "contacts_associated_company_d56_property_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab3", - "contacts_associated_company_da3_property_hubspot_owner_id", - "contacts_associated_company_da3_property_hubspot_owner_id_ab1", - "contacts_associated_company_da3_property_hubspot_owner_id_ab2", - "contacts_associated_company_da3_property_hubspot_owner_id_ab3", - "contacts_associated_company_e17_property_hs_avatar_filemanager_key", - "contacts_associated_company_e17_property_hs_avatar_filemanager_key_ab1", - "contacts_associated_company_e17_property_hs_avatar_filemanager_key_ab2", - "contacts_associated_company_e17_property_hs_avatar_filemanager_key_ab3", - "contacts_associated_company_e1e_property_engagements_last_meeting_booked_campaign", - "contacts_associated_company_e1e_property_engagements_last_meeting_booked_campaign_ab1", - "contacts_associated_company_e1e_property_engagements_last_meeting_booked_campaign_ab2", - "contacts_associated_company_e1e_property_engagements_last_meeting_booked_campaign_ab3", - "contacts_associated_company_e1f_property_hs_all_team_ids", - "contacts_associated_company_e1f_property_hs_all_team_ids_ab1", - "contacts_associated_company_e1f_property_hs_all_team_ids_ab2", - "contacts_associated_company_e1f_property_hs_all_team_ids_ab3", - "contacts_associated_company_e2c_property_about_us", - "contacts_associated_company_e2c_property_about_us_ab1", - "contacts_associated_company_e2c_property_about_us_ab2", - "contacts_associated_company_e2c_property_about_us_ab3", - "contacts_associated_company_e2c_property_recent_conversion_date_timestamp_latest_value_72856da1", - "contacts_associated_company_e2c_property_recent_conversion_date_timestamp_latest_value_72856da1_ab1", - "contacts_associated_company_e2c_property_recent_conversion_date_timestamp_latest_value_72856da1_ab2", - "contacts_associated_company_e2c_property_recent_conversion_date_timestamp_latest_value_72856da1_ab3", - "contacts_associated_company_e56_property_hs_analytics_source_data_2", - "contacts_associated_company_e56_property_hs_analytics_source_data_2_ab1", - "contacts_associated_company_e56_property_hs_analytics_source_data_2_ab2", - "contacts_associated_company_e56_property_hs_analytics_source_data_2_ab3", - "contacts_associated_company_e59_property_first_contact_createdate_timestamp_earliest_value_78b50eea", - "contacts_associated_company_e59_property_first_contact_createdate_timestamp_earliest_value_78b50eea_ab1", - "contacts_associated_company_e59_property_first_contact_createdate_timestamp_earliest_value_78b50eea_ab2", - "contacts_associated_company_e59_property_first_contact_createdate_timestamp_earliest_value_78b50eea_ab3", - "contacts_associated_company_e81_property_hs_last_sales_activity_timestamp", - "contacts_associated_company_e81_property_hs_last_sales_activity_timestamp_ab1", - "contacts_associated_company_e81_property_hs_last_sales_activity_timestamp_ab2", - "contacts_associated_company_e81_property_hs_last_sales_activity_timestamp_ab3", - "contacts_associated_company_e8e_property_googleplus_page", - "contacts_associated_company_e8e_property_googleplus_page_ab1", - "contacts_associated_company_e8e_property_googleplus_page_ab2", - "contacts_associated_company_e8e_property_googleplus_page_ab3", - "contacts_associated_company_ed5_property_city", - "contacts_associated_company_ed5_property_city_ab1", - "contacts_associated_company_ed5_property_city_ab2", - "contacts_associated_company_ed5_property_city_ab3", - "contacts_associated_company_ed6_property_hs_analytics_num_page_views", - "contacts_associated_company_ed6_property_hs_analytics_num_page_views_ab1", - "contacts_associated_company_ed6_property_hs_analytics_num_page_views_ab2", - "contacts_associated_company_ed6_property_hs_analytics_num_page_views_ab3", - "contacts_associated_company_eec_property_hs_analytics_source", - "contacts_associated_company_eec_property_hs_analytics_source_ab1", - "contacts_associated_company_eec_property_hs_analytics_source_ab2", - "contacts_associated_company_eec_property_hs_analytics_source_ab3", - "contacts_associated_company_eed_property_name", - "contacts_associated_company_eed_property_name_ab1", - "contacts_associated_company_eed_property_name_ab2", - "contacts_associated_company_eed_property_name_ab3", - "contacts_associated_company_f09_property_recent_deal_amount", - "contacts_associated_company_f09_property_recent_deal_amount_ab1", - "contacts_associated_company_f09_property_recent_deal_amount_ab2", - "contacts_associated_company_f09_property_recent_deal_amount_ab3", - "contacts_associated_company_f1e_property_hs_parent_company_id", - "contacts_associated_company_f1e_property_hs_parent_company_id_ab1", - "contacts_associated_company_f1e_property_hs_parent_company_id_ab2", - "contacts_associated_company_f1e_property_hs_parent_company_id_ab3", - "contacts_associated_company_f65_property_hs_num_contacts_with_buying_roles", - "contacts_associated_company_f65_property_hs_num_contacts_with_buying_roles_ab1", - "contacts_associated_company_f65_property_hs_num_contacts_with_buying_roles_ab2", - "contacts_associated_company_f65_property_hs_num_contacts_with_buying_roles_ab3", - "contacts_associated_company_f7f_property_hs_num_open_deals", - "contacts_associated_company_f7f_property_hs_num_open_deals_ab1", - "contacts_associated_company_f7f_property_hs_num_open_deals_ab2", - "contacts_associated_company_f7f_property_hs_num_open_deals_ab3", - "contacts_associated_company_fc8_property_first_conversion_event_name_timestamp_earliest_value_68ddae0a", - "contacts_associated_company_fc8_property_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab1", - "contacts_associated_company_fc8_property_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab2", - "contacts_associated_company_fc8_property_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab3", - "contacts_associated_company_ff0_property_hs_analytics_last_timestamp", - "contacts_associated_company_ff0_property_hs_analytics_last_timestamp_ab1", - "contacts_associated_company_ff0_property_hs_analytics_last_timestamp_ab2", - "contacts_associated_company_ff0_property_hs_analytics_last_timestamp_ab3", - "contacts_associated_company_pr_5e7_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab1", - "contacts_associated_company_pr_5e7_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab2", - "contacts_associated_company_pr_5e7_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae_ab3", - "contacts_associated_company_prope_5ac_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab1", - "contacts_associated_company_prope_5ac_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab2", - "contacts_associated_company_prope_5ac_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce_ab3", - "contacts_associated_company_proper_5e7_hs_analytics_first_visit_timestamp_timestamp_earliest_value_accc17ae", - "contacts_associated_company_properti_cd0_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab1", - "contacts_associated_company_properti_cd0_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab2", - "contacts_associated_company_properti_cd0_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a_ab3", - "contacts_associated_company_propertie_57b_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab1", - "contacts_associated_company_propertie_57b_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab2", - "contacts_associated_company_propertie_57b_first_conversion_event_name_timestamp_earliest_value_68ddae0a_ab3", - "contacts_associated_company_propertie_5ac_hs_analytics_last_visit_timestamp_timestamp_latest_value_999a0fce", - "contacts_associated_company_properties_01f_industry", - "contacts_associated_company_properties_01f_industry_ab1", - "contacts_associated_company_properties_01f_industry_ab2", - "contacts_associated_company_properties_01f_industry_ab3", - "contacts_associated_company_properties_027_hs_target_account_recommendation_state", - "contacts_associated_company_properties_027_hs_target_account_recommendation_state_ab1", - "contacts_associated_company_properties_027_hs_target_account_recommendation_state_ab2", - "contacts_associated_company_properties_027_hs_target_account_recommendation_state_ab3", - "contacts_associated_company_properties_05c_hubspot_owner_assigneddate", - "contacts_associated_company_properties_05c_hubspot_owner_assigneddate_ab1", - "contacts_associated_company_properties_05c_hubspot_owner_assigneddate_ab2", - "contacts_associated_company_properties_05c_hubspot_owner_assigneddate_ab3", - "contacts_associated_company_properties_060_createdate", - "contacts_associated_company_properties_060_createdate_ab1", - "contacts_associated_company_properties_060_createdate_ab2", - "contacts_associated_company_properties_060_createdate_ab3", - "contacts_associated_company_properties_074_recent_conversion_event_name_timestamp_latest_value_66c820bf", - "contacts_associated_company_properties_074_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab1", - "contacts_associated_company_properties_074_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab2", - "contacts_associated_company_properties_074_recent_conversion_event_name_timestamp_latest_value_66c820bf_ab3", - "contacts_associated_company_properties_087_num_associated_contacts", - "contacts_associated_company_properties_087_num_associated_contacts_ab1", - "contacts_associated_company_properties_087_num_associated_contacts_ab2", - "contacts_associated_company_properties_087_num_associated_contacts_ab3", - "contacts_associated_company_properties_0ab_linkedinbio", - "contacts_associated_company_properties_0ab_linkedinbio_ab1", - "contacts_associated_company_properties_0ab_linkedinbio_ab2", - "contacts_associated_company_properties_0ab_linkedinbio_ab3", - "contacts_associated_company_properties_0df_hs_created_by_user_id", - "contacts_associated_company_properties_0df_hs_created_by_user_id_ab1", - "contacts_associated_company_properties_0df_hs_created_by_user_id_ab2", - "contacts_associated_company_properties_0df_hs_created_by_user_id_ab3", - "contacts_associated_company_properties_102_phone", - "contacts_associated_company_properties_102_phone_ab1", - "contacts_associated_company_properties_102_phone_ab2", - "contacts_associated_company_properties_102_phone_ab3", - "contacts_associated_company_properties_123_country", - "contacts_associated_company_properties_123_country_ab1", - "contacts_associated_company_properties_123_country_ab2", - "contacts_associated_company_properties_123_country_ab3", - "contacts_associated_company_properties_129_hs_createdate", - "contacts_associated_company_properties_129_hs_createdate_ab1", - "contacts_associated_company_properties_129_hs_createdate_ab2", - "contacts_associated_company_properties_129_hs_createdate_ab3", - "contacts_associated_company_properties_138_hs_user_ids_of_all_owners", - "contacts_associated_company_properties_138_hs_user_ids_of_all_owners_ab1", - "contacts_associated_company_properties_138_hs_user_ids_of_all_owners_ab2", - "contacts_associated_company_properties_138_hs_user_ids_of_all_owners_ab3", - "contacts_associated_company_properties_14a_days_to_close", - "contacts_associated_company_properties_14a_days_to_close_ab1", - "contacts_associated_company_properties_14a_days_to_close_ab2", - "contacts_associated_company_properties_14a_days_to_close_ab3", - "contacts_associated_company_properties_152_about_us", - "contacts_associated_company_properties_152_about_us_ab1", - "contacts_associated_company_properties_152_about_us_ab2", - "contacts_associated_company_properties_152_about_us_ab3", - "contacts_associated_company_properties_15c_timezone", - "contacts_associated_company_properties_15c_timezone_ab1", - "contacts_associated_company_properties_15c_timezone_ab2", - "contacts_associated_company_properties_15c_timezone_ab3", - "contacts_associated_company_properties_174_hs_last_sales_activity_date", - "contacts_associated_company_properties_174_hs_last_sales_activity_date_ab1", - "contacts_associated_company_properties_174_hs_last_sales_activity_date_ab2", - "contacts_associated_company_properties_174_hs_last_sales_activity_date_ab3", - "contacts_associated_company_properties_19c_recent_deal_close_date", - "contacts_associated_company_properties_19c_recent_deal_close_date_ab1", - "contacts_associated_company_properties_19c_recent_deal_close_date_ab2", - "contacts_associated_company_properties_19c_recent_deal_close_date_ab3", - "contacts_associated_company_properties_1a0_num_notes", - "contacts_associated_company_properties_1a0_num_notes_ab1", - "contacts_associated_company_properties_1a0_num_notes_ab2", - "contacts_associated_company_properties_1a0_num_notes_ab3", - "contacts_associated_company_properties_1e1_hs_all_team_ids", - "contacts_associated_company_properties_1e1_hs_all_team_ids_ab1", - "contacts_associated_company_properties_1e1_hs_all_team_ids_ab2", - "contacts_associated_company_properties_1e1_hs_all_team_ids_ab3", - "contacts_associated_company_properties_20d_hs_latest_meeting_activity", - "contacts_associated_company_properties_20d_hs_latest_meeting_activity_ab1", - "contacts_associated_company_properties_20d_hs_latest_meeting_activity_ab2", - "contacts_associated_company_properties_20d_hs_latest_meeting_activity_ab3", - "contacts_associated_company_properties_290_total_revenue", - "contacts_associated_company_properties_290_total_revenue_ab1", - "contacts_associated_company_properties_290_total_revenue_ab2", - "contacts_associated_company_properties_290_total_revenue_ab3", - "contacts_associated_company_properties_2b8_first_deal_created_date", - "contacts_associated_company_properties_2b8_first_deal_created_date_ab1", - "contacts_associated_company_properties_2b8_first_deal_created_date_ab2", - "contacts_associated_company_properties_2b8_first_deal_created_date_ab3", - "contacts_associated_company_properties_2b8_hs_num_child_companies", - "contacts_associated_company_properties_2b8_hs_num_child_companies_ab1", - "contacts_associated_company_properties_2b8_hs_num_child_companies_ab2", - "contacts_associated_company_properties_2b8_hs_num_child_companies_ab3", - "contacts_associated_company_properties_3ae_hs_analytics_first_touch_converting_campaign", - "contacts_associated_company_properties_3ae_hs_analytics_first_touch_converting_campaign_ab1", - "contacts_associated_company_properties_3ae_hs_analytics_first_touch_converting_campaign_ab2", - "contacts_associated_company_properties_3ae_hs_analytics_first_touch_converting_campaign_ab3", - "contacts_associated_company_properties_403_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1", - "contacts_associated_company_properties_403_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab1", - "contacts_associated_company_properties_403_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab2", - "contacts_associated_company_properties_403_hs_analytics_source_data_1_timestamp_earliest_value_9b2f1fa1_ab3", - "contacts_associated_company_properties_411_hs_additional_domains", - "contacts_associated_company_properties_411_hs_additional_domains_ab1", - "contacts_associated_company_properties_411_hs_additional_domains_ab2", - "contacts_associated_company_properties_411_hs_additional_domains_ab3", - "contacts_associated_company_properties_447_hs_lastmodifieddate", - "contacts_associated_company_properties_447_hs_lastmodifieddate_ab1", - "contacts_associated_company_properties_447_hs_lastmodifieddate_ab2", - "contacts_associated_company_properties_447_hs_lastmodifieddate_ab3", - "contacts_associated_company_properties_46a_total_money_raised", - "contacts_associated_company_properties_46a_total_money_raised_ab1", - "contacts_associated_company_properties_46a_total_money_raised_ab2", - "contacts_associated_company_properties_46a_total_money_raised_ab3", - "contacts_associated_company_properties_4b1_first_contact_createdate", - "contacts_associated_company_properties_4b1_first_contact_createdate_ab1", - "contacts_associated_company_properties_4b1_first_contact_createdate_ab2", - "contacts_associated_company_properties_4b1_first_contact_createdate_ab3", - "contacts_associated_company_properties_51f_twitterhandle", - "contacts_associated_company_properties_51f_twitterhandle_ab1", - "contacts_associated_company_properties_51f_twitterhandle_ab2", - "contacts_associated_company_properties_51f_twitterhandle_ab3", - "contacts_associated_company_properties_533_facebookfans", - "contacts_associated_company_properties_533_facebookfans_ab1", - "contacts_associated_company_properties_533_facebookfans_ab2", - "contacts_associated_company_properties_533_facebookfans_ab3", - "contacts_associated_company_properties_541_annualrevenue", - "contacts_associated_company_properties_541_annualrevenue_ab1", - "contacts_associated_company_properties_541_annualrevenue_ab2", - "contacts_associated_company_properties_541_annualrevenue_ab3", - "contacts_associated_company_properties_560_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400", - "contacts_associated_company_properties_560_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab1", - "contacts_associated_company_properties_560_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab2", - "contacts_associated_company_properties_560_hs_analytics_source_data_2_timestamp_earliest_value_9b2f9400_ab3", - "contacts_associated_company_properties_57a_hs_predictivecontactscore_v2_next_max_max_d4e58c1e", - "contacts_associated_company_properties_57a_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab1", - "contacts_associated_company_properties_57a_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab2", - "contacts_associated_company_properties_57a_hs_predictivecontactscore_v2_next_max_max_d4e58c1e_ab3", - "contacts_associated_company_properties_57b_first_conversion_event_name_timestamp_earliest_value_68ddae0a", - "contacts_associated_company_properties_57d_hs_total_deal_value", - "contacts_associated_company_properties_57d_hs_total_deal_value_ab1", - "contacts_associated_company_properties_57d_hs_total_deal_value_ab2", - "contacts_associated_company_properties_57d_hs_total_deal_value_ab3", - "contacts_associated_company_properties_5fe_zip", - "contacts_associated_company_properties_5fe_zip_ab1", - "contacts_associated_company_properties_5fe_zip_ab2", - "contacts_associated_company_properties_5fe_zip_ab3", - "contacts_associated_company_properties_685_hs_analytics_num_visits", - "contacts_associated_company_properties_685_hs_analytics_num_visits_ab1", - "contacts_associated_company_properties_685_hs_analytics_num_visits_ab2", - "contacts_associated_company_properties_685_hs_analytics_num_visits_ab3", - "contacts_associated_company_properties_6c3_hs_analytics_last_touch_converting_campaign", - "contacts_associated_company_properties_6c3_hs_analytics_last_touch_converting_campaign_ab1", - "contacts_associated_company_properties_6c3_hs_analytics_last_touch_converting_campaign_ab2", - "contacts_associated_company_properties_6c3_hs_analytics_last_touch_converting_campaign_ab3", - "contacts_associated_company_properties_6d9_numberofemployees", - "contacts_associated_company_properties_6d9_numberofemployees_ab1", - "contacts_associated_company_properties_6d9_numberofemployees_ab2", - "contacts_associated_company_properties_6d9_numberofemployees_ab3", - "contacts_associated_company_properties_6ef_engagements_last_meeting_booked", - "contacts_associated_company_properties_6ef_engagements_last_meeting_booked_ab1", - "contacts_associated_company_properties_6ef_engagements_last_meeting_booked_ab2", - "contacts_associated_company_properties_6ef_engagements_last_meeting_booked_ab3", - "contacts_associated_company_properties_70e_hs_analytics_first_visit_timestamp", - "contacts_associated_company_properties_70e_hs_analytics_first_visit_timestamp_ab1", - "contacts_associated_company_properties_70e_hs_analytics_first_visit_timestamp_ab2", - "contacts_associated_company_properties_70e_hs_analytics_first_visit_timestamp_ab3", - "contacts_associated_company_properties_719_num_associated_deals", - "contacts_associated_company_properties_719_num_associated_deals_ab1", - "contacts_associated_company_properties_719_num_associated_deals_ab2", - "contacts_associated_company_properties_719_num_associated_deals_ab3", - "contacts_associated_company_properties_738_hs_all_accessible_team_ids", - "contacts_associated_company_properties_738_hs_all_accessible_team_ids_ab1", - "contacts_associated_company_properties_738_hs_all_accessible_team_ids_ab2", - "contacts_associated_company_properties_738_hs_all_accessible_team_ids_ab3", - "contacts_associated_company_properties_76b_web_technologies", - "contacts_associated_company_properties_76b_web_technologies_ab1", - "contacts_associated_company_properties_76b_web_technologies_ab2", - "contacts_associated_company_properties_76b_web_technologies_ab3", - "contacts_associated_company_properties_785_hs_sales_email_last_replied", - "contacts_associated_company_properties_785_hs_sales_email_last_replied_ab1", - "contacts_associated_company_properties_785_hs_sales_email_last_replied_ab2", - "contacts_associated_company_properties_785_hs_sales_email_last_replied_ab3", - "contacts_associated_company_properties_79e_hs_object_id", - "contacts_associated_company_properties_79e_hs_object_id_ab1", - "contacts_associated_company_properties_79e_hs_object_id_ab2", - "contacts_associated_company_properties_79e_hs_object_id_ab3", - "contacts_associated_company_properties_7e5_recent_conversion_date_timestamp_latest_value_72856da1", - "contacts_associated_company_properties_7e5_recent_conversion_date_timestamp_latest_value_72856da1_ab1", - "contacts_associated_company_properties_7e5_recent_conversion_date_timestamp_latest_value_72856da1_ab2", - "contacts_associated_company_properties_7e5_recent_conversion_date_timestamp_latest_value_72856da1_ab3", - "contacts_associated_company_properties_80f_notes_last_contacted", - "contacts_associated_company_properties_80f_notes_last_contacted_ab1", - "contacts_associated_company_properties_80f_notes_last_contacted_ab2", - "contacts_associated_company_properties_80f_notes_last_contacted_ab3", - "contacts_associated_company_properties_810_googleplus_page", - "contacts_associated_company_properties_810_googleplus_page_ab1", - "contacts_associated_company_properties_810_googleplus_page_ab2", - "contacts_associated_company_properties_810_googleplus_page_ab3", - "contacts_associated_company_properties_818_hs_analytics_first_timestamp", - "contacts_associated_company_properties_818_hs_analytics_first_timestamp_ab1", - "contacts_associated_company_properties_818_hs_analytics_first_timestamp_ab2", - "contacts_associated_company_properties_818_hs_analytics_first_timestamp_ab3", - "contacts_associated_company_properties_81d_num_contacted_notes", - "contacts_associated_company_properties_81d_num_contacted_notes_ab1", - "contacts_associated_company_properties_81d_num_contacted_notes_ab2", - "contacts_associated_company_properties_81d_num_contacted_notes_ab3", - "contacts_associated_company_properties_82e_address", - "contacts_associated_company_properties_82e_address_ab1", - "contacts_associated_company_properties_82e_address_ab2", - "contacts_associated_company_properties_82e_address_ab3", - "contacts_associated_company_properties_839_address2", - "contacts_associated_company_properties_839_address2_ab1", - "contacts_associated_company_properties_839_address2_ab2", - "contacts_associated_company_properties_839_address2_ab3", - "contacts_associated_company_properties_85e_hs_analytics_source_data_1", - "contacts_associated_company_properties_85e_hs_analytics_source_data_1_ab1", - "contacts_associated_company_properties_85e_hs_analytics_source_data_1_ab2", - "contacts_associated_company_properties_85e_hs_analytics_source_data_1_ab3", - "contacts_associated_company_properties_869_hs_ideal_customer_profile", - "contacts_associated_company_properties_869_hs_ideal_customer_profile_ab1", - "contacts_associated_company_properties_869_hs_ideal_customer_profile_ab2", - "contacts_associated_company_properties_869_hs_ideal_customer_profile_ab3", - "contacts_associated_company_properties_86c_hs_updated_by_user_id", - "contacts_associated_company_properties_86c_hs_updated_by_user_id_ab1", - "contacts_associated_company_properties_86c_hs_updated_by_user_id_ab2", - "contacts_associated_company_properties_86c_hs_updated_by_user_id_ab3", - "contacts_associated_company_properties_87a_num_conversion_events_cardinality_sum_d095f14b", - "contacts_associated_company_properties_87a_num_conversion_events_cardinality_sum_d095f14b_ab1", - "contacts_associated_company_properties_87a_num_conversion_events_cardinality_sum_d095f14b_ab2", - "contacts_associated_company_properties_87a_num_conversion_events_cardinality_sum_d095f14b_ab3", - "contacts_associated_company_properties_882_hubspot_owner_id", - "contacts_associated_company_properties_882_hubspot_owner_id_ab1", - "contacts_associated_company_properties_882_hubspot_owner_id_ab2", - "contacts_associated_company_properties_882_hubspot_owner_id_ab3", - "contacts_associated_company_properties_883_first_conversion_date_timestamp_earliest_value_61f58f2c", - "contacts_associated_company_properties_883_first_conversion_date_timestamp_earliest_value_61f58f2c_ab1", - "contacts_associated_company_properties_883_first_conversion_date_timestamp_earliest_value_61f58f2c_ab2", - "contacts_associated_company_properties_883_first_conversion_date_timestamp_earliest_value_61f58f2c_ab3", - "contacts_associated_company_properties_8b4_description", - "contacts_associated_company_properties_8b4_description_ab1", - "contacts_associated_company_properties_8b4_description_ab2", - "contacts_associated_company_properties_8b4_description_ab3", - "contacts_associated_company_properties_91f_city", - "contacts_associated_company_properties_91f_city_ab1", - "contacts_associated_company_properties_91f_city_ab2", - "contacts_associated_company_properties_91f_city_ab3", - "contacts_associated_company_properties_937_closedate_timestamp_earliest_value_a2a17e6e", - "contacts_associated_company_properties_937_closedate_timestamp_earliest_value_a2a17e6e_ab1", - "contacts_associated_company_properties_937_closedate_timestamp_earliest_value_a2a17e6e_ab2", - "contacts_associated_company_properties_937_closedate_timestamp_earliest_value_a2a17e6e_ab3", - "contacts_associated_company_properties_93c_state", - "contacts_associated_company_properties_93c_state_ab1", - "contacts_associated_company_properties_93c_state_ab2", - "contacts_associated_company_properties_93c_state_ab3", - "contacts_associated_company_properties_946_hs_last_open_task_date", - "contacts_associated_company_properties_946_hs_last_open_task_date_ab1", - "contacts_associated_company_properties_946_hs_last_open_task_date_ab2", - "contacts_associated_company_properties_946_hs_last_open_task_date_ab3", - "contacts_associated_company_properties_953_hs_merged_object_ids", - "contacts_associated_company_properties_953_hs_merged_object_ids_ab1", - "contacts_associated_company_properties_953_hs_merged_object_ids_ab2", - "contacts_associated_company_properties_953_hs_merged_object_ids_ab3", - "contacts_associated_company_properties_9bf_linkedin_company_page", - "contacts_associated_company_properties_9bf_linkedin_company_page_ab1", - "contacts_associated_company_properties_9bf_linkedin_company_page_ab2", - "contacts_associated_company_properties_9bf_linkedin_company_page_ab3", - "contacts_associated_company_properties_9d6_hs_target_account_recommendation_snooze_time", - "contacts_associated_company_properties_9d6_hs_target_account_recommendation_snooze_time_ab1", - "contacts_associated_company_properties_9d6_hs_target_account_recommendation_snooze_time_ab2", - "contacts_associated_company_properties_9d6_hs_target_account_recommendation_snooze_time_ab3", - "contacts_associated_company_properties_9da_hs_last_logged_call_date", - "contacts_associated_company_properties_9da_hs_last_logged_call_date_ab1", - "contacts_associated_company_properties_9da_hs_last_logged_call_date_ab2", - "contacts_associated_company_properties_9da_hs_last_logged_call_date_ab3", - "contacts_associated_company_properties_a2f_hs_all_owner_ids", - "contacts_associated_company_properties_a2f_hs_all_owner_ids_ab1", - "contacts_associated_company_properties_a2f_hs_all_owner_ids_ab2", - "contacts_associated_company_properties_a2f_hs_all_owner_ids_ab3", - "contacts_associated_company_properties_a64_lifecyclestage", - "contacts_associated_company_properties_a64_lifecyclestage_ab1", - "contacts_associated_company_properties_a64_lifecyclestage_ab2", - "contacts_associated_company_properties_a64_lifecyclestage_ab3", - "contacts_associated_company_properties_a73_facebook_company_page", - "contacts_associated_company_properties_a73_facebook_company_page_ab1", - "contacts_associated_company_properties_a73_facebook_company_page_ab2", - "contacts_associated_company_properties_a73_facebook_company_page_ab3", - "contacts_associated_company_properties_aa0_founded_year", - "contacts_associated_company_properties_aa0_founded_year_ab1", - "contacts_associated_company_properties_aa0_founded_year_ab2", - "contacts_associated_company_properties_aa0_founded_year_ab3", - "contacts_associated_company_properties_acd_domain", - "contacts_associated_company_properties_acd_domain_ab1", - "contacts_associated_company_properties_acd_domain_ab2", - "contacts_associated_company_properties_acd_domain_ab3", - "contacts_associated_company_properties_b4e_hs_last_booked_meeting_date", - "contacts_associated_company_properties_b4e_hs_last_booked_meeting_date_ab1", - "contacts_associated_company_properties_b4e_hs_last_booked_meeting_date_ab2", - "contacts_associated_company_properties_b4e_hs_last_booked_meeting_date_ab3", - "contacts_associated_company_properties_bc4_hs_target_account", - "contacts_associated_company_properties_bc4_hs_target_account_ab1", - "contacts_associated_company_properties_bc4_hs_target_account_ab2", - "contacts_associated_company_properties_bc4_hs_target_account_ab3", - "contacts_associated_company_properties_bc9_hs_num_blockers", - "contacts_associated_company_properties_bc9_hs_num_blockers_ab1", - "contacts_associated_company_properties_bc9_hs_num_blockers_ab2", - "contacts_associated_company_properties_bc9_hs_num_blockers_ab3", - "contacts_associated_company_properties_bcb_twitterbio", - "contacts_associated_company_properties_bcb_twitterbio_ab1", - "contacts_associated_company_properties_bcb_twitterbio_ab2", - "contacts_associated_company_properties_bcb_twitterbio_ab3", - "contacts_associated_company_properties_be9_hs_analytics_source_data_2", - "contacts_associated_company_properties_be9_hs_analytics_source_data_2_ab1", - "contacts_associated_company_properties_be9_hs_analytics_source_data_2_ab2", - "contacts_associated_company_properties_be9_hs_analytics_source_data_2_ab3", - "contacts_associated_company_properties_bf0_name", - "contacts_associated_company_properties_bf0_name_ab1", - "contacts_associated_company_properties_bf0_name_ab2", - "contacts_associated_company_properties_bf0_name_ab3", - "contacts_associated_company_properties_bf1_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a", - "contacts_associated_company_properties_bf1_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab1", - "contacts_associated_company_properties_bf1_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab2", - "contacts_associated_company_properties_bf1_hs_analytics_last_timestamp_timestamp_latest_value_4e16365a_ab3", - "contacts_associated_company_properties_c38_hs_is_target_account", - "contacts_associated_company_properties_c38_hs_is_target_account_ab1", - "contacts_associated_company_properties_c38_hs_is_target_account_ab2", - "contacts_associated_company_properties_c38_hs_is_target_account_ab3", - "contacts_associated_company_properties_c70_hs_target_account_probability", - "contacts_associated_company_properties_c70_hs_target_account_probability_ab1", - "contacts_associated_company_properties_c70_hs_target_account_probability_ab2", - "contacts_associated_company_properties_c70_hs_target_account_probability_ab3", - "contacts_associated_company_properties_cd0_hs_analytics_first_timestamp_timestamp_earliest_value_11e3a63a", - "contacts_associated_company_properties_cf9_engagements_last_meeting_booked_medium", - "contacts_associated_company_properties_cf9_engagements_last_meeting_booked_medium_ab1", - "contacts_associated_company_properties_cf9_engagements_last_meeting_booked_medium_ab2", - "contacts_associated_company_properties_cf9_engagements_last_meeting_booked_medium_ab3", - "contacts_associated_company_properties_cfe_first_contact_createdate_timestamp_earliest_value_78b50eea", - "contacts_associated_company_properties_cfe_first_contact_createdate_timestamp_earliest_value_78b50eea_ab1", - "contacts_associated_company_properties_cfe_first_contact_createdate_timestamp_earliest_value_78b50eea_ab2", - "contacts_associated_company_properties_cfe_first_contact_createdate_timestamp_earliest_value_78b50eea_ab3", - "contacts_associated_company_properties_d1f_hs_analytics_source", - "contacts_associated_company_properties_d1f_hs_analytics_source_ab1", - "contacts_associated_company_properties_d1f_hs_analytics_source_ab2", - "contacts_associated_company_properties_d1f_hs_analytics_source_ab3", - "contacts_associated_company_properties_d24_twitterfollowers", - "contacts_associated_company_properties_d24_twitterfollowers_ab1", - "contacts_associated_company_properties_d24_twitterfollowers_ab2", - "contacts_associated_company_properties_d24_twitterfollowers_ab3", - "contacts_associated_company_properties_d32_hs_analytics_num_page_views_cardinality_sum_e46e85b0", - "contacts_associated_company_properties_d32_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab1", - "contacts_associated_company_properties_d32_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab2", - "contacts_associated_company_properties_d32_hs_analytics_num_page_views_cardinality_sum_e46e85b0_ab3", - "contacts_associated_company_properties_d43_hs_num_decision_makers", - "contacts_associated_company_properties_d43_hs_num_decision_makers_ab1", - "contacts_associated_company_properties_d43_hs_num_decision_makers_ab2", - "contacts_associated_company_properties_d43_hs_num_decision_makers_ab3", - "contacts_associated_company_properties_d52_hubspot_team_id", - "contacts_associated_company_properties_d52_hubspot_team_id_ab1", - "contacts_associated_company_properties_d52_hubspot_team_id_ab2", - "contacts_associated_company_properties_d52_hubspot_team_id_ab3", - "contacts_associated_company_properties_d5a_hs_analytics_num_page_views", - "contacts_associated_company_properties_d5a_hs_analytics_num_page_views_ab1", - "contacts_associated_company_properties_d5a_hs_analytics_num_page_views_ab2", - "contacts_associated_company_properties_d5a_hs_analytics_num_page_views_ab3", - "contacts_associated_company_properties_d97_hs_analytics_num_visits_cardinality_sum_53d952a6", - "contacts_associated_company_properties_d97_hs_analytics_num_visits_cardinality_sum_53d952a6_ab1", - "contacts_associated_company_properties_d97_hs_analytics_num_visits_cardinality_sum_53d952a6_ab2", - "contacts_associated_company_properties_d97_hs_analytics_num_visits_cardinality_sum_53d952a6_ab3", - "contacts_associated_company_properties_d9f_is_public", - "contacts_associated_company_properties_d9f_is_public_ab1", - "contacts_associated_company_properties_d9f_is_public_ab2", - "contacts_associated_company_properties_d9f_is_public_ab3", - "contacts_associated_company_properties_db2_hs_avatar_filemanager_key", - "contacts_associated_company_properties_db2_hs_avatar_filemanager_key_ab1", - "contacts_associated_company_properties_db2_hs_avatar_filemanager_key_ab2", - "contacts_associated_company_properties_db2_hs_avatar_filemanager_key_ab3", - "contacts_associated_company_properties_dbb_closedate", - "contacts_associated_company_properties_dbb_closedate_ab1", - "contacts_associated_company_properties_dbb_closedate_ab2", - "contacts_associated_company_properties_dbb_closedate_ab3", - "contacts_associated_company_properties_e23_hs_num_contacts_with_buying_roles", - "contacts_associated_company_properties_e23_hs_num_contacts_with_buying_roles_ab1", - "contacts_associated_company_properties_e23_hs_num_contacts_with_buying_roles_ab2", - "contacts_associated_company_properties_e23_hs_num_contacts_with_buying_roles_ab3", - "contacts_associated_company_properties_e8e_hs_analytics_last_visit_timestamp", - "contacts_associated_company_properties_e8e_hs_analytics_last_visit_timestamp_ab1", - "contacts_associated_company_properties_e8e_hs_analytics_last_visit_timestamp_ab2", - "contacts_associated_company_properties_e8e_hs_analytics_last_visit_timestamp_ab3", - "contacts_associated_company_properties_ea6_engagements_last_meeting_booked_source", - "contacts_associated_company_properties_ea6_engagements_last_meeting_booked_source_ab1", - "contacts_associated_company_properties_ea6_engagements_last_meeting_booked_source_ab2", - "contacts_associated_company_properties_ea6_engagements_last_meeting_booked_source_ab3", - "contacts_associated_company_properties_edd_hs_parent_company_id", - "contacts_associated_company_properties_edd_hs_parent_company_id_ab1", - "contacts_associated_company_properties_edd_hs_parent_company_id_ab2", - "contacts_associated_company_properties_edd_hs_parent_company_id_ab3", - "contacts_associated_company_properties_eef_engagements_last_meeting_booked_campaign", - "contacts_associated_company_properties_eef_engagements_last_meeting_booked_campaign_ab1", - "contacts_associated_company_properties_eef_engagements_last_meeting_booked_campaign_ab2", - "contacts_associated_company_properties_eef_engagements_last_meeting_booked_campaign_ab3", - "contacts_associated_company_properties_f00_hs_analytics_last_timestamp", - "contacts_associated_company_properties_f00_hs_analytics_last_timestamp_ab1", - "contacts_associated_company_properties_f00_hs_analytics_last_timestamp_ab2", - "contacts_associated_company_properties_f00_hs_analytics_last_timestamp_ab3", - "contacts_associated_company_properties_f4f_hs_lead_status", - "contacts_associated_company_properties_f4f_hs_lead_status_ab1", - "contacts_associated_company_properties_f4f_hs_lead_status_ab2", - "contacts_associated_company_properties_f4f_hs_lead_status_ab3", - "contacts_associated_company_properties_f57_website", - "contacts_associated_company_properties_f57_website_ab1", - "contacts_associated_company_properties_f57_website_ab2", - "contacts_associated_company_properties_f57_website_ab3", - "contacts_associated_company_properties_f5e_hs_num_open_deals", - "contacts_associated_company_properties_f5e_hs_num_open_deals_ab1", - "contacts_associated_company_properties_f5e_hs_num_open_deals_ab2", - "contacts_associated_company_properties_f5e_hs_num_open_deals_ab3", - "contacts_associated_company_properties_f64_recent_deal_amount", - "contacts_associated_company_properties_f64_recent_deal_amount_ab1", - "contacts_associated_company_properties_f64_recent_deal_amount_ab2", - "contacts_associated_company_properties_f64_recent_deal_amount_ab3", - "contacts_associated_company_properties_f6b_hs_last_sales_activity_timestamp", - "contacts_associated_company_properties_f6b_hs_last_sales_activity_timestamp_ab1", - "contacts_associated_company_properties_f6b_hs_last_sales_activity_timestamp_ab2", - "contacts_associated_company_properties_f6b_hs_last_sales_activity_timestamp_ab3", - "contacts_associated_company_properties_f7b_notes_next_activity_date", - "contacts_associated_company_properties_f7b_notes_next_activity_date_ab1", - "contacts_associated_company_properties_f7b_notes_next_activity_date_ab2", - "contacts_associated_company_properties_f7b_notes_next_activity_date_ab3", - "contacts_associated_company_properties_f7c_hs_analytics_source_timestamp_earliest_value_25a3a52c", - "contacts_associated_company_properties_f7c_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab1", - "contacts_associated_company_properties_f7c_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab2", - "contacts_associated_company_properties_f7c_hs_analytics_source_timestamp_earliest_value_25a3a52c_ab3", - "contacts_associated_company_properties_fb2_type", - "contacts_associated_company_properties_fb2_type_ab1", - "contacts_associated_company_properties_fb2_type_ab2", - "contacts_associated_company_properties_fb2_type_ab3", - "contacts_associated_company_properties_fc9_notes_last_updated", - "contacts_associated_company_properties_fc9_notes_last_updated_ab1", - "contacts_associated_company_properties_fc9_notes_last_updated_ab2", - "contacts_associated_company_properties_fc9_notes_last_updated_ab3", - "contacts_b1e_associated_company", - "contacts_b1e_associated_company_ab1", - "contacts_b1e_associated_company_ab2", - "contacts_b1e_associated_company_ab3", - "contacts_b3f_property_hs_document_last_revisited", - "contacts_b3f_property_hs_document_last_revisited_ab1", - "contacts_b3f_property_hs_document_last_revisited_ab2", - "contacts_b3f_property_hs_document_last_revisited_ab3", - "contacts_b44_property_hs_analytics_last_referrer", - "contacts_b44_property_hs_analytics_last_referrer_ab1", - "contacts_b44_property_hs_analytics_last_referrer_ab2", - "contacts_b44_property_hs_analytics_last_referrer_ab3", - "contacts_b51_property_hs_count_is_worked", - "contacts_b51_property_hs_count_is_worked_ab1", - "contacts_b51_property_hs_count_is_worked_ab2", - "contacts_b51_property_hs_count_is_worked_ab3", - "contacts_b64_property_hs_email_is_ineligible", - "contacts_b64_property_hs_email_is_ineligible_ab1", - "contacts_b64_property_hs_email_is_ineligible_ab2", - "contacts_b64_property_hs_email_is_ineligible_ab3", - "contacts_b95_property_hs_lifecyclestage_customer_date", - "contacts_b95_property_hs_lifecyclestage_customer_date_ab1", - "contacts_b95_property_hs_lifecyclestage_customer_date_ab2", - "contacts_b95_property_hs_lifecyclestage_customer_date_ab3", - "contacts_b9b_property_relationship_status", - "contacts_b9b_property_relationship_status_ab1", - "contacts_b9b_property_relationship_status_ab2", - "contacts_b9b_property_relationship_status_ab3", - "contacts_ba6_property_state", - "contacts_ba6_property_state_ab1", - "contacts_ba6_property_state_ab2", - "contacts_ba6_property_state_ab3", - "contacts_bbd_property_hs_calculated_mobile_number", - "contacts_bbd_property_hs_calculated_mobile_number_ab1", - "contacts_bbd_property_hs_calculated_mobile_number_ab2", - "contacts_bbd_property_hs_calculated_mobile_number_ab3", - "contacts_bd7_property_hs_searchable_calculated_international_mobile_number", - "contacts_bd7_property_hs_searchable_calculated_international_mobile_number_ab1", - "contacts_bd7_property_hs_searchable_calculated_international_mobile_number_ab2", - "contacts_bd7_property_hs_searchable_calculated_international_mobile_number_ab3", - "contacts_c07_property_hs_email_customer_quarantined_reason", - "contacts_c07_property_hs_email_customer_quarantined_reason_ab1", - "contacts_c07_property_hs_email_customer_quarantined_reason_ab2", - "contacts_c07_property_hs_email_customer_quarantined_reason_ab3", - "contacts_c20_property_hs_updated_by_user_id", - "contacts_c20_property_hs_updated_by_user_id_ab1", - "contacts_c20_property_hs_updated_by_user_id_ab2", - "contacts_c20_property_hs_updated_by_user_id_ab3", - "contacts_c35_property_job_function", - "contacts_c35_property_job_function_ab1", - "contacts_c35_property_job_function_ab2", - "contacts_c35_property_job_function_ab3", - "contacts_c44_property_hs_searchable_calculated_mobile_number", - "contacts_c44_property_hs_searchable_calculated_mobile_number_ab1", - "contacts_c44_property_hs_searchable_calculated_mobile_number_ab2", - "contacts_c44_property_hs_searchable_calculated_mobile_number_ab3", - "contacts_c4b_property_hubspot_team_id", - "contacts_c4b_property_hubspot_team_id_ab1", - "contacts_c4b_property_hubspot_team_id_ab2", - "contacts_c4b_property_hubspot_team_id_ab3", - "contacts_c7a_property_hs_lifecyclestage_salesqualifiedlead_date", - "contacts_c7a_property_hs_lifecyclestage_salesqualifiedlead_date_ab1", - "contacts_c7a_property_hs_lifecyclestage_salesqualifiedlead_date_ab2", - "contacts_c7a_property_hs_lifecyclestage_salesqualifiedlead_date_ab3", - "contacts_c86_property_hs_sa_first_engagement_descr", - "contacts_c86_property_hs_sa_first_engagement_descr_ab1", - "contacts_c86_property_hs_sa_first_engagement_descr_ab2", - "contacts_c86_property_hs_sa_first_engagement_descr_ab3", - "contacts_cae_property_hs_lifecyclestage_other_date", - "contacts_cae_property_hs_lifecyclestage_other_date_ab1", - "contacts_cae_property_hs_lifecyclestage_other_date_ab2", - "contacts_cae_property_hs_lifecyclestage_other_date_ab3", - "contacts_cb8_property_ip_zipcode", - "contacts_cb8_property_ip_zipcode_ab1", - "contacts_cb8_property_ip_zipcode_ab2", - "contacts_cb8_property_ip_zipcode_ab3", - "contacts_cc5_property_hs_conversations_visitor_email", - "contacts_cc5_property_hs_conversations_visitor_email_ab1", - "contacts_cc5_property_hs_conversations_visitor_email_ab2", - "contacts_cc5_property_hs_conversations_visitor_email_ab3", - "contacts_cd3_property_hs_lifecyclestage_marketingqualifiedlead_date", - "contacts_cd3_property_hs_lifecyclestage_marketingqualifiedlead_date_ab1", - "contacts_cd3_property_hs_lifecyclestage_marketingqualifiedlead_date_ab2", - "contacts_cd3_property_hs_lifecyclestage_marketingqualifiedlead_date_ab3", - "contacts_cf0_property_phone", - "contacts_cf0_property_phone_ab1", - "contacts_cf0_property_phone_ab2", - "contacts_cf0_property_phone_ab3", - "contacts_d19_property_hs_content_membership_registered_at", - "contacts_d19_property_hs_content_membership_registered_at_ab1", - "contacts_d19_property_hs_content_membership_registered_at_ab2", - "contacts_d19_property_hs_content_membership_registered_at_ab3", - "contacts_d3d_property_hs_searchable_calculated_international_phone_number", - "contacts_d3d_property_hs_searchable_calculated_international_phone_number_ab1", - "contacts_d3d_property_hs_searchable_calculated_international_phone_number_ab2", - "contacts_d3d_property_hs_searchable_calculated_international_phone_number_ab3", - "contacts_d49_property_numemployees", - "contacts_d49_property_numemployees_ab1", - "contacts_d49_property_numemployees_ab2", - "contacts_d49_property_numemployees_ab3", - "contacts_dc5_property_ip_country", - "contacts_dc5_property_ip_country_ab1", - "contacts_dc5_property_ip_country_ab2", - "contacts_dc5_property_ip_country_ab3", - "contacts_dd2_property_hs_count_is_unworked", - "contacts_dd2_property_hs_count_is_unworked_ab1", - "contacts_dd2_property_hs_count_is_unworked_ab2", - "contacts_dd2_property_hs_count_is_unworked_ab3", - "contacts_ddf_property_engagements_last_meeting_booked_source", - "contacts_ddf_property_engagements_last_meeting_booked_source_ab1", - "contacts_ddf_property_engagements_last_meeting_booked_source_ab2", - "contacts_ddf_property_engagements_last_meeting_booked_source_ab3", - "contacts_def_property_jobtitle", - "contacts_def_property_jobtitle_ab1", - "contacts_def_property_jobtitle_ab2", - "contacts_def_property_jobtitle_ab3", - "contacts_df1_property_hs_createdate", - "contacts_df1_property_hs_createdate_ab1", - "contacts_df1_property_hs_createdate_ab2", - "contacts_df1_property_hs_createdate_ab3", - "contacts_e1b_property_engagements_last_meeting_booked_medium", - "contacts_e1b_property_engagements_last_meeting_booked_medium_ab1", - "contacts_e1b_property_engagements_last_meeting_booked_medium_ab2", - "contacts_e1b_property_engagements_last_meeting_booked_medium_ab3", - "contacts_e23_property_degree", - "contacts_e23_property_degree_ab1", - "contacts_e23_property_degree_ab2", - "contacts_e23_property_degree_ab3", - "contacts_e37_property_lifecyclestage", - "contacts_e37_property_lifecyclestage_ab1", - "contacts_e37_property_lifecyclestage_ab2", - "contacts_e37_property_lifecyclestage_ab3", - "contacts_e5f_property_createdate", - "contacts_e5f_property_createdate_ab1", - "contacts_e5f_property_createdate_ab2", - "contacts_e5f_property_createdate_ab3", - "contacts_e81_property_recent_conversion_event_name", - "contacts_e81_property_recent_conversion_event_name_ab1", - "contacts_e81_property_recent_conversion_event_name_ab2", - "contacts_e81_property_recent_conversion_event_name_ab3", - "contacts_ea2_property_hs_calculated_phone_number_area_code", - "contacts_ea2_property_hs_calculated_phone_number_area_code_ab1", - "contacts_ea2_property_hs_calculated_phone_number_area_code_ab2", - "contacts_ea2_property_hs_calculated_phone_number_area_code_ab3", - "contacts_eab_property_hs_sa_first_engagement_date", - "contacts_eab_property_hs_sa_first_engagement_date_ab1", - "contacts_eab_property_hs_sa_first_engagement_date_ab2", - "contacts_eab_property_hs_sa_first_engagement_date_ab3", - "contacts_eb1_property_hs_google_click_id", - "contacts_eb1_property_hs_google_click_id_ab1", - "contacts_eb1_property_hs_google_click_id_ab2", - "contacts_eb1_property_hs_google_click_id_ab3", - "contacts_ec0_property_hs_analytics_last_url", - "contacts_ec0_property_hs_analytics_last_url_ab1", - "contacts_ec0_property_hs_analytics_last_url_ab2", - "contacts_ec0_property_hs_analytics_last_url_ab3", - "contacts_ed3_property_date_of_birth", - "contacts_ed3_property_date_of_birth_ab1", - "contacts_ed3_property_date_of_birth_ab2", - "contacts_ed3_property_date_of_birth_ab3", - "contacts_eda_property_hs_email_hard_bounce_reason_enum", - "contacts_eda_property_hs_email_hard_bounce_reason_enum_ab1", - "contacts_eda_property_hs_email_hard_bounce_reason_enum_ab2", - "contacts_eda_property_hs_email_hard_bounce_reason_enum_ab3", - "contacts_eec_property_hs_calculated_phone_number_region_code", - "contacts_eec_property_hs_calculated_phone_number_region_code_ab1", - "contacts_eec_property_hs_calculated_phone_number_region_code_ab2", - "contacts_eec_property_hs_calculated_phone_number_region_code_ab3", - "contacts_f0b_property_hs_first_engagement_object_id", - "contacts_f0b_property_hs_first_engagement_object_id_ab1", - "contacts_f0b_property_hs_first_engagement_object_id_ab2", - "contacts_f0b_property_hs_first_engagement_object_id_ab3", - "contacts_f27_property_hs_analytics_source", - "contacts_f27_property_hs_analytics_source_ab1", - "contacts_f27_property_hs_analytics_source_ab2", - "contacts_f27_property_hs_analytics_source_ab3", - "contacts_fa8_property_graduation_date", - "contacts_fa8_property_graduation_date_ab1", - "contacts_fa8_property_graduation_date_ab2", - "contacts_fa8_property_graduation_date_ab3", - "contacts_fa8_property_ip_latlon", - "contacts_fa8_property_ip_latlon_ab1", - "contacts_fa8_property_ip_latlon_ab2", - "contacts_fa8_property_ip_latlon_ab3", - "contacts_fab_property_hs_persona", - "contacts_fab_property_hs_persona_ab1", - "contacts_fab_property_hs_persona_ab2", - "contacts_fab_property_hs_persona_ab3", - "contacts_fc3_property_hs_lifecyclestage_opportunity_date", - "contacts_fc3_property_hs_lifecyclestage_opportunity_date_ab1", - "contacts_fc3_property_hs_lifecyclestage_opportunity_date_ab2", - "contacts_fc3_property_hs_lifecyclestage_opportunity_date_ab3", - "contacts_fd5_property_hs_email_quarantined", - "contacts_fd5_property_hs_email_quarantined_ab1", - "contacts_fd5_property_hs_email_quarantined_ab2", - "contacts_fd5_property_hs_email_quarantined_ab3", - "contacts_fdc_property_hubspotscore", - "contacts_fdc_property_hubspotscore_ab1", - "contacts_fdc_property_hubspotscore_ab2", - "contacts_fdc_property_hubspotscore_ab3", - "contacts_fea_identity_profiles", - "contacts_fea_identity_profiles_ab1", - "contacts_fea_identity_profiles_ab2", - "contacts_fea_identity_profiles_ab3", - "contacts_ff7_property_hs_analytics_first_url", - "contacts_ff7_property_hs_analytics_first_url_ab1", - "contacts_ff7_property_hs_analytics_first_url_ab2", - "contacts_ff7_property_hs_analytics_first_url_ab3", - "contacts_identity_profiles_767_identities", - "contacts_identity_profiles_767_identities_ab1", - "contacts_identity_profiles_767_identities_ab2", - "contacts_identity_profiles_767_identities_ab3", - "contacts_merge_audits_361_merged_from_email", - "contacts_merge_audits_361_merged_from_email_ab1", - "contacts_merge_audits_361_merged_from_email_ab2", - "contacts_merge_audits_361_merged_from_email_ab3", - "contacts_merge_audits_3c4_merged_to_email", - "contacts_merge_audits_3c4_merged_to_email_ab1", - "contacts_merge_audits_3c4_merged_to_email_ab2", - "contacts_merge_audits_3c4_merged_to_email_ab3", - "contacts_properties_01c_seniority", - "contacts_properties_01c_seniority_ab1", - "contacts_properties_01c_seniority_ab2", - "contacts_properties_01c_seniority_ab3", - "contacts_properties_01e_company_size", - "contacts_properties_01e_company_size_ab1", - "contacts_properties_01e_company_size_ab2", - "contacts_properties_01e_company_size_ab3", - "contacts_properties_02e_hs_last_sales_activity_timestamp", - "contacts_properties_02e_hs_last_sales_activity_timestamp_ab1", - "contacts_properties_02e_hs_last_sales_activity_timestamp_ab2", - "contacts_properties_02e_hs_last_sales_activity_timestamp_ab3", - "contacts_properties_03a_hs_analytics_revenue", - "contacts_properties_03a_hs_analytics_revenue_ab1", - "contacts_properties_03a_hs_analytics_revenue_ab2", - "contacts_properties_03a_hs_analytics_revenue_ab3", - "contacts_properties_03c_hs_email_sends_since_last_engagement", - "contacts_properties_03c_hs_email_sends_since_last_engagement_ab1", - "contacts_properties_03c_hs_email_sends_since_last_engagement_ab2", - "contacts_properties_03c_hs_email_sends_since_last_engagement_ab3", - "contacts_properties_046_hs_lifecyclestage_other_date", - "contacts_properties_046_hs_lifecyclestage_other_date_ab1", - "contacts_properties_046_hs_lifecyclestage_other_date_ab2", - "contacts_properties_046_hs_lifecyclestage_other_date_ab3", - "contacts_properties_04b_engagements_last_meeting_booked_campaign", - "contacts_properties_04b_engagements_last_meeting_booked_campaign_ab1", - "contacts_properties_04b_engagements_last_meeting_booked_campaign_ab2", - "contacts_properties_04b_engagements_last_meeting_booked_campaign_ab3", - "contacts_properties_063_total_revenue", - "contacts_properties_063_total_revenue_ab1", - "contacts_properties_063_total_revenue_ab2", - "contacts_properties_063_total_revenue_ab3", - "contacts_properties_067_days_to_close", - "contacts_properties_067_days_to_close_ab1", - "contacts_properties_067_days_to_close_ab2", - "contacts_properties_067_days_to_close_ab3", - "contacts_properties_0a7_hs_sa_first_engagement_date", - "contacts_properties_0a7_hs_sa_first_engagement_date_ab1", - "contacts_properties_0a7_hs_sa_first_engagement_date_ab2", - "contacts_properties_0a7_hs_sa_first_engagement_date_ab3", - "contacts_properties_0d3_hs_lifecyclestage_lead_date", - "contacts_properties_0d3_hs_lifecyclestage_lead_date_ab1", - "contacts_properties_0d3_hs_lifecyclestage_lead_date_ab2", - "contacts_properties_0d3_hs_lifecyclestage_lead_date_ab3", - "contacts_properties_0e1_hs_analytics_last_referrer", - "contacts_properties_0e1_hs_analytics_last_referrer_ab1", - "contacts_properties_0e1_hs_analytics_last_referrer_ab2", - "contacts_properties_0e1_hs_analytics_last_referrer_ab3", - "contacts_properties_0ee_num_unique_conversion_events", - "contacts_properties_0ee_num_unique_conversion_events_ab1", - "contacts_properties_0ee_num_unique_conversion_events_ab2", - "contacts_properties_0ee_num_unique_conversion_events_ab3", - "contacts_properties_0fc_ip_state", - "contacts_properties_0fc_ip_state_ab1", - "contacts_properties_0fc_ip_state_ab2", - "contacts_properties_0fc_ip_state_ab3", - "contacts_properties_113_hs_email_quarantined", - "contacts_properties_113_hs_email_quarantined_ab1", - "contacts_properties_113_hs_email_quarantined_ab2", - "contacts_properties_113_hs_email_quarantined_ab3", - "contacts_properties_11b_hs_content_membership_email_confirmed", - "contacts_properties_11b_hs_content_membership_email_confirmed_ab1", - "contacts_properties_11b_hs_content_membership_email_confirmed_ab2", - "contacts_properties_11b_hs_content_membership_email_confirmed_ab3", - "contacts_properties_131_hs_analytics_average_page_views", - "contacts_properties_131_hs_analytics_average_page_views_ab1", - "contacts_properties_131_hs_analytics_average_page_views_ab2", - "contacts_properties_131_hs_analytics_average_page_views_ab3", - "contacts_properties_13c_hs_searchable_calculated_international_mobile_number", - "contacts_properties_13c_hs_searchable_calculated_international_mobile_number_ab1", - "contacts_properties_13c_hs_searchable_calculated_international_mobile_number_ab2", - "contacts_properties_13c_hs_searchable_calculated_international_mobile_number_ab3", - "contacts_properties_147_associatedcompanyid", - "contacts_properties_147_associatedcompanyid_ab1", - "contacts_properties_147_associatedcompanyid_ab2", - "contacts_properties_147_associatedcompanyid_ab3", - "contacts_properties_14c_firstname", - "contacts_properties_14c_firstname_ab1", - "contacts_properties_14c_firstname_ab2", - "contacts_properties_14c_firstname_ab3", - "contacts_properties_185_notes_last_updated", - "contacts_properties_185_notes_last_updated_ab1", - "contacts_properties_185_notes_last_updated_ab2", - "contacts_properties_185_notes_last_updated_ab3", - "contacts_properties_188_recent_conversion_event_name", - "contacts_properties_188_recent_conversion_event_name_ab1", - "contacts_properties_188_recent_conversion_event_name_ab2", - "contacts_properties_188_recent_conversion_event_name_ab3", - "contacts_properties_18c_hs_email_last_send_date", - "contacts_properties_18c_hs_email_last_send_date_ab1", - "contacts_properties_18c_hs_email_last_send_date_ab2", - "contacts_properties_18c_hs_email_last_send_date_ab3", - "contacts_properties_192_hs_analytics_last_url", - "contacts_properties_192_hs_analytics_last_url_ab1", - "contacts_properties_192_hs_analytics_last_url_ab2", - "contacts_properties_192_hs_analytics_last_url_ab3", - "contacts_properties_193_hs_lifecyclestage_evangelist_date", - "contacts_properties_193_hs_lifecyclestage_evangelist_date_ab1", - "contacts_properties_193_hs_lifecyclestage_evangelist_date_ab2", - "contacts_properties_193_hs_lifecyclestage_evangelist_date_ab3", - "contacts_properties_1ae_hs_email_quarantined_reason", - "contacts_properties_1ae_hs_email_quarantined_reason_ab1", - "contacts_properties_1ae_hs_email_quarantined_reason_ab2", - "contacts_properties_1ae_hs_email_quarantined_reason_ab3", - "contacts_properties_1b9_mobilephone", - "contacts_properties_1b9_mobilephone_ab1", - "contacts_properties_1b9_mobilephone_ab2", - "contacts_properties_1b9_mobilephone_ab3", - "contacts_properties_1d8_surveymonkeyeventlastupdated", - "contacts_properties_1d8_surveymonkeyeventlastupdated_ab1", - "contacts_properties_1d8_surveymonkeyeventlastupdated_ab2", - "contacts_properties_1d8_surveymonkeyeventlastupdated_ab3", - "contacts_properties_1f3_hs_content_membership_registration_email_sent_at", - "contacts_properties_1f3_hs_content_membership_registration_email_sent_at_ab1", - "contacts_properties_1f3_hs_content_membership_registration_email_sent_at_ab2", - "contacts_properties_1f3_hs_content_membership_registration_email_sent_at_ab3", - "contacts_properties_232_phone", - "contacts_properties_232_phone_ab1", - "contacts_properties_232_phone_ab2", - "contacts_properties_232_phone_ab3", - "contacts_properties_242_hs_email_first_click_date", - "contacts_properties_242_hs_email_first_click_date_ab1", - "contacts_properties_242_hs_email_first_click_date_ab2", - "contacts_properties_242_hs_email_first_click_date_ab3", - "contacts_properties_265_hs_testrollback", - "contacts_properties_265_hs_testrollback_ab1", - "contacts_properties_265_hs_testrollback_ab2", - "contacts_properties_265_hs_testrollback_ab3", - "contacts_properties_27a_marital_status", - "contacts_properties_27a_marital_status_ab1", - "contacts_properties_27a_marital_status_ab2", - "contacts_properties_27a_marital_status_ab3", - "contacts_properties_283_hs_all_owner_ids", - "contacts_properties_283_hs_all_owner_ids_ab1", - "contacts_properties_283_hs_all_owner_ids_ab2", - "contacts_properties_283_hs_all_owner_ids_ab3", - "contacts_properties_283_hubspotscore", - "contacts_properties_283_hubspotscore_ab1", - "contacts_properties_283_hubspotscore_ab2", - "contacts_properties_283_hubspotscore_ab3", - "contacts_properties_2c2_salutation", - "contacts_properties_2c2_salutation_ab1", - "contacts_properties_2c2_salutation_ab2", - "contacts_properties_2c2_salutation_ab3", - "contacts_properties_2ce_date_of_birth", - "contacts_properties_2ce_date_of_birth_ab1", - "contacts_properties_2ce_date_of_birth_ab2", - "contacts_properties_2ce_date_of_birth_ab3", - "contacts_properties_2d1_createdate", - "contacts_properties_2d1_createdate_ab1", - "contacts_properties_2d1_createdate_ab2", - "contacts_properties_2d1_createdate_ab3", - "contacts_properties_2d6_hs_email_bounce", - "contacts_properties_2d6_hs_email_bounce_ab1", - "contacts_properties_2d6_hs_email_bounce_ab2", - "contacts_properties_2d6_hs_email_bounce_ab3", - "contacts_properties_2e4_hs_is_contact", - "contacts_properties_2e4_hs_is_contact_ab1", - "contacts_properties_2e4_hs_is_contact_ab2", - "contacts_properties_2e4_hs_is_contact_ab3", - "contacts_properties_2ec_hs_searchable_calculated_international_phone_number", - "contacts_properties_2ec_hs_searchable_calculated_international_phone_number_ab1", - "contacts_properties_2ec_hs_searchable_calculated_international_phone_number_ab2", - "contacts_properties_2ec_hs_searchable_calculated_international_phone_number_ab3", - "contacts_properties_2f8_hs_conversations_visitor_email", - "contacts_properties_2f8_hs_conversations_visitor_email_ab1", - "contacts_properties_2f8_hs_conversations_visitor_email_ab2", - "contacts_properties_2f8_hs_conversations_visitor_email_ab3", - "contacts_properties_337_industry", - "contacts_properties_337_industry_ab1", - "contacts_properties_337_industry_ab2", - "contacts_properties_337_industry_ab3", - "contacts_properties_378_notes_next_activity_date", - "contacts_properties_378_notes_next_activity_date_ab1", - "contacts_properties_378_notes_next_activity_date_ab2", - "contacts_properties_378_notes_next_activity_date_ab3", - "contacts_properties_388_hs_analytics_first_referrer", - "contacts_properties_388_hs_analytics_first_referrer_ab1", - "contacts_properties_388_hs_analytics_first_referrer_ab2", - "contacts_properties_388_hs_analytics_first_referrer_ab3", - "contacts_properties_38e_relationship_status", - "contacts_properties_38e_relationship_status_ab1", - "contacts_properties_38e_relationship_status_ab2", - "contacts_properties_38e_relationship_status_ab3", - "contacts_properties_3a1_hs_analytics_first_timestamp", - "contacts_properties_3a1_hs_analytics_first_timestamp_ab1", - "contacts_properties_3a1_hs_analytics_first_timestamp_ab2", - "contacts_properties_3a1_hs_analytics_first_timestamp_ab3", - "contacts_properties_3e9_hs_document_last_revisited", - "contacts_properties_3e9_hs_document_last_revisited_ab1", - "contacts_properties_3e9_hs_document_last_revisited_ab2", - "contacts_properties_3e9_hs_document_last_revisited_ab3", - "contacts_properties_3ff_work_email", - "contacts_properties_3ff_work_email_ab1", - "contacts_properties_3ff_work_email_ab2", - "contacts_properties_3ff_work_email_ab3", - "contacts_properties_409_associatedcompanylastupdated", - "contacts_properties_409_associatedcompanylastupdated_ab1", - "contacts_properties_409_associatedcompanylastupdated_ab2", - "contacts_properties_409_associatedcompanylastupdated_ab3", - "contacts_properties_411_ip_state_code", - "contacts_properties_411_ip_state_code_ab1", - "contacts_properties_411_ip_state_code_ab2", - "contacts_properties_411_ip_state_code_ab3", - "contacts_properties_429_engagements_last_meeting_booked_medium", - "contacts_properties_429_engagements_last_meeting_booked_medium_ab1", - "contacts_properties_429_engagements_last_meeting_booked_medium_ab2", - "contacts_properties_429_engagements_last_meeting_booked_medium_ab3", - "contacts_properties_42b_hs_email_hard_bounce_reason_enum", - "contacts_properties_42b_hs_email_hard_bounce_reason_enum_ab1", - "contacts_properties_42b_hs_email_hard_bounce_reason_enum_ab2", - "contacts_properties_42b_hs_email_hard_bounce_reason_enum_ab3", - "contacts_properties_42d_hs_object_id", - "contacts_properties_42d_hs_object_id_ab1", - "contacts_properties_42d_hs_object_id_ab2", - "contacts_properties_42d_hs_object_id_ab3", - "contacts_properties_43a_lifecyclestage", - "contacts_properties_43a_lifecyclestage_ab1", - "contacts_properties_43a_lifecyclestage_ab2", - "contacts_properties_43a_lifecyclestage_ab3", - "contacts_properties_454_first_conversion_date", - "contacts_properties_454_first_conversion_date_ab1", - "contacts_properties_454_first_conversion_date_ab2", - "contacts_properties_454_first_conversion_date_ab3", - "contacts_properties_45d_hs_analytics_first_url", - "contacts_properties_45d_hs_analytics_first_url_ab1", - "contacts_properties_45d_hs_analytics_first_url_ab2", - "contacts_properties_45d_hs_analytics_first_url_ab3", - "contacts_properties_467_hs_analytics_last_visit_timestamp", - "contacts_properties_467_hs_analytics_last_visit_timestamp_ab1", - "contacts_properties_467_hs_analytics_last_visit_timestamp_ab2", - "contacts_properties_467_hs_analytics_last_visit_timestamp_ab3", - "contacts_properties_472_hs_time_to_first_engagement", - "contacts_properties_472_hs_time_to_first_engagement_ab1", - "contacts_properties_472_hs_time_to_first_engagement_ab2", - "contacts_properties_472_hs_time_to_first_engagement_ab3", - "contacts_properties_4e6_numemployees", - "contacts_properties_4e6_numemployees_ab1", - "contacts_properties_4e6_numemployees_ab2", - "contacts_properties_4e6_numemployees_ab3", - "contacts_properties_562_hs_email_first_send_date", - "contacts_properties_562_hs_email_first_send_date_ab1", - "contacts_properties_562_hs_email_first_send_date_ab2", - "contacts_properties_562_hs_email_first_send_date_ab3", - "contacts_properties_56f_first_conversion_event_name", - "contacts_properties_56f_first_conversion_event_name_ab1", - "contacts_properties_56f_first_conversion_event_name_ab2", - "contacts_properties_56f_first_conversion_event_name_ab3", - "contacts_properties_58b_hs_google_click_id", - "contacts_properties_58b_hs_google_click_id_ab1", - "contacts_properties_58b_hs_google_click_id_ab2", - "contacts_properties_58b_hs_google_click_id_ab3", - "contacts_properties_59f_hs_lastmodifieddate", - "contacts_properties_59f_hs_lastmodifieddate_ab1", - "contacts_properties_59f_hs_lastmodifieddate_ab2", - "contacts_properties_59f_hs_lastmodifieddate_ab3", - "contacts_properties_5ac_hs_calculated_phone_number", - "contacts_properties_5ac_hs_calculated_phone_number_ab1", - "contacts_properties_5ac_hs_calculated_phone_number_ab2", - "contacts_properties_5ac_hs_calculated_phone_number_ab3", - "contacts_properties_5b2_hs_analytics_last_touch_converting_campaign", - "contacts_properties_5b2_hs_analytics_last_touch_converting_campaign_ab1", - "contacts_properties_5b2_hs_analytics_last_touch_converting_campaign_ab2", - "contacts_properties_5b2_hs_analytics_last_touch_converting_campaign_ab3", - "contacts_properties_5c3_engagements_last_meeting_booked", - "contacts_properties_5c3_engagements_last_meeting_booked_ab1", - "contacts_properties_5c3_engagements_last_meeting_booked_ab2", - "contacts_properties_5c3_engagements_last_meeting_booked_ab3", - "contacts_properties_5cc_city", - "contacts_properties_5cc_city_ab1", - "contacts_properties_5cc_city_ab2", - "contacts_properties_5cc_city_ab3", - "contacts_properties_5ce_notes_last_contacted", - "contacts_properties_5ce_notes_last_contacted_ab1", - "contacts_properties_5ce_notes_last_contacted_ab2", - "contacts_properties_5ce_notes_last_contacted_ab3", - "contacts_properties_5e0_hs_legal_basis", - "contacts_properties_5e0_hs_legal_basis_ab1", - "contacts_properties_5e0_hs_legal_basis_ab2", - "contacts_properties_5e0_hs_legal_basis_ab3", - "contacts_properties_5e2_hs_calculated_phone_number_area_code", - "contacts_properties_5e2_hs_calculated_phone_number_area_code_ab1", - "contacts_properties_5e2_hs_calculated_phone_number_area_code_ab2", - "contacts_properties_5e2_hs_calculated_phone_number_area_code_ab3", - "contacts_properties_5fb_recent_deal_amount", - "contacts_properties_5fb_recent_deal_amount_ab1", - "contacts_properties_5fb_recent_deal_amount_ab2", - "contacts_properties_5fb_recent_deal_amount_ab3", - "contacts_properties_5fd_hs_sales_email_last_replied", - "contacts_properties_5fd_hs_sales_email_last_replied_ab1", - "contacts_properties_5fd_hs_sales_email_last_replied_ab2", - "contacts_properties_5fd_hs_sales_email_last_replied_ab3", - "contacts_properties_60c_hs_created_by_user_id", - "contacts_properties_60c_hs_created_by_user_id_ab1", - "contacts_properties_60c_hs_created_by_user_id_ab2", - "contacts_properties_60c_hs_created_by_user_id_ab3", - "contacts_properties_619_hs_sa_first_engagement_object_type", - "contacts_properties_619_hs_sa_first_engagement_object_type_ab1", - "contacts_properties_619_hs_sa_first_engagement_object_type_ab2", - "contacts_properties_619_hs_sa_first_engagement_object_type_ab3", - "contacts_properties_621_hs_content_membership_status", - "contacts_properties_621_hs_content_membership_status_ab1", - "contacts_properties_621_hs_content_membership_status_ab2", - "contacts_properties_621_hs_content_membership_status_ab3", - "contacts_properties_630_state", - "contacts_properties_630_state_ab1", - "contacts_properties_630_state_ab2", - "contacts_properties_630_state_ab3", - "contacts_properties_632_hs_content_membership_registration_domain_sent_to", - "contacts_properties_632_hs_content_membership_registration_domain_sent_to_ab1", - "contacts_properties_632_hs_content_membership_registration_domain_sent_to_ab2", - "contacts_properties_632_hs_content_membership_registration_domain_sent_to_ab3", - "contacts_properties_653_annualrevenue", - "contacts_properties_653_annualrevenue_ab1", - "contacts_properties_653_annualrevenue_ab2", - "contacts_properties_653_annualrevenue_ab3", - "contacts_properties_716_hs_sa_first_engagement_descr", - "contacts_properties_716_hs_sa_first_engagement_descr_ab1", - "contacts_properties_716_hs_sa_first_engagement_descr_ab2", - "contacts_properties_716_hs_sa_first_engagement_descr_ab3", - "contacts_properties_732_hubspot_owner_assigneddate", - "contacts_properties_732_hubspot_owner_assigneddate_ab1", - "contacts_properties_732_hubspot_owner_assigneddate_ab2", - "contacts_properties_732_hubspot_owner_assigneddate_ab3", - "contacts_properties_737_first_deal_created_date", - "contacts_properties_737_first_deal_created_date_ab1", - "contacts_properties_737_first_deal_created_date_ab2", - "contacts_properties_737_first_deal_created_date_ab3", - "contacts_properties_753_hs_analytics_source_data_1", - "contacts_properties_753_hs_analytics_source_data_1_ab1", - "contacts_properties_753_hs_analytics_source_data_1_ab2", - "contacts_properties_753_hs_analytics_source_data_1_ab3", - "contacts_properties_774_closedate", - "contacts_properties_774_closedate_ab1", - "contacts_properties_774_closedate_ab2", - "contacts_properties_774_closedate_ab3", - "contacts_properties_777_hs_facebook_click_id", - "contacts_properties_777_hs_facebook_click_id_ab1", - "contacts_properties_777_hs_facebook_click_id_ab2", - "contacts_properties_777_hs_facebook_click_id_ab3", - "contacts_properties_77d_lastname", - "contacts_properties_77d_lastname_ab1", - "contacts_properties_77d_lastname_ab2", - "contacts_properties_77d_lastname_ab3", - "contacts_properties_7b1_hs_analytics_num_page_views", - "contacts_properties_7b1_hs_analytics_num_page_views_ab1", - "contacts_properties_7b1_hs_analytics_num_page_views_ab2", - "contacts_properties_7b1_hs_analytics_num_page_views_ab3", - "contacts_properties_7d5_hs_searchable_calculated_mobile_number", - "contacts_properties_7d5_hs_searchable_calculated_mobile_number_ab1", - "contacts_properties_7d5_hs_searchable_calculated_mobile_number_ab2", - "contacts_properties_7d5_hs_searchable_calculated_mobile_number_ab3", - "contacts_properties_800_hubspot_owner_id", - "contacts_properties_800_hubspot_owner_id_ab1", - "contacts_properties_800_hubspot_owner_id_ab2", - "contacts_properties_800_hubspot_owner_id_ab3", - "contacts_properties_803_hs_lifecyclestage_salesqualifiedlead_date", - "contacts_properties_803_hs_lifecyclestage_salesqualifiedlead_date_ab1", - "contacts_properties_803_hs_lifecyclestage_salesqualifiedlead_date_ab2", - "contacts_properties_803_hs_lifecyclestage_salesqualifiedlead_date_ab3", - "contacts_properties_82a_hs_email_last_email_name", - "contacts_properties_82a_hs_email_last_email_name_ab1", - "contacts_properties_82a_hs_email_last_email_name_ab2", - "contacts_properties_82a_hs_email_last_email_name_ab3", - "contacts_properties_83f_hs_all_contact_vids", - "contacts_properties_83f_hs_all_contact_vids_ab1", - "contacts_properties_83f_hs_all_contact_vids_ab2", - "contacts_properties_83f_hs_all_contact_vids_ab3", - "contacts_properties_84e_school", - "contacts_properties_84e_school_ab1", - "contacts_properties_84e_school_ab2", - "contacts_properties_84e_school_ab3", - "contacts_properties_86e_hs_facebook_ad_clicked", - "contacts_properties_86e_hs_facebook_ad_clicked_ab1", - "contacts_properties_86e_hs_facebook_ad_clicked_ab2", - "contacts_properties_86e_hs_facebook_ad_clicked_ab3", - "contacts_properties_886_hs_buying_role", - "contacts_properties_886_hs_buying_role_ab1", - "contacts_properties_886_hs_buying_role_ab2", - "contacts_properties_886_hs_buying_role_ab3", - "contacts_properties_8ec_website", - "contacts_properties_8ec_website_ab1", - "contacts_properties_8ec_website_ab2", - "contacts_properties_8ec_website_ab3", - "contacts_properties_901_hs_analytics_source", - "contacts_properties_901_hs_analytics_source_ab1", - "contacts_properties_901_hs_analytics_source_ab2", - "contacts_properties_901_hs_analytics_source_ab3", - "contacts_properties_90d_hs_email_optout", - "contacts_properties_90d_hs_email_optout_ab1", - "contacts_properties_90d_hs_email_optout_ab2", - "contacts_properties_90d_hs_email_optout_ab3", - "contacts_properties_915_hs_email_first_open_date", - "contacts_properties_915_hs_email_first_open_date_ab1", - "contacts_properties_915_hs_email_first_open_date_ab2", - "contacts_properties_915_hs_email_first_open_date_ab3", - "contacts_properties_91c_gender", - "contacts_properties_91c_gender_ab1", - "contacts_properties_91c_gender_ab2", - "contacts_properties_91c_gender_ab3", - "contacts_properties_927_hs_lead_status", - "contacts_properties_927_hs_lead_status_ab1", - "contacts_properties_927_hs_lead_status_ab2", - "contacts_properties_927_hs_lead_status_ab3", - "contacts_properties_933_hs_sequences_is_enrolled", - "contacts_properties_933_hs_sequences_is_enrolled_ab1", - "contacts_properties_933_hs_sequences_is_enrolled_ab2", - "contacts_properties_933_hs_sequences_is_enrolled_ab3", - "contacts_properties_943_graduation_date", - "contacts_properties_943_graduation_date_ab1", - "contacts_properties_943_graduation_date_ab2", - "contacts_properties_943_graduation_date_ab3", - "contacts_properties_94d_company", - "contacts_properties_94d_company_ab1", - "contacts_properties_94d_company_ab2", - "contacts_properties_94d_company_ab3", - "contacts_properties_96d_hs_calculated_mobile_number", - "contacts_properties_96d_hs_calculated_mobile_number_ab1", - "contacts_properties_96d_hs_calculated_mobile_number_ab2", - "contacts_properties_96d_hs_calculated_mobile_number_ab3", - "contacts_properties_97b_hs_analytics_source_data_2", - "contacts_properties_97b_hs_analytics_source_data_2_ab1", - "contacts_properties_97b_hs_analytics_source_data_2_ab2", - "contacts_properties_97b_hs_analytics_source_data_2_ab3", - "contacts_properties_988_hs_email_bad_address", - "contacts_properties_988_hs_email_bad_address_ab1", - "contacts_properties_988_hs_email_bad_address_ab2", - "contacts_properties_988_hs_email_bad_address_ab3", - "contacts_properties_999_hs_lifecyclestage_marketingqualifiedlead_date", - "contacts_properties_999_hs_lifecyclestage_marketingqualifiedlead_date_ab1", - "contacts_properties_999_hs_lifecyclestage_marketingqualifiedlead_date_ab2", - "contacts_properties_999_hs_lifecyclestage_marketingqualifiedlead_date_ab3", - "contacts_properties_999_hs_lifecyclestage_opportunity_date", - "contacts_properties_999_hs_lifecyclestage_opportunity_date_ab1", - "contacts_properties_999_hs_lifecyclestage_opportunity_date_ab2", - "contacts_properties_999_hs_lifecyclestage_opportunity_date_ab3", - "contacts_properties_9a3_hs_sales_email_last_clicked", - "contacts_properties_9a3_hs_sales_email_last_clicked_ab1", - "contacts_properties_9a3_hs_sales_email_last_clicked_ab2", - "contacts_properties_9a3_hs_sales_email_last_clicked_ab3", - "contacts_properties_9a4_hs_calculated_phone_number_country_code", - "contacts_properties_9a4_hs_calculated_phone_number_country_code_ab1", - "contacts_properties_9a4_hs_calculated_phone_number_country_code_ab2", - "contacts_properties_9a4_hs_calculated_phone_number_country_code_ab3", - "contacts_properties_9a4_hs_language", - "contacts_properties_9a4_hs_language_ab1", - "contacts_properties_9a4_hs_language_ab2", - "contacts_properties_9a4_hs_language_ab3", - "contacts_properties_9a4_military_status", - "contacts_properties_9a4_military_status_ab1", - "contacts_properties_9a4_military_status_ab2", - "contacts_properties_9a4_military_status_ab3", - "contacts_properties_9b2_hs_first_engagement_object_id", - "contacts_properties_9b2_hs_first_engagement_object_id_ab1", - "contacts_properties_9b2_hs_first_engagement_object_id_ab2", - "contacts_properties_9b2_hs_first_engagement_object_id_ab3", - "contacts_properties_9b5_num_contacted_notes", - "contacts_properties_9b5_num_contacted_notes_ab1", - "contacts_properties_9b5_num_contacted_notes_ab2", - "contacts_properties_9b5_num_contacted_notes_ab3", - "contacts_properties_9c5_hs_additional_emails", - "contacts_properties_9c5_hs_additional_emails_ab1", - "contacts_properties_9c5_hs_additional_emails_ab2", - "contacts_properties_9c5_hs_additional_emails_ab3", - "contacts_properties_9e2_ip_city", - "contacts_properties_9e2_ip_city_ab1", - "contacts_properties_9e2_ip_city_ab2", - "contacts_properties_9e2_ip_city_ab3", - "contacts_properties_9ea_num_notes", - "contacts_properties_9ea_num_notes_ab1", - "contacts_properties_9ea_num_notes_ab2", - "contacts_properties_9ea_num_notes_ab3", - "contacts_properties_9fb_hs_lifecyclestage_customer_date", - "contacts_properties_9fb_hs_lifecyclestage_customer_date_ab1", - "contacts_properties_9fb_hs_lifecyclestage_customer_date_ab2", - "contacts_properties_9fb_hs_lifecyclestage_customer_date_ab3", - "contacts_properties_9fc_job_function", - "contacts_properties_9fc_job_function_ab1", - "contacts_properties_9fc_job_function_ab2", - "contacts_properties_9fc_job_function_ab3", - "contacts_properties_a22_hs_is_unworked", - "contacts_properties_a22_hs_is_unworked_ab1", - "contacts_properties_a22_hs_is_unworked_ab2", - "contacts_properties_a22_hs_is_unworked_ab3", - "contacts_properties_a4e_recent_conversion_date", - "contacts_properties_a4e_recent_conversion_date_ab1", - "contacts_properties_a4e_recent_conversion_date_ab2", - "contacts_properties_a4e_recent_conversion_date_ab3", - "contacts_properties_a5b_hs_email_domain", - "contacts_properties_a5b_hs_email_domain_ab1", - "contacts_properties_a5b_hs_email_domain_ab2", - "contacts_properties_a5b_hs_email_domain_ab3", - "contacts_properties_a62_field_of_study", - "contacts_properties_a62_field_of_study_ab1", - "contacts_properties_a62_field_of_study_ab2", - "contacts_properties_a62_field_of_study_ab3", - "contacts_properties_a62_num_associated_deals", - "contacts_properties_a62_num_associated_deals_ab1", - "contacts_properties_a62_num_associated_deals_ab2", - "contacts_properties_a62_num_associated_deals_ab3", - "contacts_properties_a76_hs_emailconfirmationstatus", - "contacts_properties_a76_hs_emailconfirmationstatus_ab1", - "contacts_properties_a76_hs_emailconfirmationstatus_ab2", - "contacts_properties_a76_hs_emailconfirmationstatus_ab3", - "contacts_properties_a7d_hs_user_ids_of_all_owners", - "contacts_properties_a7d_hs_user_ids_of_all_owners_ab1", - "contacts_properties_a7d_hs_user_ids_of_all_owners_ab2", - "contacts_properties_a7d_hs_user_ids_of_all_owners_ab3", - "contacts_properties_a8a_hs_avatar_filemanager_key", - "contacts_properties_a8a_hs_avatar_filemanager_key_ab1", - "contacts_properties_a8a_hs_avatar_filemanager_key_ab2", - "contacts_properties_a8a_hs_avatar_filemanager_key_ab3", - "contacts_properties_aa1_ip_country_code", - "contacts_properties_aa1_ip_country_code_ab1", - "contacts_properties_aa1_ip_country_code_ab2", - "contacts_properties_aa1_ip_country_code_ab3", - "contacts_properties_ad3_hs_merged_object_ids", - "contacts_properties_ad3_hs_merged_object_ids_ab1", - "contacts_properties_ad3_hs_merged_object_ids_ab2", - "contacts_properties_ad3_hs_merged_object_ids_ab3", - "contacts_properties_aed_webinareventlastupdated", - "contacts_properties_aed_webinareventlastupdated_ab1", - "contacts_properties_aed_webinareventlastupdated_ab2", - "contacts_properties_aed_webinareventlastupdated_ab3", - "contacts_properties_af0_hs_calculated_phone_number_region_code", - "contacts_properties_af0_hs_calculated_phone_number_region_code_ab1", - "contacts_properties_af0_hs_calculated_phone_number_region_code_ab2", - "contacts_properties_af0_hs_calculated_phone_number_region_code_ab3", - "contacts_properties_b08_message", - "contacts_properties_b08_message_ab1", - "contacts_properties_b08_message_ab2", - "contacts_properties_b08_message_ab3", - "contacts_properties_b36_engagements_last_meeting_booked_source", - "contacts_properties_b36_engagements_last_meeting_booked_source_ab1", - "contacts_properties_b36_engagements_last_meeting_booked_source_ab2", - "contacts_properties_b36_engagements_last_meeting_booked_source_ab3", - "contacts_properties_b36_hs_email_hard_bounce_reason", - "contacts_properties_b36_hs_email_hard_bounce_reason_ab1", - "contacts_properties_b36_hs_email_hard_bounce_reason_ab2", - "contacts_properties_b36_hs_email_hard_bounce_reason_ab3", - "contacts_properties_b37_hs_all_accessible_team_ids", - "contacts_properties_b37_hs_all_accessible_team_ids_ab1", - "contacts_properties_b37_hs_all_accessible_team_ids_ab2", - "contacts_properties_b37_hs_all_accessible_team_ids_ab3", - "contacts_properties_b59_hs_ip_timezone", - "contacts_properties_b59_hs_ip_timezone_ab1", - "contacts_properties_b59_hs_ip_timezone_ab2", - "contacts_properties_b59_hs_ip_timezone_ab3", - "contacts_properties_ba9_hs_content_membership_notes", - "contacts_properties_ba9_hs_content_membership_notes_ab1", - "contacts_properties_ba9_hs_content_membership_notes_ab2", - "contacts_properties_ba9_hs_content_membership_notes_ab3", - "contacts_properties_bbb_hs_analytics_first_visit_timestamp", - "contacts_properties_bbb_hs_analytics_first_visit_timestamp_ab1", - "contacts_properties_bbb_hs_analytics_first_visit_timestamp_ab2", - "contacts_properties_bbb_hs_analytics_first_visit_timestamp_ab3", - "contacts_properties_c11_jobtitle", - "contacts_properties_c11_jobtitle_ab1", - "contacts_properties_c11_jobtitle_ab2", - "contacts_properties_c11_jobtitle_ab3", - "contacts_properties_c2b_hs_email_last_open_date", - "contacts_properties_c2b_hs_email_last_open_date_ab1", - "contacts_properties_c2b_hs_email_last_open_date_ab2", - "contacts_properties_c2b_hs_email_last_open_date_ab3", - "contacts_properties_c2b_hs_last_sales_activity_date", - "contacts_properties_c2b_hs_last_sales_activity_date_ab1", - "contacts_properties_c2b_hs_last_sales_activity_date_ab2", - "contacts_properties_c2b_hs_last_sales_activity_date_ab3", - "contacts_properties_c3e_hs_email_customer_quarantined_reason", - "contacts_properties_c3e_hs_email_customer_quarantined_reason_ab1", - "contacts_properties_c3e_hs_email_customer_quarantined_reason_ab2", - "contacts_properties_c3e_hs_email_customer_quarantined_reason_ab3", - "contacts_properties_c5a_hs_calculated_form_submissions", - "contacts_properties_c5a_hs_calculated_form_submissions_ab1", - "contacts_properties_c5a_hs_calculated_form_submissions_ab2", - "contacts_properties_c5a_hs_calculated_form_submissions_ab3", - "contacts_properties_c8f_hs_email_optout_10798197", - "contacts_properties_c8f_hs_email_optout_10798197_ab1", - "contacts_properties_c8f_hs_email_optout_10798197_ab2", - "contacts_properties_c8f_hs_email_optout_10798197_ab3", - "contacts_properties_c97_hs_email_open", - "contacts_properties_c97_hs_email_open_ab1", - "contacts_properties_c97_hs_email_open_ab2", - "contacts_properties_c97_hs_email_open_ab3", - "contacts_properties_caf_hs_analytics_last_timestamp", - "contacts_properties_caf_hs_analytics_last_timestamp_ab1", - "contacts_properties_caf_hs_analytics_last_timestamp_ab2", - "contacts_properties_caf_hs_analytics_last_timestamp_ab3", - "contacts_properties_caf_hs_email_click", - "contacts_properties_caf_hs_email_click_ab1", - "contacts_properties_caf_hs_email_click_ab2", - "contacts_properties_caf_hs_email_click_ab3", - "contacts_properties_cb6_hs_updated_by_user_id", - "contacts_properties_cb6_hs_updated_by_user_id_ab1", - "contacts_properties_cb6_hs_updated_by_user_id_ab2", - "contacts_properties_cb6_hs_updated_by_user_id_ab3", - "contacts_properties_ccb_hs_testpurge", - "contacts_properties_ccb_hs_testpurge_ab1", - "contacts_properties_ccb_hs_testpurge_ab2", - "contacts_properties_ccb_hs_testpurge_ab3", - "contacts_properties_cd4_hs_latest_meeting_activity", - "contacts_properties_cd4_hs_latest_meeting_activity_ab1", - "contacts_properties_cd4_hs_latest_meeting_activity_ab2", - "contacts_properties_cd4_hs_latest_meeting_activity_ab3", - "contacts_properties_cde_hs_analytics_num_event_completions", - "contacts_properties_cde_hs_analytics_num_event_completions_ab1", - "contacts_properties_cde_hs_analytics_num_event_completions_ab2", - "contacts_properties_cde_hs_analytics_num_event_completions_ab3", - "contacts_properties_d24_hs_createdate", - "contacts_properties_d24_hs_createdate_ab1", - "contacts_properties_d24_hs_createdate_ab2", - "contacts_properties_d24_hs_createdate_ab3", - "contacts_properties_d29_fax", - "contacts_properties_d29_fax_ab1", - "contacts_properties_d29_fax_ab2", - "contacts_properties_d29_fax_ab3", - "contacts_properties_d32_hs_analytics_first_touch_converting_campaign", - "contacts_properties_d32_hs_analytics_first_touch_converting_campaign_ab1", - "contacts_properties_d32_hs_analytics_first_touch_converting_campaign_ab2", - "contacts_properties_d32_hs_analytics_first_touch_converting_campaign_ab3", - "contacts_properties_d37_hubspot_team_id", - "contacts_properties_d37_hubspot_team_id_ab1", - "contacts_properties_d37_hubspot_team_id_ab2", - "contacts_properties_d37_hubspot_team_id_ab3", - "contacts_properties_d40_zip", - "contacts_properties_d40_zip_ab1", - "contacts_properties_d40_zip_ab2", - "contacts_properties_d40_zip_ab3", - "contacts_properties_d8f_email", - "contacts_properties_d8f_email_ab1", - "contacts_properties_d8f_email_ab2", - "contacts_properties_d8f_email_ab3", - "contacts_properties_d9f_hs_email_is_ineligible", - "contacts_properties_d9f_hs_email_is_ineligible_ab1", - "contacts_properties_d9f_hs_email_is_ineligible_ab2", - "contacts_properties_d9f_hs_email_is_ineligible_ab3", - "contacts_properties_da2_hs_calculated_merged_vids", - "contacts_properties_da2_hs_calculated_merged_vids_ab1", - "contacts_properties_da2_hs_calculated_merged_vids_ab2", - "contacts_properties_da2_hs_calculated_merged_vids_ab3", - "contacts_properties_dc9_ip_zipcode", - "contacts_properties_dc9_ip_zipcode_ab1", - "contacts_properties_dc9_ip_zipcode_ab2", - "contacts_properties_dc9_ip_zipcode_ab3", - "contacts_properties_de6_recent_deal_close_date", - "contacts_properties_de6_recent_deal_close_date_ab1", - "contacts_properties_de6_recent_deal_close_date_ab2", - "contacts_properties_de6_recent_deal_close_date_ab3", - "contacts_properties_e05_hs_analytics_num_visits", - "contacts_properties_e05_hs_analytics_num_visits_ab1", - "contacts_properties_e05_hs_analytics_num_visits_ab2", - "contacts_properties_e05_hs_analytics_num_visits_ab3", - "contacts_properties_e2d_lastmodifieddate", - "contacts_properties_e2d_lastmodifieddate_ab1", - "contacts_properties_e2d_lastmodifieddate_ab2", - "contacts_properties_e2d_lastmodifieddate_ab3", - "contacts_properties_e31_twitterhandle", - "contacts_properties_e31_twitterhandle_ab1", - "contacts_properties_e31_twitterhandle_ab2", - "contacts_properties_e31_twitterhandle_ab3", - "contacts_properties_e4e_hs_email_last_click_date", - "contacts_properties_e4e_hs_email_last_click_date_ab1", - "contacts_properties_e4e_hs_email_last_click_date_ab2", - "contacts_properties_e4e_hs_email_last_click_date_ab3", - "contacts_properties_e7f_hs_email_delivered", - "contacts_properties_e7f_hs_email_delivered_ab1", - "contacts_properties_e7f_hs_email_delivered_ab2", - "contacts_properties_e7f_hs_email_delivered_ab3", - "contacts_properties_e87_ip_latlon", - "contacts_properties_e87_ip_latlon_ab1", - "contacts_properties_e87_ip_latlon_ab2", - "contacts_properties_e87_ip_latlon_ab3", - "contacts_properties_e88_hs_created_by_conversations", - "contacts_properties_e88_hs_created_by_conversations_ab1", - "contacts_properties_e88_hs_created_by_conversations_ab2", - "contacts_properties_e88_hs_created_by_conversations_ab3", - "contacts_properties_ef9_start_date", - "contacts_properties_ef9_start_date_ab1", - "contacts_properties_ef9_start_date_ab2", - "contacts_properties_ef9_start_date_ab3", - "contacts_properties_f00_hs_persona", - "contacts_properties_f00_hs_persona_ab1", - "contacts_properties_f00_hs_persona_ab2", - "contacts_properties_f00_hs_persona_ab3", - "contacts_properties_f34_num_conversion_events", - "contacts_properties_f34_num_conversion_events_ab1", - "contacts_properties_f34_num_conversion_events_ab2", - "contacts_properties_f34_num_conversion_events_ab3", - "contacts_properties_f39_address", - "contacts_properties_f39_address_ab1", - "contacts_properties_f39_address_ab2", - "contacts_properties_f39_address_ab3", - "contacts_properties_f3b_degree", - "contacts_properties_f3b_degree_ab1", - "contacts_properties_f3b_degree_ab2", - "contacts_properties_f3b_degree_ab3", - "contacts_properties_f48_hs_count_is_unworked", - "contacts_properties_f48_hs_count_is_unworked_ab1", - "contacts_properties_f48_hs_count_is_unworked_ab2", - "contacts_properties_f48_hs_count_is_unworked_ab3", - "contacts_properties_f4c_hs_all_team_ids", - "contacts_properties_f4c_hs_all_team_ids_ab1", - "contacts_properties_f4c_hs_all_team_ids_ab2", - "contacts_properties_f4c_hs_all_team_ids_ab3", - "contacts_properties_f82_hs_sales_email_last_opened", - "contacts_properties_f82_hs_sales_email_last_opened_ab1", - "contacts_properties_f82_hs_sales_email_last_opened_ab2", - "contacts_properties_f82_hs_sales_email_last_opened_ab3", - "contacts_properties_fa8_hs_searchable_calculated_phone_number", - "contacts_properties_fa8_hs_searchable_calculated_phone_number_ab1", - "contacts_properties_fa8_hs_searchable_calculated_phone_number_ab2", - "contacts_properties_fa8_hs_searchable_calculated_phone_number_ab3", - "contacts_properties_faf_hs_lifecyclestage_subscriber_date", - "contacts_properties_faf_hs_lifecyclestage_subscriber_date_ab1", - "contacts_properties_faf_hs_lifecyclestage_subscriber_date_ab2", - "contacts_properties_faf_hs_lifecyclestage_subscriber_date_ab3", - "contacts_properties_fd0_ip_country", - "contacts_properties_fd0_ip_country_ab1", - "contacts_properties_fd0_ip_country_ab2", - "contacts_properties_fd0_ip_country_ab3", - "contacts_properties_ff4_hs_count_is_worked", - "contacts_properties_ff4_hs_count_is_worked_ab1", - "contacts_properties_ff4_hs_count_is_worked_ab2", - "contacts_properties_ff4_hs_count_is_worked_ab3", - "contacts_properties_ff7_hs_content_membership_registered_at", - "contacts_properties_ff7_hs_content_membership_registered_at_ab1", - "contacts_properties_ff7_hs_content_membership_registered_at_ab2", - "contacts_properties_ff7_hs_content_membership_registered_at_ab3", - "contacts_properties_fff_country", - "contacts_properties_fff_country_ab1", - "contacts_properties_fff_country_ab2", - "contacts_properties_fff_country_ab3", - "deal_pipelines_142_stages", - "deal_pipelines_142_stages_ab1", - "deal_pipelines_142_stages_ab2", - "deal_pipelines_142_stages_ab3", - "deals_070_properties", - "deals_070_properties_ab1", - "deals_070_properties_ab2", - "deals_070_properties_ab3", - "deals_0bf_property_engagements_last_meeting_booked_medium", - "deals_0bf_property_engagements_last_meeting_booked_medium_ab1", - "deals_0bf_property_engagements_last_meeting_booked_medium_ab2", - "deals_0bf_property_engagements_last_meeting_booked_medium_ab3", - "deals_0d6_property_hs_user_ids_of_all_owners", - "deals_0d6_property_hs_user_ids_of_all_owners_ab1", - "deals_0d6_property_hs_user_ids_of_all_owners_ab2", - "deals_0d6_property_hs_user_ids_of_all_owners_ab3", - "deals_0dc_property_hs_date_entered_closedwon", - "deals_0dc_property_hs_date_entered_closedwon_ab1", - "deals_0dc_property_hs_date_entered_closedwon_ab2", - "deals_0dc_property_hs_date_entered_closedwon_ab3", - "deals_0e7_property_hs_all_owner_ids", - "deals_0e7_property_hs_all_owner_ids_ab1", - "deals_0e7_property_hs_all_owner_ids_ab2", - "deals_0e7_property_hs_all_owner_ids_ab3", - "deals_139_property_notes_next_activity_date", - "deals_139_property_notes_next_activity_date_ab1", - "deals_139_property_notes_next_activity_date_ab2", - "deals_139_property_notes_next_activity_date_ab3", - "deals_141_property_hs_predicted_amount_in_home_currency", - "deals_141_property_hs_predicted_amount_in_home_currency_ab1", - "deals_141_property_hs_predicted_amount_in_home_currency_ab2", - "deals_141_property_hs_predicted_amount_in_home_currency_ab3", - "deals_16b_property_num_associated_contacts", - "deals_16b_property_num_associated_contacts_ab1", - "deals_16b_property_num_associated_contacts_ab2", - "deals_16b_property_num_associated_contacts_ab3", - "deals_19c_property_hs_time_in_contractsent", - "deals_19c_property_hs_time_in_contractsent_ab1", - "deals_19c_property_hs_time_in_contractsent_ab2", - "deals_19c_property_hs_time_in_contractsent_ab3", - "deals_1f2_property_hs_date_entered_9567449", - "deals_1f2_property_hs_date_entered_9567449_ab1", - "deals_1f2_property_hs_date_entered_9567449_ab2", - "deals_1f2_property_hs_date_entered_9567449_ab3", - "deals_205_property_hs_analytics_source_data_1", - "deals_205_property_hs_analytics_source_data_1_ab1", - "deals_205_property_hs_analytics_source_data_1_ab2", - "deals_205_property_hs_analytics_source_data_1_ab3", - "deals_212_property_hs_time_in_9567448", - "deals_212_property_hs_time_in_9567448_ab1", - "deals_212_property_hs_time_in_9567448_ab2", - "deals_212_property_hs_time_in_9567448_ab3", - "deals_241_property_hs_sales_email_last_replied", - "deals_241_property_hs_sales_email_last_replied_ab1", - "deals_241_property_hs_sales_email_last_replied_ab2", - "deals_241_property_hs_sales_email_last_replied_ab3", - "deals_26a_property_hs_date_exited_qualifiedtobuy", - "deals_26a_property_hs_date_exited_qualifiedtobuy_ab1", - "deals_26a_property_hs_date_exited_qualifiedtobuy_ab2", - "deals_26a_property_hs_date_exited_qualifiedtobuy_ab3", - "deals_298_property_hs_lastmodifieddate", - "deals_298_property_hs_lastmodifieddate_ab1", - "deals_298_property_hs_lastmodifieddate_ab2", - "deals_298_property_hs_lastmodifieddate_ab3", - "deals_2b5_property_hs_date_exited_9567448", - "deals_2b5_property_hs_date_exited_9567448_ab1", - "deals_2b5_property_hs_date_exited_9567448_ab2", - "deals_2b5_property_hs_date_exited_9567448_ab3", - "deals_2c9_property_hs_latest_meeting_activity", - "deals_2c9_property_hs_latest_meeting_activity_ab1", - "deals_2c9_property_hs_latest_meeting_activity_ab2", - "deals_2c9_property_hs_latest_meeting_activity_ab3", - "deals_2de_property_hs_time_in_presentationscheduled", - "deals_2de_property_hs_time_in_presentationscheduled_ab1", - "deals_2de_property_hs_time_in_presentationscheduled_ab2", - "deals_2de_property_hs_time_in_presentationscheduled_ab3", - "deals_2ea_property_hs_time_in_closedwon", - "deals_2ea_property_hs_time_in_closedwon_ab1", - "deals_2ea_property_hs_time_in_closedwon_ab2", - "deals_2ea_property_hs_time_in_closedwon_ab3", - "deals_326_property_notes_last_updated", - "deals_326_property_notes_last_updated_ab1", - "deals_326_property_notes_last_updated_ab2", - "deals_326_property_notes_last_updated_ab3", - "deals_33f_property_hs_projected_amount", - "deals_33f_property_hs_projected_amount_ab1", - "deals_33f_property_hs_projected_amount_ab2", - "deals_33f_property_hs_projected_amount_ab3", - "deals_348_property_amount", - "deals_348_property_amount_ab1", - "deals_348_property_amount_ab2", - "deals_348_property_amount_ab3", - "deals_34e_property_hs_tcv", - "deals_34e_property_hs_tcv_ab1", - "deals_34e_property_hs_tcv_ab2", - "deals_34e_property_hs_tcv_ab3", - "deals_3ce_property_hs_time_in_9567449", - "deals_3ce_property_hs_time_in_9567449_ab1", - "deals_3ce_property_hs_time_in_9567449_ab2", - "deals_3ce_property_hs_time_in_9567449_ab3", - "deals_3d9_property_hs_likelihood_to_close", - "deals_3d9_property_hs_likelihood_to_close_ab1", - "deals_3d9_property_hs_likelihood_to_close_ab2", - "deals_3d9_property_hs_likelihood_to_close_ab3", - "deals_40e_property_hs_closed_amount_in_home_currency", - "deals_40e_property_hs_closed_amount_in_home_currency_ab1", - "deals_40e_property_hs_closed_amount_in_home_currency_ab2", - "deals_40e_property_hs_closed_amount_in_home_currency_ab3", - "deals_41d_property_dealtype", - "deals_41d_property_dealtype_ab1", - "deals_41d_property_dealtype_ab2", - "deals_41d_property_dealtype_ab3", - "deals_43c_property_hs_line_item_global_term_hs_recurring_billing_period", - "deals_43c_property_hs_line_item_global_term_hs_recurring_billing_period_ab1", - "deals_43c_property_hs_line_item_global_term_hs_recurring_billing_period_ab2", - "deals_43c_property_hs_line_item_global_term_hs_recurring_billing_period_ab3", - "deals_477_property_closed_won_reason", - "deals_477_property_closed_won_reason_ab1", - "deals_477_property_closed_won_reason_ab2", - "deals_477_property_closed_won_reason_ab3", - "deals_4f5_properties_versions", - "deals_4f5_properties_versions_ab1", - "deals_4f5_properties_versions_ab2", - "deals_4f5_properties_versions_ab3", - "deals_4f5_property_closed_lost_reason", - "deals_4f5_property_closed_lost_reason_ab1", - "deals_4f5_property_closed_lost_reason_ab2", - "deals_4f5_property_closed_lost_reason_ab3", - "deals_52d_property_hs_is_closed", - "deals_52d_property_hs_is_closed_ab1", - "deals_52d_property_hs_is_closed_ab2", - "deals_52d_property_hs_is_closed_ab3", - "deals_53d_property_hs_all_team_ids", - "deals_53d_property_hs_all_team_ids_ab1", - "deals_53d_property_hs_all_team_ids_ab2", - "deals_53d_property_hs_all_team_ids_ab3", - "deals_555_property_hs_time_in_decisionmakerboughtin", - "deals_555_property_hs_time_in_decisionmakerboughtin_ab1", - "deals_555_property_hs_time_in_decisionmakerboughtin_ab2", - "deals_555_property_hs_time_in_decisionmakerboughtin_ab3", - "deals_569_property_hs_manual_forecast_category", - "deals_569_property_hs_manual_forecast_category_ab1", - "deals_569_property_hs_manual_forecast_category_ab2", - "deals_569_property_hs_manual_forecast_category_ab3", - "deals_591_property_hs_analytics_source_data_2", - "deals_591_property_hs_analytics_source_data_2_ab1", - "deals_591_property_hs_analytics_source_data_2_ab2", - "deals_591_property_hs_analytics_source_data_2_ab3", - "deals_59d_property_hs_line_item_global_term_hs_recurring_billing_start_date", - "deals_59d_property_hs_line_item_global_term_hs_recurring_billing_start_date_ab1", - "deals_59d_property_hs_line_item_global_term_hs_recurring_billing_start_date_ab2", - "deals_59d_property_hs_line_item_global_term_hs_recurring_billing_start_date_ab3", - "deals_5f7_property_hs_next_step", - "deals_5f7_property_hs_next_step_ab1", - "deals_5f7_property_hs_next_step_ab2", - "deals_5f7_property_hs_next_step_ab3", - "deals_60f_property_hs_date_exited_contractsent", - "deals_60f_property_hs_date_exited_contractsent_ab1", - "deals_60f_property_hs_date_exited_contractsent_ab2", - "deals_60f_property_hs_date_exited_contractsent_ab3", - "deals_62b_property_amount_in_home_currency", - "deals_62b_property_amount_in_home_currency_ab1", - "deals_62b_property_amount_in_home_currency_ab2", - "deals_62b_property_amount_in_home_currency_ab3", - "deals_650_property_hs_date_entered_qualifiedtobuy", - "deals_650_property_hs_date_entered_qualifiedtobuy_ab1", - "deals_650_property_hs_date_entered_qualifiedtobuy_ab2", - "deals_650_property_hs_date_entered_qualifiedtobuy_ab3", - "deals_6be_property_engagements_last_meeting_booked_source", - "deals_6be_property_engagements_last_meeting_booked_source_ab1", - "deals_6be_property_engagements_last_meeting_booked_source_ab2", - "deals_6be_property_engagements_last_meeting_booked_source_ab3", - "deals_6fa_property_hs_date_exited_presentationscheduled", - "deals_6fa_property_hs_date_exited_presentationscheduled_ab1", - "deals_6fa_property_hs_date_exited_presentationscheduled_ab2", - "deals_6fa_property_hs_date_exited_presentationscheduled_ab3", - "deals_708_property_hs_date_entered_customclosedwonstage", - "deals_708_property_hs_date_entered_customclosedwonstage_ab1", - "deals_708_property_hs_date_entered_customclosedwonstage_ab2", - "deals_708_property_hs_date_entered_customclosedwonstage_ab3", - "deals_712_property_hs_forecast_probability", - "deals_712_property_hs_forecast_probability_ab1", - "deals_712_property_hs_forecast_probability_ab2", - "deals_712_property_hs_forecast_probability_ab3", - "deals_72e_property_num_contacted_notes", - "deals_72e_property_num_contacted_notes_ab1", - "deals_72e_property_num_contacted_notes_ab2", - "deals_72e_property_num_contacted_notes_ab3", - "deals_73d_property_hs_merged_object_ids", - "deals_73d_property_hs_merged_object_ids_ab1", - "deals_73d_property_hs_merged_object_ids_ab2", - "deals_73d_property_hs_merged_object_ids_ab3", - "deals_74e_property_hubspot_team_id", - "deals_74e_property_hubspot_team_id_ab1", - "deals_74e_property_hubspot_team_id_ab2", - "deals_74e_property_hubspot_team_id_ab3", - "deals_75e_property_hs_line_item_global_term_hs_recurring_billing_start_date_enabled", - "deals_75e_property_hs_line_item_global_term_hs_recurring_billing_start_date_enabled_ab1", - "deals_75e_property_hs_line_item_global_term_hs_recurring_billing_start_date_enabled_ab2", - "deals_75e_property_hs_line_item_global_term_hs_recurring_billing_start_date_enabled_ab3", - "deals_767_property_hs_deal_amount_calculation_preference", - "deals_767_property_hs_deal_amount_calculation_preference_ab1", - "deals_767_property_hs_deal_amount_calculation_preference_ab2", - "deals_767_property_hs_deal_amount_calculation_preference_ab3", - "deals_787_associations", - "deals_787_associations_ab1", - "deals_787_associations_ab2", - "deals_787_associations_ab3", - "deals_7ac_property_hs_date_exited_closedlost", - "deals_7ac_property_hs_date_exited_closedlost_ab1", - "deals_7ac_property_hs_date_exited_closedlost_ab2", - "deals_7ac_property_hs_date_exited_closedlost_ab3", - "deals_830_property_description", - "deals_830_property_description_ab1", - "deals_830_property_description_ab2", - "deals_830_property_description_ab3", - "deals_855_property_hs_createdate", - "deals_855_property_hs_createdate_ab1", - "deals_855_property_hs_createdate_ab2", - "deals_855_property_hs_createdate_ab3", - "deals_896_property_hs_date_entered_closedlost", - "deals_896_property_hs_date_entered_closedlost_ab1", - "deals_896_property_hs_date_entered_closedlost_ab2", - "deals_896_property_hs_date_entered_closedlost_ab3", - "deals_897_property_createdate", - "deals_897_property_createdate_ab1", - "deals_897_property_createdate_ab2", - "deals_897_property_createdate_ab3", - "deals_89d_property_hs_date_exited_closedwon", - "deals_89d_property_hs_date_exited_closedwon_ab1", - "deals_89d_property_hs_date_exited_closedwon_ab2", - "deals_89d_property_hs_date_exited_closedwon_ab3", - "deals_8ac_property_hs_closed_amount", - "deals_8ac_property_hs_closed_amount_ab1", - "deals_8ac_property_hs_closed_amount_ab2", - "deals_8ac_property_hs_closed_amount_ab3", - "deals_8b6_property_hs_time_in_appointmentscheduled", - "deals_8b6_property_hs_time_in_appointmentscheduled_ab1", - "deals_8b6_property_hs_time_in_appointmentscheduled_ab2", - "deals_8b6_property_hs_time_in_appointmentscheduled_ab3", - "deals_8ff_property_hs_mrr", - "deals_8ff_property_hs_mrr_ab1", - "deals_8ff_property_hs_mrr_ab2", - "deals_8ff_property_hs_mrr_ab3", - "deals_95e_property_hs_time_in_closedlost", - "deals_95e_property_hs_time_in_closedlost_ab1", - "deals_95e_property_hs_time_in_closedlost_ab2", - "deals_95e_property_hs_time_in_closedlost_ab3", - "deals_98e_property_engagements_last_meeting_booked_campaign", - "deals_98e_property_engagements_last_meeting_booked_campaign_ab1", - "deals_98e_property_engagements_last_meeting_booked_campaign_ab2", - "deals_98e_property_engagements_last_meeting_booked_campaign_ab3", - "deals_9a9_property_hs_date_entered_contractsent", - "deals_9a9_property_hs_date_entered_contractsent_ab1", - "deals_9a9_property_hs_date_entered_contractsent_ab2", - "deals_9a9_property_hs_date_entered_contractsent_ab3", - "deals_9b8_property_hs_line_item_global_term_hs_discount_percentage", - "deals_9b8_property_hs_line_item_global_term_hs_discount_percentage_ab1", - "deals_9b8_property_hs_line_item_global_term_hs_discount_percentage_ab2", - "deals_9b8_property_hs_line_item_global_term_hs_discount_percentage_ab3", - "deals_9c4_property_days_to_close", - "deals_9c4_property_days_to_close_ab1", - "deals_9c4_property_days_to_close_ab2", - "deals_9c4_property_days_to_close_ab3", - "deals_9cf_property_hs_created_by_user_id", - "deals_9cf_property_hs_created_by_user_id_ab1", - "deals_9cf_property_hs_created_by_user_id_ab2", - "deals_9cf_property_hs_created_by_user_id_ab3", - "deals_9e5_property_hs_predicted_amount", - "deals_9e5_property_hs_predicted_amount_ab1", - "deals_9e5_property_hs_predicted_amount_ab2", - "deals_9e5_property_hs_predicted_amount_ab3", - "deals_a61_property_hs_updated_by_user_id", - "deals_a61_property_hs_updated_by_user_id_ab1", - "deals_a61_property_hs_updated_by_user_id_ab2", - "deals_a61_property_hs_updated_by_user_id_ab3", - "deals_a72_property_hs_time_in_qualifiedtobuy", - "deals_a72_property_hs_time_in_qualifiedtobuy_ab1", - "deals_a72_property_hs_time_in_qualifiedtobuy_ab2", - "deals_a72_property_hs_time_in_qualifiedtobuy_ab3", - "deals_abe_property_hs_projected_amount_in_home_currency", - "deals_abe_property_hs_projected_amount_in_home_currency_ab1", - "deals_abe_property_hs_projected_amount_in_home_currency_ab2", - "deals_abe_property_hs_projected_amount_in_home_currency_ab3", - "deals_b3e_property_closedate", - "deals_b3e_property_closedate_ab1", - "deals_b3e_property_closedate_ab2", - "deals_b3e_property_closedate_ab3", - "deals_b50_property_hs_arr", - "deals_b50_property_hs_arr_ab1", - "deals_b50_property_hs_arr_ab2", - "deals_b50_property_hs_arr_ab3", - "deals_b60_property_hs_date_exited_appointmentscheduled", - "deals_b60_property_hs_date_exited_appointmentscheduled_ab1", - "deals_b60_property_hs_date_exited_appointmentscheduled_ab2", - "deals_b60_property_hs_date_exited_appointmentscheduled_ab3", - "deals_b88_property_hs_date_exited_9567449", - "deals_b88_property_hs_date_exited_9567449_ab1", - "deals_b88_property_hs_date_exited_9567449_ab2", - "deals_b88_property_hs_date_exited_9567449_ab3", - "deals_b9d_property_hs_date_exited_decisionmakerboughtin", - "deals_b9d_property_hs_date_exited_decisionmakerboughtin_ab1", - "deals_b9d_property_hs_date_exited_decisionmakerboughtin_ab2", - "deals_b9d_property_hs_date_exited_decisionmakerboughtin_ab3", - "deals_ba8_property_hs_object_id", - "deals_ba8_property_hs_object_id_ab1", - "deals_ba8_property_hs_object_id_ab2", - "deals_ba8_property_hs_object_id_ab3", - "deals_bbd_property_hs_date_entered_9567448", - "deals_bbd_property_hs_date_entered_9567448_ab1", - "deals_bbd_property_hs_date_entered_9567448_ab2", - "deals_bbd_property_hs_date_entered_9567448_ab3", - "deals_be6_property_num_notes", - "deals_be6_property_num_notes_ab1", - "deals_be6_property_num_notes_ab2", - "deals_be6_property_num_notes_ab3", - "deals_c0d_property_engagements_last_meeting_booked", - "deals_c0d_property_engagements_last_meeting_booked_ab1", - "deals_c0d_property_engagements_last_meeting_booked_ab2", - "deals_c0d_property_engagements_last_meeting_booked_ab3", - "deals_c6b_property_dealstage", - "deals_c6b_property_dealstage_ab1", - "deals_c6b_property_dealstage_ab2", - "deals_c6b_property_dealstage_ab3", - "deals_c6d_property_hs_time_in_customclosedwonstage", - "deals_c6d_property_hs_time_in_customclosedwonstage_ab1", - "deals_c6d_property_hs_time_in_customclosedwonstage_ab2", - "deals_c6d_property_hs_time_in_customclosedwonstage_ab3", - "deals_ca0_property_hs_all_accessible_team_ids", - "deals_ca0_property_hs_all_accessible_team_ids_ab1", - "deals_ca0_property_hs_all_accessible_team_ids_ab2", - "deals_ca0_property_hs_all_accessible_team_ids_ab3", - "deals_d34_property_hs_date_exited_customclosedwonstage", - "deals_d34_property_hs_date_exited_customclosedwonstage_ab1", - "deals_d34_property_hs_date_exited_customclosedwonstage_ab2", - "deals_d34_property_hs_date_exited_customclosedwonstage_ab3", - "deals_d56_property_hs_date_entered_decisionmakerboughtin", - "deals_d56_property_hs_date_entered_decisionmakerboughtin_ab1", - "deals_d56_property_hs_date_entered_decisionmakerboughtin_ab2", - "deals_d56_property_hs_date_entered_decisionmakerboughtin_ab3", - "deals_d63_property_hs_date_entered_appointmentscheduled", - "deals_d63_property_hs_date_entered_appointmentscheduled_ab1", - "deals_d63_property_hs_date_entered_appointmentscheduled_ab2", - "deals_d63_property_hs_date_entered_appointmentscheduled_ab3", - "deals_d6c_property_hs_acv", - "deals_d6c_property_hs_acv_ab1", - "deals_d6c_property_hs_acv_ab2", - "deals_d6c_property_hs_acv_ab3", - "deals_d8b_property_notes_last_contacted", - "deals_d8b_property_notes_last_contacted_ab1", - "deals_d8b_property_notes_last_contacted_ab2", - "deals_d8b_property_notes_last_contacted_ab3", - "deals_dc7_property_hs_deal_stage_probability", - "deals_dc7_property_hs_deal_stage_probability_ab1", - "deals_dc7_property_hs_deal_stage_probability_ab2", - "deals_dc7_property_hs_deal_stage_probability_ab3", - "deals_e3c_property_hs_date_entered_presentationscheduled", - "deals_e3c_property_hs_date_entered_presentationscheduled_ab1", - "deals_e3c_property_hs_date_entered_presentationscheduled_ab2", - "deals_e3c_property_hs_date_entered_presentationscheduled_ab3", - "deals_e4a_property_pipeline", - "deals_e4a_property_pipeline_ab1", - "deals_e4a_property_pipeline_ab2", - "deals_e4a_property_pipeline_ab3", - "deals_e8c_property_dealname", - "deals_e8c_property_dealname_ab1", - "deals_e8c_property_dealname_ab2", - "deals_e8c_property_dealname_ab3", - "deals_e9e_property_hubspot_owner_assigneddate", - "deals_e9e_property_hubspot_owner_assigneddate_ab1", - "deals_e9e_property_hubspot_owner_assigneddate_ab2", - "deals_e9e_property_hubspot_owner_assigneddate_ab3", - "deals_ebb_property_hs_analytics_source", - "deals_ebb_property_hs_analytics_source_ab1", - "deals_ebb_property_hs_analytics_source_ab2", - "deals_ebb_property_hs_analytics_source_ab3", - "deals_f37_property_hs_line_item_global_term_recurringbillingfrequency", - "deals_f37_property_hs_line_item_global_term_recurringbillingfrequency_ab1", - "deals_f37_property_hs_line_item_global_term_recurringbillingfrequency_ab2", - "deals_f37_property_hs_line_item_global_term_recurringbillingfrequency_ab3", - "deals_f3d_property_hs_forecast_amount", - "deals_f3d_property_hs_forecast_amount_ab1", - "deals_f3d_property_hs_forecast_amount_ab2", - "deals_f3d_property_hs_forecast_amount_ab3", - "deals_fbd_property_hs_line_item_global_term_hs_recurring_billing_period_enabled", - "deals_fbd_property_hs_line_item_global_term_hs_recurring_billing_period_enabled_ab1", - "deals_fbd_property_hs_line_item_global_term_hs_recurring_billing_period_enabled_ab2", - "deals_fbd_property_hs_line_item_global_term_hs_recurring_billing_period_enabled_ab3", - "deals_fc5_property_hs_line_item_global_term_recurringbillingfrequency_enabled", - "deals_fc5_property_hs_line_item_global_term_recurringbillingfrequency_enabled_ab1", - "deals_fc5_property_hs_line_item_global_term_recurringbillingfrequency_enabled_ab2", - "deals_fc5_property_hs_line_item_global_term_recurringbillingfrequency_enabled_ab3", - "deals_fcc_property_hubspot_owner_id", - "deals_fcc_property_hubspot_owner_id_ab1", - "deals_fcc_property_hubspot_owner_id_ab2", - "deals_fcc_property_hubspot_owner_id_ab3", - "deals_ffc_property_hs_line_item_global_term_hs_discount_percentage_enabled", - "deals_ffc_property_hs_line_item_global_term_hs_discount_percentage_enabled_ab1", - "deals_ffc_property_hs_line_item_global_term_hs_discount_percentage_enabled_ab2", - "deals_ffc_property_hs_line_item_global_term_hs_discount_percentage_enabled_ab3", - "deals_properties_067_hs_line_item_global_term_recurringbillingfrequency", - "deals_properties_067_hs_line_item_global_term_recurringbillingfrequency_ab1", - "deals_properties_067_hs_line_item_global_term_recurringbillingfrequency_ab2", - "deals_properties_067_hs_line_item_global_term_recurringbillingfrequency_ab3", - "deals_properties_0d7_hs_tcv", - "deals_properties_0d7_hs_tcv_ab1", - "deals_properties_0d7_hs_tcv_ab2", - "deals_properties_0d7_hs_tcv_ab3", - "deals_properties_121_amount", - "deals_properties_121_amount_ab1", - "deals_properties_121_amount_ab2", - "deals_properties_121_amount_ab3", - "deals_properties_134_hs_date_entered_presentationscheduled", - "deals_properties_134_hs_date_entered_presentationscheduled_ab1", - "deals_properties_134_hs_date_entered_presentationscheduled_ab2", - "deals_properties_134_hs_date_entered_presentationscheduled_ab3", - "deals_properties_1c0_hs_date_entered_customclosedwonstage", - "deals_properties_1c0_hs_date_entered_customclosedwonstage_ab1", - "deals_properties_1c0_hs_date_entered_customclosedwonstage_ab2", - "deals_properties_1c0_hs_date_entered_customclosedwonstage_ab3", - "deals_properties_1c6_hs_line_item_global_term_hs_recurring_billing_start_date_enabled", - "deals_properties_1c6_hs_line_item_global_term_hs_recurring_billing_start_date_enabled_ab1", - "deals_properties_1c6_hs_line_item_global_term_hs_recurring_billing_start_date_enabled_ab2", - "deals_properties_1c6_hs_line_item_global_term_hs_recurring_billing_start_date_enabled_ab3", - "deals_properties_1e1_hs_date_entered_qualifiedtobuy", - "deals_properties_1e1_hs_date_entered_qualifiedtobuy_ab1", - "deals_properties_1e1_hs_date_entered_qualifiedtobuy_ab2", - "deals_properties_1e1_hs_date_entered_qualifiedtobuy_ab3", - "deals_properties_247_hs_date_exited_9567449", - "deals_properties_247_hs_date_exited_9567449_ab1", - "deals_properties_247_hs_date_exited_9567449_ab2", - "deals_properties_247_hs_date_exited_9567449_ab3", - "deals_properties_281_hs_date_entered_appointmentscheduled", - "deals_properties_281_hs_date_entered_appointmentscheduled_ab1", - "deals_properties_281_hs_date_entered_appointmentscheduled_ab2", - "deals_properties_281_hs_date_entered_appointmentscheduled_ab3", - "deals_properties_2b3_hs_time_in_presentationscheduled", - "deals_properties_2b3_hs_time_in_presentationscheduled_ab1", - "deals_properties_2b3_hs_time_in_presentationscheduled_ab2", - "deals_properties_2b3_hs_time_in_presentationscheduled_ab3", - "deals_properties_315_hs_line_item_global_term_hs_discount_percentage_enabled", - "deals_properties_315_hs_line_item_global_term_hs_discount_percentage_enabled_ab1", - "deals_properties_315_hs_line_item_global_term_hs_discount_percentage_enabled_ab2", - "deals_properties_315_hs_line_item_global_term_hs_discount_percentage_enabled_ab3", - "deals_properties_328_num_associated_contacts", - "deals_properties_328_num_associated_contacts_ab1", - "deals_properties_328_num_associated_contacts_ab2", - "deals_properties_328_num_associated_contacts_ab3", - "deals_properties_38b_hubspot_owner_assigneddate", - "deals_properties_38b_hubspot_owner_assigneddate_ab1", - "deals_properties_38b_hubspot_owner_assigneddate_ab2", - "deals_properties_38b_hubspot_owner_assigneddate_ab3", - "deals_properties_395_hs_arr", - "deals_properties_395_hs_arr_ab1", - "deals_properties_395_hs_arr_ab2", - "deals_properties_395_hs_arr_ab3", - "deals_properties_3b2_hs_time_in_9567449", - "deals_properties_3b2_hs_time_in_9567449_ab1", - "deals_properties_3b2_hs_time_in_9567449_ab2", - "deals_properties_3b2_hs_time_in_9567449_ab3", - "deals_properties_3c9_hs_next_step", - "deals_properties_3c9_hs_next_step_ab1", - "deals_properties_3c9_hs_next_step_ab2", - "deals_properties_3c9_hs_next_step_ab3", - "deals_properties_3e3_hs_date_exited_closedwon", - "deals_properties_3e3_hs_date_exited_closedwon_ab1", - "deals_properties_3e3_hs_date_exited_closedwon_ab2", - "deals_properties_3e3_hs_date_exited_closedwon_ab3", - "deals_properties_3ec_days_to_close", - "deals_properties_3ec_days_to_close_ab1", - "deals_properties_3ec_days_to_close_ab2", - "deals_properties_3ec_days_to_close_ab3", - "deals_properties_3f4_hs_date_entered_contractsent", - "deals_properties_3f4_hs_date_entered_contractsent_ab1", - "deals_properties_3f4_hs_date_entered_contractsent_ab2", - "deals_properties_3f4_hs_date_entered_contractsent_ab3", - "deals_properties_3fe_hs_date_exited_appointmentscheduled", - "deals_properties_3fe_hs_date_exited_appointmentscheduled_ab1", - "deals_properties_3fe_hs_date_exited_appointmentscheduled_ab2", - "deals_properties_3fe_hs_date_exited_appointmentscheduled_ab3", - "deals_properties_417_hs_all_accessible_team_ids", - "deals_properties_417_hs_all_accessible_team_ids_ab1", - "deals_properties_417_hs_all_accessible_team_ids_ab2", - "deals_properties_417_hs_all_accessible_team_ids_ab3", - "deals_properties_43e_dealstage", - "deals_properties_43e_dealstage_ab1", - "deals_properties_43e_dealstage_ab2", - "deals_properties_43e_dealstage_ab3", - "deals_properties_478_notes_last_updated", - "deals_properties_478_notes_last_updated_ab1", - "deals_properties_478_notes_last_updated_ab2", - "deals_properties_478_notes_last_updated_ab3", - "deals_properties_49b_hs_forecast_probability", - "deals_properties_49b_hs_forecast_probability_ab1", - "deals_properties_49b_hs_forecast_probability_ab2", - "deals_properties_49b_hs_forecast_probability_ab3", - "deals_properties_4c2_hs_time_in_decisionmakerboughtin", - "deals_properties_4c2_hs_time_in_decisionmakerboughtin_ab1", - "deals_properties_4c2_hs_time_in_decisionmakerboughtin_ab2", - "deals_properties_4c2_hs_time_in_decisionmakerboughtin_ab3", - "deals_properties_500_hs_date_entered_closedlost", - "deals_properties_500_hs_date_entered_closedlost_ab1", - "deals_properties_500_hs_date_entered_closedlost_ab2", - "deals_properties_500_hs_date_entered_closedlost_ab3", - "deals_properties_53c_hs_line_item_global_term_hs_recurring_billing_period", - "deals_properties_53c_hs_line_item_global_term_hs_recurring_billing_period_ab1", - "deals_properties_53c_hs_line_item_global_term_hs_recurring_billing_period_ab2", - "deals_properties_53c_hs_line_item_global_term_hs_recurring_billing_period_ab3", - "deals_properties_53e_hs_deal_amount_calculation_preference", - "deals_properties_53e_hs_deal_amount_calculation_preference_ab1", - "deals_properties_53e_hs_deal_amount_calculation_preference_ab2", - "deals_properties_53e_hs_deal_amount_calculation_preference_ab3", - "deals_properties_540_hs_merged_object_ids", - "deals_properties_540_hs_merged_object_ids_ab1", - "deals_properties_540_hs_merged_object_ids_ab2", - "deals_properties_540_hs_merged_object_ids_ab3", - "deals_properties_58a_num_notes", - "deals_properties_58a_num_notes_ab1", - "deals_properties_58a_num_notes_ab2", - "deals_properties_58a_num_notes_ab3", - "deals_properties_5ad_hs_likelihood_to_close", - "deals_properties_5ad_hs_likelihood_to_close_ab1", - "deals_properties_5ad_hs_likelihood_to_close_ab2", - "deals_properties_5ad_hs_likelihood_to_close_ab3", - "deals_properties_5c1_hs_acv", - "deals_properties_5c1_hs_acv_ab1", - "deals_properties_5c1_hs_acv_ab2", - "deals_properties_5c1_hs_acv_ab3", - "deals_properties_5e3_hubspot_team_id", - "deals_properties_5e3_hubspot_team_id_ab1", - "deals_properties_5e3_hubspot_team_id_ab2", - "deals_properties_5e3_hubspot_team_id_ab3", - "deals_properties_5fb_hs_analytics_source", - "deals_properties_5fb_hs_analytics_source_ab1", - "deals_properties_5fb_hs_analytics_source_ab2", - "deals_properties_5fb_hs_analytics_source_ab3", - "deals_properties_610_hs_projected_amount", - "deals_properties_610_hs_projected_amount_ab1", - "deals_properties_610_hs_projected_amount_ab2", - "deals_properties_610_hs_projected_amount_ab3", - "deals_properties_657_pipeline", - "deals_properties_657_pipeline_ab1", - "deals_properties_657_pipeline_ab2", - "deals_properties_657_pipeline_ab3", - "deals_properties_66c_hs_time_in_closedwon", - "deals_properties_66c_hs_time_in_closedwon_ab1", - "deals_properties_66c_hs_time_in_closedwon_ab2", - "deals_properties_66c_hs_time_in_closedwon_ab3", - "deals_properties_6d2_hs_mrr", - "deals_properties_6d2_hs_mrr_ab1", - "deals_properties_6d2_hs_mrr_ab2", - "deals_properties_6d2_hs_mrr_ab3", - "deals_properties_6e6_engagements_last_meeting_booked_medium", - "deals_properties_6e6_engagements_last_meeting_booked_medium_ab1", - "deals_properties_6e6_engagements_last_meeting_booked_medium_ab2", - "deals_properties_6e6_engagements_last_meeting_booked_medium_ab3", - "deals_properties_711_dealname", - "deals_properties_711_dealname_ab1", - "deals_properties_711_dealname_ab2", - "deals_properties_711_dealname_ab3", - "deals_properties_715_engagements_last_meeting_booked", - "deals_properties_715_engagements_last_meeting_booked_ab1", - "deals_properties_715_engagements_last_meeting_booked_ab2", - "deals_properties_715_engagements_last_meeting_booked_ab3", - "deals_properties_764_hs_is_closed", - "deals_properties_764_hs_is_closed_ab1", - "deals_properties_764_hs_is_closed_ab2", - "deals_properties_764_hs_is_closed_ab3", - "deals_properties_78e_engagements_last_meeting_booked_source", - "deals_properties_78e_engagements_last_meeting_booked_source_ab1", - "deals_properties_78e_engagements_last_meeting_booked_source_ab2", - "deals_properties_78e_engagements_last_meeting_booked_source_ab3", - "deals_properties_7df_hs_date_exited_decisionmakerboughtin", - "deals_properties_7df_hs_date_exited_decisionmakerboughtin_ab1", - "deals_properties_7df_hs_date_exited_decisionmakerboughtin_ab2", - "deals_properties_7df_hs_date_exited_decisionmakerboughtin_ab3", - "deals_properties_7e0_hs_analytics_source_data_2", - "deals_properties_7e0_hs_analytics_source_data_2_ab1", - "deals_properties_7e0_hs_analytics_source_data_2_ab2", - "deals_properties_7e0_hs_analytics_source_data_2_ab3", - "deals_properties_851_hs_date_entered_9567448", - "deals_properties_851_hs_date_entered_9567448_ab1", - "deals_properties_851_hs_date_entered_9567448_ab2", - "deals_properties_851_hs_date_entered_9567448_ab3", - "deals_properties_879_hs_date_exited_contractsent", - "deals_properties_879_hs_date_exited_contractsent_ab1", - "deals_properties_879_hs_date_exited_contractsent_ab2", - "deals_properties_879_hs_date_exited_contractsent_ab3", - "deals_properties_8b2_hs_time_in_qualifiedtobuy", - "deals_properties_8b2_hs_time_in_qualifiedtobuy_ab1", - "deals_properties_8b2_hs_time_in_qualifiedtobuy_ab2", - "deals_properties_8b2_hs_time_in_qualifiedtobuy_ab3", - "deals_properties_8cd_hs_user_ids_of_all_owners", - "deals_properties_8cd_hs_user_ids_of_all_owners_ab1", - "deals_properties_8cd_hs_user_ids_of_all_owners_ab2", - "deals_properties_8cd_hs_user_ids_of_all_owners_ab3", - "deals_properties_8da_num_contacted_notes", - "deals_properties_8da_num_contacted_notes_ab1", - "deals_properties_8da_num_contacted_notes_ab2", - "deals_properties_8da_num_contacted_notes_ab3", - "deals_properties_910_closed_lost_reason", - "deals_properties_910_closed_lost_reason_ab1", - "deals_properties_910_closed_lost_reason_ab2", - "deals_properties_910_closed_lost_reason_ab3", - "deals_properties_918_hs_manual_forecast_category", - "deals_properties_918_hs_manual_forecast_category_ab1", - "deals_properties_918_hs_manual_forecast_category_ab2", - "deals_properties_918_hs_manual_forecast_category_ab3", - "deals_properties_923_hs_sales_email_last_replied", - "deals_properties_923_hs_sales_email_last_replied_ab1", - "deals_properties_923_hs_sales_email_last_replied_ab2", - "deals_properties_923_hs_sales_email_last_replied_ab3", - "deals_properties_93a_notes_last_contacted", - "deals_properties_93a_notes_last_contacted_ab1", - "deals_properties_93a_notes_last_contacted_ab2", - "deals_properties_93a_notes_last_contacted_ab3", - "deals_properties_976_hs_date_entered_9567449", - "deals_properties_976_hs_date_entered_9567449_ab1", - "deals_properties_976_hs_date_entered_9567449_ab2", - "deals_properties_976_hs_date_entered_9567449_ab3", - "deals_properties_983_createdate", - "deals_properties_983_createdate_ab1", - "deals_properties_983_createdate_ab2", - "deals_properties_983_createdate_ab3", - "deals_properties_987_notes_next_activity_date", - "deals_properties_987_notes_next_activity_date_ab1", - "deals_properties_987_notes_next_activity_date_ab2", - "deals_properties_987_notes_next_activity_date_ab3", - "deals_properties_9ca_hs_lastmodifieddate", - "deals_properties_9ca_hs_lastmodifieddate_ab1", - "deals_properties_9ca_hs_lastmodifieddate_ab2", - "deals_properties_9ca_hs_lastmodifieddate_ab3", - "deals_properties_9d2_hs_time_in_customclosedwonstage", - "deals_properties_9d2_hs_time_in_customclosedwonstage_ab1", - "deals_properties_9d2_hs_time_in_customclosedwonstage_ab2", - "deals_properties_9d2_hs_time_in_customclosedwonstage_ab3", - "deals_properties_9d5_hs_latest_meeting_activity", - "deals_properties_9d5_hs_latest_meeting_activity_ab1", - "deals_properties_9d5_hs_latest_meeting_activity_ab2", - "deals_properties_9d5_hs_latest_meeting_activity_ab3", - "deals_properties_9fd_hs_date_exited_presentationscheduled", - "deals_properties_9fd_hs_date_exited_presentationscheduled_ab1", - "deals_properties_9fd_hs_date_exited_presentationscheduled_ab2", - "deals_properties_9fd_hs_date_exited_presentationscheduled_ab3", - "deals_properties_a14_hs_analytics_source_data_1", - "deals_properties_a14_hs_analytics_source_data_1_ab1", - "deals_properties_a14_hs_analytics_source_data_1_ab2", - "deals_properties_a14_hs_analytics_source_data_1_ab3", - "deals_properties_a89_hs_line_item_global_term_hs_recurring_billing_period_enabled", - "deals_properties_a89_hs_line_item_global_term_hs_recurring_billing_period_enabled_ab1", - "deals_properties_a89_hs_line_item_global_term_hs_recurring_billing_period_enabled_ab2", - "deals_properties_a89_hs_line_item_global_term_hs_recurring_billing_period_enabled_ab3", - "deals_properties_ab1_hs_line_item_global_term_hs_discount_percentage", - "deals_properties_ab1_hs_line_item_global_term_hs_discount_percentage_ab1", - "deals_properties_ab1_hs_line_item_global_term_hs_discount_percentage_ab2", - "deals_properties_ab1_hs_line_item_global_term_hs_discount_percentage_ab3", - "deals_properties_ad9_hs_date_exited_9567448", - "deals_properties_ad9_hs_date_exited_9567448_ab1", - "deals_properties_ad9_hs_date_exited_9567448_ab2", - "deals_properties_ad9_hs_date_exited_9567448_ab3", - "deals_properties_b0b_hubspot_owner_id", - "deals_properties_b0b_hubspot_owner_id_ab1", - "deals_properties_b0b_hubspot_owner_id_ab2", - "deals_properties_b0b_hubspot_owner_id_ab3", - "deals_properties_b2f_engagements_last_meeting_booked_campaign", - "deals_properties_b2f_engagements_last_meeting_booked_campaign_ab1", - "deals_properties_b2f_engagements_last_meeting_booked_campaign_ab2", - "deals_properties_b2f_engagements_last_meeting_booked_campaign_ab3", - "deals_properties_b7d_hs_all_owner_ids", - "deals_properties_b7d_hs_all_owner_ids_ab1", - "deals_properties_b7d_hs_all_owner_ids_ab2", - "deals_properties_b7d_hs_all_owner_ids_ab3", - "deals_properties_b8c_hs_time_in_closedlost", - "deals_properties_b8c_hs_time_in_closedlost_ab1", - "deals_properties_b8c_hs_time_in_closedlost_ab2", - "deals_properties_b8c_hs_time_in_closedlost_ab3", - "deals_properties_ba5_amount_in_home_currency", - "deals_properties_ba5_amount_in_home_currency_ab1", - "deals_properties_ba5_amount_in_home_currency_ab2", - "deals_properties_ba5_amount_in_home_currency_ab3", - "deals_properties_bb8_hs_predicted_amount_in_home_currency", - "deals_properties_bb8_hs_predicted_amount_in_home_currency_ab1", - "deals_properties_bb8_hs_predicted_amount_in_home_currency_ab2", - "deals_properties_bb8_hs_predicted_amount_in_home_currency_ab3", - "deals_properties_c00_hs_predicted_amount", - "deals_properties_c00_hs_predicted_amount_ab1", - "deals_properties_c00_hs_predicted_amount_ab2", - "deals_properties_c00_hs_predicted_amount_ab3", - "deals_properties_c0c_description", - "deals_properties_c0c_description_ab1", - "deals_properties_c0c_description_ab2", - "deals_properties_c0c_description_ab3", - "deals_properties_c18_hs_created_by_user_id", - "deals_properties_c18_hs_created_by_user_id_ab1", - "deals_properties_c18_hs_created_by_user_id_ab2", - "deals_properties_c18_hs_created_by_user_id_ab3", - "deals_properties_c8e_closed_won_reason", - "deals_properties_c8e_closed_won_reason_ab1", - "deals_properties_c8e_closed_won_reason_ab2", - "deals_properties_c8e_closed_won_reason_ab3", - "deals_properties_ca9_hs_updated_by_user_id", - "deals_properties_ca9_hs_updated_by_user_id_ab1", - "deals_properties_ca9_hs_updated_by_user_id_ab2", - "deals_properties_ca9_hs_updated_by_user_id_ab3", - "deals_properties_cc2_hs_time_in_contractsent", - "deals_properties_cc2_hs_time_in_contractsent_ab1", - "deals_properties_cc2_hs_time_in_contractsent_ab2", - "deals_properties_cc2_hs_time_in_contractsent_ab3", - "deals_properties_cc3_hs_date_exited_closedlost", - "deals_properties_cc3_hs_date_exited_closedlost_ab1", - "deals_properties_cc3_hs_date_exited_closedlost_ab2", - "deals_properties_cc3_hs_date_exited_closedlost_ab3", - "deals_properties_cdb_hs_time_in_9567448", - "deals_properties_cdb_hs_time_in_9567448_ab1", - "deals_properties_cdb_hs_time_in_9567448_ab2", - "deals_properties_cdb_hs_time_in_9567448_ab3", - "deals_properties_ce2_hs_all_team_ids", - "deals_properties_ce2_hs_all_team_ids_ab1", - "deals_properties_ce2_hs_all_team_ids_ab2", - "deals_properties_ce2_hs_all_team_ids_ab3", - "deals_properties_cf9_hs_time_in_appointmentscheduled", - "deals_properties_cf9_hs_time_in_appointmentscheduled_ab1", - "deals_properties_cf9_hs_time_in_appointmentscheduled_ab2", - "deals_properties_cf9_hs_time_in_appointmentscheduled_ab3", - "deals_properties_d85_hs_date_exited_qualifiedtobuy", - "deals_properties_d85_hs_date_exited_qualifiedtobuy_ab1", - "deals_properties_d85_hs_date_exited_qualifiedtobuy_ab2", - "deals_properties_d85_hs_date_exited_qualifiedtobuy_ab3", - "deals_properties_db7_hs_line_item_global_term_hs_recurring_billing_start_date", - "deals_properties_db7_hs_line_item_global_term_hs_recurring_billing_start_date_ab1", - "deals_properties_db7_hs_line_item_global_term_hs_recurring_billing_start_date_ab2", - "deals_properties_db7_hs_line_item_global_term_hs_recurring_billing_start_date_ab3", - "deals_properties_db9_hs_deal_stage_probability", - "deals_properties_db9_hs_deal_stage_probability_ab1", - "deals_properties_db9_hs_deal_stage_probability_ab2", - "deals_properties_db9_hs_deal_stage_probability_ab3", - "deals_properties_de9_hs_date_entered_closedwon", - "deals_properties_de9_hs_date_entered_closedwon_ab1", - "deals_properties_de9_hs_date_entered_closedwon_ab2", - "deals_properties_de9_hs_date_entered_closedwon_ab3", - "deals_properties_df7_hs_forecast_amount", - "deals_properties_df7_hs_forecast_amount_ab1", - "deals_properties_df7_hs_forecast_amount_ab2", - "deals_properties_df7_hs_forecast_amount_ab3", - "deals_properties_e4a_hs_line_item_global_term_recurringbillingfrequency_enabled", - "deals_properties_e4a_hs_line_item_global_term_recurringbillingfrequency_enabled_ab1", - "deals_properties_e4a_hs_line_item_global_term_recurringbillingfrequency_enabled_ab2", - "deals_properties_e4a_hs_line_item_global_term_recurringbillingfrequency_enabled_ab3", - "deals_properties_e6e_closedate", - "deals_properties_e6e_closedate_ab1", - "deals_properties_e6e_closedate_ab2", - "deals_properties_e6e_closedate_ab3", - "deals_properties_e99_hs_object_id", - "deals_properties_e99_hs_object_id_ab1", - "deals_properties_e99_hs_object_id_ab2", - "deals_properties_e99_hs_object_id_ab3", - "deals_properties_edd_hs_date_exited_customclosedwonstage", - "deals_properties_edd_hs_date_exited_customclosedwonstage_ab1", - "deals_properties_edd_hs_date_exited_customclosedwonstage_ab2", - "deals_properties_edd_hs_date_exited_customclosedwonstage_ab3", - "deals_properties_f0b_hs_date_entered_decisionmakerboughtin", - "deals_properties_f0b_hs_date_entered_decisionmakerboughtin_ab1", - "deals_properties_f0b_hs_date_entered_decisionmakerboughtin_ab2", - "deals_properties_f0b_hs_date_entered_decisionmakerboughtin_ab3", - "deals_properties_f0d_hs_closed_amount_in_home_currency", - "deals_properties_f0d_hs_closed_amount_in_home_currency_ab1", - "deals_properties_f0d_hs_closed_amount_in_home_currency_ab2", - "deals_properties_f0d_hs_closed_amount_in_home_currency_ab3", - "deals_properties_f29_hs_closed_amount", - "deals_properties_f29_hs_closed_amount_ab1", - "deals_properties_f29_hs_closed_amount_ab2", - "deals_properties_f29_hs_closed_amount_ab3", - "deals_properties_f57_hs_projected_amount_in_home_currency", - "deals_properties_f57_hs_projected_amount_in_home_currency_ab1", - "deals_properties_f57_hs_projected_amount_in_home_currency_ab2", - "deals_properties_f57_hs_projected_amount_in_home_currency_ab3", - "deals_properties_f61_hs_createdate", - "deals_properties_f61_hs_createdate_ab1", - "deals_properties_f61_hs_createdate_ab2", - "deals_properties_f61_hs_createdate_ab3", - "deals_properties_fb8_dealtype", - "deals_properties_fb8_dealtype_ab1", - "deals_properties_fb8_dealtype_ab2", - "deals_properties_fb8_dealtype_ab3", - "email_events_04b_location", - "email_events_04b_location_ab1", - "email_events_04b_location_ab2", - "email_events_04b_location_ab3", - "email_events_4bd_browser", - "email_events_4bd_browser_ab1", - "email_events_4bd_browser_ab2", - "email_events_4bd_browser_ab3", - "email_events_df5_sentby", - "email_events_df5_sentby_ab1", - "email_events_df5_sentby_ab2", - "email_events_df5_sentby_ab3", - "engagements_1c3_associations", - "engagements_1c3_associations_ab1", - "engagements_1c3_associations_ab2", - "engagements_1c3_associations_ab3", - "engagements_3c8_attachments", - "engagements_3c8_attachments_ab1", - "engagements_3c8_attachments_ab2", - "engagements_3c8_attachments_ab3", - "engagements_4ef_metadata", - "engagements_4ef_metadata_ab1", - "engagements_4ef_metadata_ab2", - "engagements_4ef_metadata_ab3", - "engagements_760_engagement", - "engagements_760_engagement_ab1", - "engagements_760_engagement_ab2", - "engagements_760_engagement_ab3", - "engagements_metadata_075_to", - "engagements_metadata_075_to_ab1", - "engagements_metadata_075_to_ab2", - "engagements_metadata_075_to_ab3", - "engagements_metadata_444_from", - "engagements_metadata_444_from_ab1", - "engagements_metadata_444_from_ab2", - "engagements_metadata_444_from_ab3", - "engagements_metadata_9a2_cc", - "engagements_metadata_9a2_cc_ab1", - "engagements_metadata_9a2_cc_ab2", - "engagements_metadata_9a2_cc_ab3", - "engagements_metadata_a27_bcc", - "engagements_metadata_a27_bcc_ab1", - "engagements_metadata_a27_bcc_ab2", - "engagements_metadata_a27_bcc_ab3", - "forms_aad_metadata", - "forms_aad_metadata_ab1", - "forms_aad_metadata_ab2", - "forms_aad_metadata_ab3", - "forms_beb_formfieldgroups", - "forms_beb_formfieldgroups_ab1", - "forms_beb_formfieldgroups_ab2", - "forms_beb_formfieldgroups_ab3", - "forms_formfieldgroups_58f_fields", - "forms_formfieldgroups_58f_fields_ab1", - "forms_formfieldgroups_58f_fields_ab2", - "forms_formfieldgroups_58f_fields_ab3", - "forms_formfieldgroups_77e_richtext", - "forms_formfieldgroups_77e_richtext_ab1", - "forms_formfieldgroups_77e_richtext_ab2", - "forms_formfieldgroups_77e_richtext_ab3", - "forms_formfieldgroups_fields_273_validation", - "forms_formfieldgroups_fields_273_validation_ab1", - "forms_formfieldgroups_fields_273_validation_ab2", - "forms_formfieldgroups_fields_273_validation_ab3", - "forms_formfieldgroups_fields_642_options", - "forms_formfieldgroups_fields_642_options_ab1", - "forms_formfieldgroups_fields_642_options_ab2", - "forms_formfieldgroups_fields_642_options_ab3", - "owners_1d3_remotelist", - "owners_1d3_remotelist_ab1", - "owners_1d3_remotelist_ab2", - "owners_1d3_remotelist_ab3", - "subscription_changes_88e_changes", - "subscription_changes_88e_changes_ab1", - "subscription_changes_88e_changes_ab2", - "subscription_changes_88e_changes_ab3", - "subscription_changes_changes_047_causedbyevent", - "subscription_changes_changes_047_causedbyevent_ab1", - "subscription_changes_changes_047_causedbyevent_ab2", - "subscription_changes_changes_047_causedbyevent_ab3", - "workflows_d02_contactlistids", - "workflows_d02_contactlistids_ab1", - "workflows_d02_contactlistids_ab2", - "workflows_d02_contactlistids_ab3" - ] -} diff --git a/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog_expected_nested_snowflake.json b/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog_expected_nested_snowflake.json deleted file mode 100644 index 09d63cfc505d81..00000000000000 --- a/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog_expected_nested_snowflake.json +++ /dev/null @@ -1,4244 +0,0 @@ -{ - "tables": [ - "CAMPAIGNS_CD2_COUNTERS", - "CAMPAIGNS_CD2_COUNTERS_AB1", - "CAMPAIGNS_CD2_COUNTERS_AB2", - "CAMPAIGNS_CD2_COUNTERS_AB3", - "COMPANIES_002_PROPERTY_HS_ANALYTICS_SOURCE_TIMESTAMP_EARLIEST_VALUE_25A3A52C", - "COMPANIES_002_PROPERTY_HS_ANALYTICS_SOURCE_TIMESTAMP_EARLIEST_VALUE_25A3A52C_AB1", - "COMPANIES_002_PROPERTY_HS_ANALYTICS_SOURCE_TIMESTAMP_EARLIEST_VALUE_25A3A52C_AB2", - "COMPANIES_002_PROPERTY_HS_ANALYTICS_SOURCE_TIMESTAMP_EARLIEST_VALUE_25A3A52C_AB3", - "COMPANIES_047_PROPERTY_RECENT_DEAL_AMOUNT", - "COMPANIES_047_PROPERTY_RECENT_DEAL_AMOUNT_AB1", - "COMPANIES_047_PROPERTY_RECENT_DEAL_AMOUNT_AB2", - "COMPANIES_047_PROPERTY_RECENT_DEAL_AMOUNT_AB3", - "COMPANIES_071_PROPERTY_HS_SALES_EMAIL_LAST_REPLIED", - "COMPANIES_071_PROPERTY_HS_SALES_EMAIL_LAST_REPLIED_AB1", - "COMPANIES_071_PROPERTY_HS_SALES_EMAIL_LAST_REPLIED_AB2", - "COMPANIES_071_PROPERTY_HS_SALES_EMAIL_LAST_REPLIED_AB3", - "COMPANIES_09C_PROPERTY_HUBSPOT_OWNER_ASSIGNEDDATE", - "COMPANIES_09C_PROPERTY_HUBSPOT_OWNER_ASSIGNEDDATE_AB1", - "COMPANIES_09C_PROPERTY_HUBSPOT_OWNER_ASSIGNEDDATE_AB2", - "COMPANIES_09C_PROPERTY_HUBSPOT_OWNER_ASSIGNEDDATE_AB3", - "COMPANIES_09D_PROPERTY_RECENT_DEAL_CLOSE_DATE", - "COMPANIES_09D_PROPERTY_RECENT_DEAL_CLOSE_DATE_AB1", - "COMPANIES_09D_PROPERTY_RECENT_DEAL_CLOSE_DATE_AB2", - "COMPANIES_09D_PROPERTY_RECENT_DEAL_CLOSE_DATE_AB3", - "COMPANIES_0BF_PROPERTY_TWITTERBIO", - "COMPANIES_0BF_PROPERTY_TWITTERBIO_AB1", - "COMPANIES_0BF_PROPERTY_TWITTERBIO_AB2", - "COMPANIES_0BF_PROPERTY_TWITTERBIO_AB3", - "COMPANIES_100_PROPERTY_PHONE", - "COMPANIES_100_PROPERTY_PHONE_AB1", - "COMPANIES_100_PROPERTY_PHONE_AB2", - "COMPANIES_100_PROPERTY_PHONE_AB3", - "COMPANIES_11D_PROPERTY_INDUSTRY", - "COMPANIES_11D_PROPERTY_INDUSTRY_AB1", - "COMPANIES_11D_PROPERTY_INDUSTRY_AB2", - "COMPANIES_11D_PROPERTY_INDUSTRY_AB3", - "COMPANIES_13D_PROPERTY_HS_CREATEDATE", - "COMPANIES_13D_PROPERTY_HS_CREATEDATE_AB1", - "COMPANIES_13D_PROPERTY_HS_CREATEDATE_AB2", - "COMPANIES_13D_PROPERTY_HS_CREATEDATE_AB3", - "COMPANIES_147_PROPERTY_COUNTRY", - "COMPANIES_147_PROPERTY_COUNTRY_AB1", - "COMPANIES_147_PROPERTY_COUNTRY_AB2", - "COMPANIES_147_PROPERTY_COUNTRY_AB3", - "COMPANIES_14A_PROPERTY_FIRST_CONTACT_CREATEDATE", - "COMPANIES_14A_PROPERTY_FIRST_CONTACT_CREATEDATE_AB1", - "COMPANIES_14A_PROPERTY_FIRST_CONTACT_CREATEDATE_AB2", - "COMPANIES_14A_PROPERTY_FIRST_CONTACT_CREATEDATE_AB3", - "COMPANIES_154_PROPERTY_NUM_ASSOCIATED_CONTACTS", - "COMPANIES_154_PROPERTY_NUM_ASSOCIATED_CONTACTS_AB1", - "COMPANIES_154_PROPERTY_NUM_ASSOCIATED_CONTACTS_AB2", - "COMPANIES_154_PROPERTY_NUM_ASSOCIATED_CONTACTS_AB3", - "COMPANIES_161_PROPERTY_HUBSPOT_TEAM_ID", - "COMPANIES_161_PROPERTY_HUBSPOT_TEAM_ID_AB1", - "COMPANIES_161_PROPERTY_HUBSPOT_TEAM_ID_AB2", - "COMPANIES_161_PROPERTY_HUBSPOT_TEAM_ID_AB3", - "COMPANIES_185_PROPERTY_RECENT_CONVERSION_EVENT_NAME_TIMESTAMP_LATEST_VALUE_66C820BF", - "COMPANIES_185_PROPERTY_RECENT_CONVERSION_EVENT_NAME_TIMESTAMP_LATEST_VALUE_66C820BF_AB1", - "COMPANIES_185_PROPERTY_RECENT_CONVERSION_EVENT_NAME_TIMESTAMP_LATEST_VALUE_66C820BF_AB2", - "COMPANIES_185_PROPERTY_RECENT_CONVERSION_EVENT_NAME_TIMESTAMP_LATEST_VALUE_66C820BF_AB3", - "COMPANIES_1B3_PROPERTY_LINKEDINBIO", - "COMPANIES_1B3_PROPERTY_LINKEDINBIO_AB1", - "COMPANIES_1B3_PROPERTY_LINKEDINBIO_AB2", - "COMPANIES_1B3_PROPERTY_LINKEDINBIO_AB3", - "COMPANIES_1BE_PROPERTY_HS_NUM_CONTACTS_WITH_BUYING_ROLES", - "COMPANIES_1BE_PROPERTY_HS_NUM_CONTACTS_WITH_BUYING_ROLES_AB1", - "COMPANIES_1BE_PROPERTY_HS_NUM_CONTACTS_WITH_BUYING_ROLES_AB2", - "COMPANIES_1BE_PROPERTY_HS_NUM_CONTACTS_WITH_BUYING_ROLES_AB3", - "COMPANIES_1BE_PROPERTY_HS_OBJECT_ID", - "COMPANIES_1BE_PROPERTY_HS_OBJECT_ID_AB1", - "COMPANIES_1BE_PROPERTY_HS_OBJECT_ID_AB2", - "COMPANIES_1BE_PROPERTY_HS_OBJECT_ID_AB3", - "COMPANIES_1BF_PROPERTY_HS_TARGET_ACCOUNT_PROBABILITY", - "COMPANIES_1BF_PROPERTY_HS_TARGET_ACCOUNT_PROBABILITY_AB1", - "COMPANIES_1BF_PROPERTY_HS_TARGET_ACCOUNT_PROBABILITY_AB2", - "COMPANIES_1BF_PROPERTY_HS_TARGET_ACCOUNT_PROBABILITY_AB3", - "COMPANIES_1EF_PROPERTY_HS_TOTAL_DEAL_VALUE", - "COMPANIES_1EF_PROPERTY_HS_TOTAL_DEAL_VALUE_AB1", - "COMPANIES_1EF_PROPERTY_HS_TOTAL_DEAL_VALUE_AB2", - "COMPANIES_1EF_PROPERTY_HS_TOTAL_DEAL_VALUE_AB3", - "COMPANIES_22C_PROPERTY_FIRST_CONVERSION_DATE_TIMESTAMP_EARLIEST_VALUE_61F58F2C", - "COMPANIES_22C_PROPERTY_FIRST_CONVERSION_DATE_TIMESTAMP_EARLIEST_VALUE_61F58F2C_AB1", - "COMPANIES_22C_PROPERTY_FIRST_CONVERSION_DATE_TIMESTAMP_EARLIEST_VALUE_61F58F2C_AB2", - "COMPANIES_22C_PROPERTY_FIRST_CONVERSION_DATE_TIMESTAMP_EARLIEST_VALUE_61F58F2C_AB3", - "COMPANIES_244_PROPERTIES_VERSIONS", - "COMPANIES_244_PROPERTIES_VERSIONS_AB1", - "COMPANIES_244_PROPERTIES_VERSIONS_AB2", - "COMPANIES_244_PROPERTIES_VERSIONS_AB3", - "COMPANIES_249_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP", - "COMPANIES_249_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB1", - "COMPANIES_249_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB2", - "COMPANIES_249_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB3", - "COMPANIES_24F_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP", - "COMPANIES_24F_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_AB1", - "COMPANIES_24F_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_AB2", - "COMPANIES_24F_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_AB3", - "COMPANIES_275_PROPERTY_FACEBOOK_COMPANY_PAGE", - "COMPANIES_275_PROPERTY_FACEBOOK_COMPANY_PAGE_AB1", - "COMPANIES_275_PROPERTY_FACEBOOK_COMPANY_PAGE_AB2", - "COMPANIES_275_PROPERTY_FACEBOOK_COMPANY_PAGE_AB3", - "COMPANIES_2A8_PROPERTY_STATE", - "COMPANIES_2A8_PROPERTY_STATE_AB1", - "COMPANIES_2A8_PROPERTY_STATE_AB2", - "COMPANIES_2A8_PROPERTY_STATE_AB3", - "COMPANIES_2E8_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN", - "COMPANIES_2E8_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB1", - "COMPANIES_2E8_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB2", - "COMPANIES_2E8_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB3", - "COMPANIES_2F1_PROPERTY_HS_ALL_TEAM_IDS", - "COMPANIES_2F1_PROPERTY_HS_ALL_TEAM_IDS_AB1", - "COMPANIES_2F1_PROPERTY_HS_ALL_TEAM_IDS_AB2", - "COMPANIES_2F1_PROPERTY_HS_ALL_TEAM_IDS_AB3", - "COMPANIES_336_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED", - "COMPANIES_336_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_AB1", - "COMPANIES_336_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_AB2", - "COMPANIES_336_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_AB3", - "COMPANIES_346_PROPERTY_HS_AVATAR_FILEMANAGER_KEY", - "COMPANIES_346_PROPERTY_HS_AVATAR_FILEMANAGER_KEY_AB1", - "COMPANIES_346_PROPERTY_HS_AVATAR_FILEMANAGER_KEY_AB2", - "COMPANIES_346_PROPERTY_HS_AVATAR_FILEMANAGER_KEY_AB3", - "COMPANIES_35A_PROPERTY_HS_LATEST_MEETING_ACTIVITY", - "COMPANIES_35A_PROPERTY_HS_LATEST_MEETING_ACTIVITY_AB1", - "COMPANIES_35A_PROPERTY_HS_LATEST_MEETING_ACTIVITY_AB2", - "COMPANIES_35A_PROPERTY_HS_LATEST_MEETING_ACTIVITY_AB3", - "COMPANIES_376_PROPERTY_FIRST_CONTACT_CREATEDATE_TIMESTAMP_EARLIEST_VALUE_78B50EEA", - "COMPANIES_376_PROPERTY_FIRST_CONTACT_CREATEDATE_TIMESTAMP_EARLIEST_VALUE_78B50EEA_AB1", - "COMPANIES_376_PROPERTY_FIRST_CONTACT_CREATEDATE_TIMESTAMP_EARLIEST_VALUE_78B50EEA_AB2", - "COMPANIES_376_PROPERTY_FIRST_CONTACT_CREATEDATE_TIMESTAMP_EARLIEST_VALUE_78B50EEA_AB3", - "COMPANIES_3C7_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN", - "COMPANIES_3C7_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB1", - "COMPANIES_3C7_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB2", - "COMPANIES_3C7_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB3", - "COMPANIES_3D7_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS", - "COMPANIES_3D7_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_AB1", - "COMPANIES_3D7_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_AB2", - "COMPANIES_3D7_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_AB3", - "COMPANIES_401_PROPERTY_FIRST_CONVERSION_EVENT_NAME_TIMESTAMP_EARLIEST_VALUE_68DDAE0A", - "COMPANIES_401_PROPERTY_FIRST_CONVERSION_EVENT_NAME_TIMESTAMP_EARLIEST_VALUE_68DDAE0A_AB1", - "COMPANIES_401_PROPERTY_FIRST_CONVERSION_EVENT_NAME_TIMESTAMP_EARLIEST_VALUE_68DDAE0A_AB2", - "COMPANIES_401_PROPERTY_FIRST_CONVERSION_EVENT_NAME_TIMESTAMP_EARLIEST_VALUE_68DDAE0A_AB3", - "COMPANIES_429_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM", - "COMPANIES_429_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB1", - "COMPANIES_429_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB2", - "COMPANIES_429_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB3", - "COMPANIES_44A_PROPERTY_HS_LAST_BOOKED_MEETING_DATE", - "COMPANIES_44A_PROPERTY_HS_LAST_BOOKED_MEETING_DATE_AB1", - "COMPANIES_44A_PROPERTY_HS_LAST_BOOKED_MEETING_DATE_AB2", - "COMPANIES_44A_PROPERTY_HS_LAST_BOOKED_MEETING_DATE_AB3", - "COMPANIES_477_PROPERTY_HS_TARGET_ACCOUNT", - "COMPANIES_477_PROPERTY_HS_TARGET_ACCOUNT_AB1", - "COMPANIES_477_PROPERTY_HS_TARGET_ACCOUNT_AB2", - "COMPANIES_477_PROPERTY_HS_TARGET_ACCOUNT_AB3", - "COMPANIES_47C_PROPERTY_HS_LAST_OPEN_TASK_DATE", - "COMPANIES_47C_PROPERTY_HS_LAST_OPEN_TASK_DATE_AB1", - "COMPANIES_47C_PROPERTY_HS_LAST_OPEN_TASK_DATE_AB2", - "COMPANIES_47C_PROPERTY_HS_LAST_OPEN_TASK_DATE_AB3", - "COMPANIES_494_PROPERTY_HS_LAST_LOGGED_CALL_DATE", - "COMPANIES_494_PROPERTY_HS_LAST_LOGGED_CALL_DATE_AB1", - "COMPANIES_494_PROPERTY_HS_LAST_LOGGED_CALL_DATE_AB2", - "COMPANIES_494_PROPERTY_HS_LAST_LOGGED_CALL_DATE_AB3", - "COMPANIES_4EE_PROPERTY_TOTAL_MONEY_RAISED", - "COMPANIES_4EE_PROPERTY_TOTAL_MONEY_RAISED_AB1", - "COMPANIES_4EE_PROPERTY_TOTAL_MONEY_RAISED_AB2", - "COMPANIES_4EE_PROPERTY_TOTAL_MONEY_RAISED_AB3", - "COMPANIES_528_PROPERTY_RECENT_CONVERSION_DATE_TIMESTAMP_LATEST_VALUE_72856DA1", - "COMPANIES_528_PROPERTY_RECENT_CONVERSION_DATE_TIMESTAMP_LATEST_VALUE_72856DA1_AB1", - "COMPANIES_528_PROPERTY_RECENT_CONVERSION_DATE_TIMESTAMP_LATEST_VALUE_72856DA1_AB2", - "COMPANIES_528_PROPERTY_RECENT_CONVERSION_DATE_TIMESTAMP_LATEST_VALUE_72856DA1_AB3", - "COMPANIES_541_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1", - "COMPANIES_541_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_AB1", - "COMPANIES_541_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_AB2", - "COMPANIES_541_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_AB3", - "COMPANIES_57C_PROPERTY_HS_LASTMODIFIEDDATE", - "COMPANIES_57C_PROPERTY_HS_LASTMODIFIEDDATE_AB1", - "COMPANIES_57C_PROPERTY_HS_LASTMODIFIEDDATE_AB2", - "COMPANIES_57C_PROPERTY_HS_LASTMODIFIEDDATE_AB3", - "COMPANIES_5E4_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_ACCC17AE", - "COMPANIES_5E4_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_ACCC17AE_AB1", - "COMPANIES_5E4_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_ACCC17AE_AB2", - "COMPANIES_5E4_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_ACCC17AE_AB3", - "COMPANIES_617_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_EARLIEST_VALUE_4757FE10", - "COMPANIES_617_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_EARLIEST_VALUE_4757FE10_AB1", - "COMPANIES_617_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_EARLIEST_VALUE_4757FE10_AB2", - "COMPANIES_617_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_EARLIEST_VALUE_4757FE10_AB3", - "COMPANIES_638_PROPERTY_HS_TARGET_ACCOUNT_RECOMMENDATION_STATE", - "COMPANIES_638_PROPERTY_HS_TARGET_ACCOUNT_RECOMMENDATION_STATE_AB1", - "COMPANIES_638_PROPERTY_HS_TARGET_ACCOUNT_RECOMMENDATION_STATE_AB2", - "COMPANIES_638_PROPERTY_HS_TARGET_ACCOUNT_RECOMMENDATION_STATE_AB3", - "COMPANIES_64E_PROPERTY_DESCRIPTION", - "COMPANIES_64E_PROPERTY_DESCRIPTION_AB1", - "COMPANIES_64E_PROPERTY_DESCRIPTION_AB2", - "COMPANIES_64E_PROPERTY_DESCRIPTION_AB3", - "COMPANIES_64F_PROPERTY_TIMEZONE", - "COMPANIES_64F_PROPERTY_TIMEZONE_AB1", - "COMPANIES_64F_PROPERTY_TIMEZONE_AB2", - "COMPANIES_64F_PROPERTY_TIMEZONE_AB3", - "COMPANIES_6B5_PROPERTY_HS_ALL_ACCESSIBLE_TEAM_IDS", - "COMPANIES_6B5_PROPERTY_HS_ALL_ACCESSIBLE_TEAM_IDS_AB1", - "COMPANIES_6B5_PROPERTY_HS_ALL_ACCESSIBLE_TEAM_IDS_AB2", - "COMPANIES_6B5_PROPERTY_HS_ALL_ACCESSIBLE_TEAM_IDS_AB3", - "COMPANIES_6FB_PROPERTY_TYPE", - "COMPANIES_6FB_PROPERTY_TYPE_AB1", - "COMPANIES_6FB_PROPERTY_TYPE_AB2", - "COMPANIES_6FB_PROPERTY_TYPE_AB3", - "COMPANIES_705_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_CARDINALITY_SUM_E46E85B0", - "COMPANIES_705_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_CARDINALITY_SUM_E46E85B0_AB1", - "COMPANIES_705_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_CARDINALITY_SUM_E46E85B0_AB2", - "COMPANIES_705_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_CARDINALITY_SUM_E46E85B0_AB3", - "COMPANIES_719_PROPERTY_NUM_CONVERSION_EVENTS_CARDINALITY_SUM_D095F14B", - "COMPANIES_719_PROPERTY_NUM_CONVERSION_EVENTS_CARDINALITY_SUM_D095F14B_AB1", - "COMPANIES_719_PROPERTY_NUM_CONVERSION_EVENTS_CARDINALITY_SUM_D095F14B_AB2", - "COMPANIES_719_PROPERTY_NUM_CONVERSION_EVENTS_CARDINALITY_SUM_D095F14B_AB3", - "COMPANIES_749_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE", - "COMPANIES_749_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB1", - "COMPANIES_749_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB2", - "COMPANIES_749_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB3", - "COMPANIES_777_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP", - "COMPANIES_777_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_AB1", - "COMPANIES_777_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_AB2", - "COMPANIES_777_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_AB3", - "COMPANIES_7A7_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_TIMESTAMP_EARLIEST_VALUE_9B2F1FA1", - "COMPANIES_7A7_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_TIMESTAMP_EARLIEST_VALUE_9B2F1FA1_AB1", - "COMPANIES_7A7_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_TIMESTAMP_EARLIEST_VALUE_9B2F1FA1_AB2", - "COMPANIES_7A7_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_TIMESTAMP_EARLIEST_VALUE_9B2F1FA1_AB3", - "COMPANIES_7D6_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_TIMESTAMP_EARLIEST_VALUE_9B2F9400", - "COMPANIES_7D6_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_TIMESTAMP_EARLIEST_VALUE_9B2F9400_AB1", - "COMPANIES_7D6_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_TIMESTAMP_EARLIEST_VALUE_9B2F9400_AB2", - "COMPANIES_7D6_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_TIMESTAMP_EARLIEST_VALUE_9B2F9400_AB3", - "COMPANIES_7DA_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN", - "COMPANIES_7DA_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB1", - "COMPANIES_7DA_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB2", - "COMPANIES_7DA_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB3", - "COMPANIES_7FF_PROPERTIES", - "COMPANIES_7FF_PROPERTIES_AB1", - "COMPANIES_7FF_PROPERTIES_AB2", - "COMPANIES_7FF_PROPERTIES_AB3", - "COMPANIES_851_PROPERTY_TWITTERFOLLOWERS", - "COMPANIES_851_PROPERTY_TWITTERFOLLOWERS_AB1", - "COMPANIES_851_PROPERTY_TWITTERFOLLOWERS_AB2", - "COMPANIES_851_PROPERTY_TWITTERFOLLOWERS_AB3", - "COMPANIES_888_PROPERTY_HS_PARENT_COMPANY_ID", - "COMPANIES_888_PROPERTY_HS_PARENT_COMPANY_ID_AB1", - "COMPANIES_888_PROPERTY_HS_PARENT_COMPANY_ID_AB2", - "COMPANIES_888_PROPERTY_HS_PARENT_COMPANY_ID_AB3", - "COMPANIES_8A9_PROPERTY_WEBSITE", - "COMPANIES_8A9_PROPERTY_WEBSITE_AB1", - "COMPANIES_8A9_PROPERTY_WEBSITE_AB2", - "COMPANIES_8A9_PROPERTY_WEBSITE_AB3", - "COMPANIES_8C4_PROPERTY_CLOSEDATE", - "COMPANIES_8C4_PROPERTY_CLOSEDATE_AB1", - "COMPANIES_8C4_PROPERTY_CLOSEDATE_AB2", - "COMPANIES_8C4_PROPERTY_CLOSEDATE_AB3", - "COMPANIES_8C9_PROPERTY_HS_NUM_BLOCKERS", - "COMPANIES_8C9_PROPERTY_HS_NUM_BLOCKERS_AB1", - "COMPANIES_8C9_PROPERTY_HS_NUM_BLOCKERS_AB2", - "COMPANIES_8C9_PROPERTY_HS_NUM_BLOCKERS_AB3", - "COMPANIES_8DF_PROPERTY_NUM_CONTACTED_NOTES", - "COMPANIES_8DF_PROPERTY_NUM_CONTACTED_NOTES_AB1", - "COMPANIES_8DF_PROPERTY_NUM_CONTACTED_NOTES_AB2", - "COMPANIES_8DF_PROPERTY_NUM_CONTACTED_NOTES_AB3", - "COMPANIES_8FE_PROPERTY_CREATEDATE", - "COMPANIES_8FE_PROPERTY_CREATEDATE_AB1", - "COMPANIES_8FE_PROPERTY_CREATEDATE_AB2", - "COMPANIES_8FE_PROPERTY_CREATEDATE_AB3", - "COMPANIES_905_PROPERTY_ZIP", - "COMPANIES_905_PROPERTY_ZIP_AB1", - "COMPANIES_905_PROPERTY_ZIP_AB2", - "COMPANIES_905_PROPERTY_ZIP_AB3", - "COMPANIES_90D_PROPERTY_HS_ANALYTICS_SOURCE", - "COMPANIES_90D_PROPERTY_HS_ANALYTICS_SOURCE_AB1", - "COMPANIES_90D_PROPERTY_HS_ANALYTICS_SOURCE_AB2", - "COMPANIES_90D_PROPERTY_HS_ANALYTICS_SOURCE_AB3", - "COMPANIES_91A_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2", - "COMPANIES_91A_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_AB1", - "COMPANIES_91A_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_AB2", - "COMPANIES_91A_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_AB3", - "COMPANIES_944_PROPERTY_FACEBOOKFANS", - "COMPANIES_944_PROPERTY_FACEBOOKFANS_AB1", - "COMPANIES_944_PROPERTY_FACEBOOKFANS_AB2", - "COMPANIES_944_PROPERTY_FACEBOOKFANS_AB3", - "COMPANIES_960_PROPERTY_HS_NUM_DECISION_MAKERS", - "COMPANIES_960_PROPERTY_HS_NUM_DECISION_MAKERS_AB1", - "COMPANIES_960_PROPERTY_HS_NUM_DECISION_MAKERS_AB2", - "COMPANIES_960_PROPERTY_HS_NUM_DECISION_MAKERS_AB3", - "COMPANIES_97F_PROPERTY_GOOGLEPLUS_PAGE", - "COMPANIES_97F_PROPERTY_GOOGLEPLUS_PAGE_AB1", - "COMPANIES_97F_PROPERTY_GOOGLEPLUS_PAGE_AB2", - "COMPANIES_97F_PROPERTY_GOOGLEPLUS_PAGE_AB3", - "COMPANIES_9B2_PROPERTY_ANNUALREVENUE", - "COMPANIES_9B2_PROPERTY_ANNUALREVENUE_AB1", - "COMPANIES_9B2_PROPERTY_ANNUALREVENUE_AB2", - "COMPANIES_9B2_PROPERTY_ANNUALREVENUE_AB3", - "COMPANIES_9D5_PROPERTY_NUM_NOTES", - "COMPANIES_9D5_PROPERTY_NUM_NOTES_AB1", - "COMPANIES_9D5_PROPERTY_NUM_NOTES_AB2", - "COMPANIES_9D5_PROPERTY_NUM_NOTES_AB3", - "COMPANIES_9D9_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP", - "COMPANIES_9D9_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB1", - "COMPANIES_9D9_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB2", - "COMPANIES_9D9_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB3", - "COMPANIES_ACC_PROPERTY_NUM_ASSOCIATED_DEALS", - "COMPANIES_ACC_PROPERTY_NUM_ASSOCIATED_DEALS_AB1", - "COMPANIES_ACC_PROPERTY_NUM_ASSOCIATED_DEALS_AB2", - "COMPANIES_ACC_PROPERTY_NUM_ASSOCIATED_DEALS_AB3", - "COMPANIES_B26_PROPERTY_LINKEDIN_COMPANY_PAGE", - "COMPANIES_B26_PROPERTY_LINKEDIN_COMPANY_PAGE_AB1", - "COMPANIES_B26_PROPERTY_LINKEDIN_COMPANY_PAGE_AB2", - "COMPANIES_B26_PROPERTY_LINKEDIN_COMPANY_PAGE_AB3", - "COMPANIES_B38_PROPERTY_CLOSEDATE_TIMESTAMP_EARLIEST_VALUE_A2A17E6E", - "COMPANIES_B38_PROPERTY_CLOSEDATE_TIMESTAMP_EARLIEST_VALUE_A2A17E6E_AB1", - "COMPANIES_B38_PROPERTY_CLOSEDATE_TIMESTAMP_EARLIEST_VALUE_A2A17E6E_AB2", - "COMPANIES_B38_PROPERTY_CLOSEDATE_TIMESTAMP_EARLIEST_VALUE_A2A17E6E_AB3", - "COMPANIES_B4F_PROPERTY_HS_NUM_CHILD_COMPANIES", - "COMPANIES_B4F_PROPERTY_HS_NUM_CHILD_COMPANIES_AB1", - "COMPANIES_B4F_PROPERTY_HS_NUM_CHILD_COMPANIES_AB2", - "COMPANIES_B4F_PROPERTY_HS_NUM_CHILD_COMPANIES_AB3", - "COMPANIES_B66_PROPERTY_ADDRESS", - "COMPANIES_B66_PROPERTY_ADDRESS_AB1", - "COMPANIES_B66_PROPERTY_ADDRESS_AB2", - "COMPANIES_B66_PROPERTY_ADDRESS_AB3", - "COMPANIES_B6E_PROPERTY_HS_ALL_OWNER_IDS", - "COMPANIES_B6E_PROPERTY_HS_ALL_OWNER_IDS_AB1", - "COMPANIES_B6E_PROPERTY_HS_ALL_OWNER_IDS_AB2", - "COMPANIES_B6E_PROPERTY_HS_ALL_OWNER_IDS_AB3", - "COMPANIES_B77_PROPERTY_DAYS_TO_CLOSE", - "COMPANIES_B77_PROPERTY_DAYS_TO_CLOSE_AB1", - "COMPANIES_B77_PROPERTY_DAYS_TO_CLOSE_AB2", - "COMPANIES_B77_PROPERTY_DAYS_TO_CLOSE_AB3", - "COMPANIES_BA0_PROPERTY_HUBSPOT_OWNER_ID", - "COMPANIES_BA0_PROPERTY_HUBSPOT_OWNER_ID_AB1", - "COMPANIES_BA0_PROPERTY_HUBSPOT_OWNER_ID_AB2", - "COMPANIES_BA0_PROPERTY_HUBSPOT_OWNER_ID_AB3", - "COMPANIES_BD5_PROPERTY_WEB_TECHNOLOGIES", - "COMPANIES_BD5_PROPERTY_WEB_TECHNOLOGIES_AB1", - "COMPANIES_BD5_PROPERTY_WEB_TECHNOLOGIES_AB2", - "COMPANIES_BD5_PROPERTY_WEB_TECHNOLOGIES_AB3", - "COMPANIES_BDB_PROPERTY_LIFECYCLESTAGE", - "COMPANIES_BDB_PROPERTY_LIFECYCLESTAGE_AB1", - "COMPANIES_BDB_PROPERTY_LIFECYCLESTAGE_AB2", - "COMPANIES_BDB_PROPERTY_LIFECYCLESTAGE_AB3", - "COMPANIES_BEC_PROPERTY_HS_ANALYTICS_NUM_VISITS_CARDINALITY_SUM_53D952A6", - "COMPANIES_BEC_PROPERTY_HS_ANALYTICS_NUM_VISITS_CARDINALITY_SUM_53D952A6_AB1", - "COMPANIES_BEC_PROPERTY_HS_ANALYTICS_NUM_VISITS_CARDINALITY_SUM_53D952A6_AB2", - "COMPANIES_BEC_PROPERTY_HS_ANALYTICS_NUM_VISITS_CARDINALITY_SUM_53D952A6_AB3", - "COMPANIES_C41_PROPERTY_IS_PUBLIC", - "COMPANIES_C41_PROPERTY_IS_PUBLIC_AB1", - "COMPANIES_C41_PROPERTY_IS_PUBLIC_AB2", - "COMPANIES_C41_PROPERTY_IS_PUBLIC_AB3", - "COMPANIES_C5A_PROPERTY_HS_IS_TARGET_ACCOUNT", - "COMPANIES_C5A_PROPERTY_HS_IS_TARGET_ACCOUNT_AB1", - "COMPANIES_C5A_PROPERTY_HS_IS_TARGET_ACCOUNT_AB2", - "COMPANIES_C5A_PROPERTY_HS_IS_TARGET_ACCOUNT_AB3", - "COMPANIES_C5D_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_TIMESTAMP_LATEST_VALUE_999A0FCE", - "COMPANIES_C5D_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_TIMESTAMP_LATEST_VALUE_999A0FCE_AB1", - "COMPANIES_C5D_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_TIMESTAMP_LATEST_VALUE_999A0FCE_AB2", - "COMPANIES_C5D_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_TIMESTAMP_LATEST_VALUE_999A0FCE_AB3", - "COMPANIES_C65_PROPERTY_NOTES_LAST_UPDATED", - "COMPANIES_C65_PROPERTY_NOTES_LAST_UPDATED_AB1", - "COMPANIES_C65_PROPERTY_NOTES_LAST_UPDATED_AB2", - "COMPANIES_C65_PROPERTY_NOTES_LAST_UPDATED_AB3", - "COMPANIES_CA3_PROPERTY_HS_IDEAL_CUSTOMER_PROFILE", - "COMPANIES_CA3_PROPERTY_HS_IDEAL_CUSTOMER_PROFILE_AB1", - "COMPANIES_CA3_PROPERTY_HS_IDEAL_CUSTOMER_PROFILE_AB2", - "COMPANIES_CA3_PROPERTY_HS_IDEAL_CUSTOMER_PROFILE_AB3", - "COMPANIES_CCF_PROPERTY_HS_LEAD_STATUS", - "COMPANIES_CCF_PROPERTY_HS_LEAD_STATUS_AB1", - "COMPANIES_CCF_PROPERTY_HS_LEAD_STATUS_AB2", - "COMPANIES_CCF_PROPERTY_HS_LEAD_STATUS_AB3", - "COMPANIES_CE3_PROPERTY_HS_TARGET_ACCOUNT_RECOMMENDATION_SNOOZE_TIME", - "COMPANIES_CE3_PROPERTY_HS_TARGET_ACCOUNT_RECOMMENDATION_SNOOZE_TIME_AB1", - "COMPANIES_CE3_PROPERTY_HS_TARGET_ACCOUNT_RECOMMENDATION_SNOOZE_TIME_AB2", - "COMPANIES_CE3_PROPERTY_HS_TARGET_ACCOUNT_RECOMMENDATION_SNOOZE_TIME_AB3", - "COMPANIES_D62_PROPERTY_TWITTERHANDLE", - "COMPANIES_D62_PROPERTY_TWITTERHANDLE_AB1", - "COMPANIES_D62_PROPERTY_TWITTERHANDLE_AB2", - "COMPANIES_D62_PROPERTY_TWITTERHANDLE_AB3", - "COMPANIES_D75_PROPERTY_NOTES_NEXT_ACTIVITY_DATE", - "COMPANIES_D75_PROPERTY_NOTES_NEXT_ACTIVITY_DATE_AB1", - "COMPANIES_D75_PROPERTY_NOTES_NEXT_ACTIVITY_DATE_AB2", - "COMPANIES_D75_PROPERTY_NOTES_NEXT_ACTIVITY_DATE_AB3", - "COMPANIES_D82_PROPERTY_CITY", - "COMPANIES_D82_PROPERTY_CITY_AB1", - "COMPANIES_D82_PROPERTY_CITY_AB2", - "COMPANIES_D82_PROPERTY_CITY_AB3", - "COMPANIES_D8C_PROPERTY_HS_LAST_SALES_ACTIVITY_TIMESTAMP", - "COMPANIES_D8C_PROPERTY_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB1", - "COMPANIES_D8C_PROPERTY_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB2", - "COMPANIES_D8C_PROPERTY_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB3", - "COMPANIES_DB7_PROPERTY_HS_ANALYTICS_NUM_VISITS", - "COMPANIES_DB7_PROPERTY_HS_ANALYTICS_NUM_VISITS_AB1", - "COMPANIES_DB7_PROPERTY_HS_ANALYTICS_NUM_VISITS_AB2", - "COMPANIES_DB7_PROPERTY_HS_ANALYTICS_NUM_VISITS_AB3", - "COMPANIES_DD0_PROPERTY_ABOUT_US", - "COMPANIES_DD0_PROPERTY_ABOUT_US_AB1", - "COMPANIES_DD0_PROPERTY_ABOUT_US_AB2", - "COMPANIES_DD0_PROPERTY_ABOUT_US_AB3", - "COMPANIES_DDF_PROPERTY_NUMBEROFEMPLOYEES", - "COMPANIES_DDF_PROPERTY_NUMBEROFEMPLOYEES_AB1", - "COMPANIES_DDF_PROPERTY_NUMBEROFEMPLOYEES_AB2", - "COMPANIES_DDF_PROPERTY_NUMBEROFEMPLOYEES_AB3", - "COMPANIES_DE4_PROPERTY_TOTAL_REVENUE", - "COMPANIES_DE4_PROPERTY_TOTAL_REVENUE_AB1", - "COMPANIES_DE4_PROPERTY_TOTAL_REVENUE_AB2", - "COMPANIES_DE4_PROPERTY_TOTAL_REVENUE_AB3", - "COMPANIES_E0E_PROPERTY_HS_MERGED_OBJECT_IDS", - "COMPANIES_E0E_PROPERTY_HS_MERGED_OBJECT_IDS_AB1", - "COMPANIES_E0E_PROPERTY_HS_MERGED_OBJECT_IDS_AB2", - "COMPANIES_E0E_PROPERTY_HS_MERGED_OBJECT_IDS_AB3", - "COMPANIES_E13_PROPERTY_FOUNDED_YEAR", - "COMPANIES_E13_PROPERTY_FOUNDED_YEAR_AB1", - "COMPANIES_E13_PROPERTY_FOUNDED_YEAR_AB2", - "COMPANIES_E13_PROPERTY_FOUNDED_YEAR_AB3", - "COMPANIES_E27_PROPERTY_ADDRESS2", - "COMPANIES_E27_PROPERTY_ADDRESS2_AB1", - "COMPANIES_E27_PROPERTY_ADDRESS2_AB2", - "COMPANIES_E27_PROPERTY_ADDRESS2_AB3", - "COMPANIES_E42_PROPERTY_HS_USER_IDS_OF_ALL_OWNERS", - "COMPANIES_E42_PROPERTY_HS_USER_IDS_OF_ALL_OWNERS_AB1", - "COMPANIES_E42_PROPERTY_HS_USER_IDS_OF_ALL_OWNERS_AB2", - "COMPANIES_E42_PROPERTY_HS_USER_IDS_OF_ALL_OWNERS_AB3", - "COMPANIES_E46_PROPERTY_HS_UPDATED_BY_USER_ID", - "COMPANIES_E46_PROPERTY_HS_UPDATED_BY_USER_ID_AB1", - "COMPANIES_E46_PROPERTY_HS_UPDATED_BY_USER_ID_AB2", - "COMPANIES_E46_PROPERTY_HS_UPDATED_BY_USER_ID_AB3", - "COMPANIES_E48_PROPERTY_FIRST_DEAL_CREATED_DATE", - "COMPANIES_E48_PROPERTY_FIRST_DEAL_CREATED_DATE_AB1", - "COMPANIES_E48_PROPERTY_FIRST_DEAL_CREATED_DATE_AB2", - "COMPANIES_E48_PROPERTY_FIRST_DEAL_CREATED_DATE_AB3", - "COMPANIES_E5F_PROPERTY_DOMAIN", - "COMPANIES_E5F_PROPERTY_DOMAIN_AB1", - "COMPANIES_E5F_PROPERTY_DOMAIN_AB2", - "COMPANIES_E5F_PROPERTY_DOMAIN_AB3", - "COMPANIES_E90_PROPERTY_HS_NUM_OPEN_DEALS", - "COMPANIES_E90_PROPERTY_HS_NUM_OPEN_DEALS_AB1", - "COMPANIES_E90_PROPERTY_HS_NUM_OPEN_DEALS_AB2", - "COMPANIES_E90_PROPERTY_HS_NUM_OPEN_DEALS_AB3", - "COMPANIES_E9F_PROPERTY_HS_ADDITIONAL_DOMAINS", - "COMPANIES_E9F_PROPERTY_HS_ADDITIONAL_DOMAINS_AB1", - "COMPANIES_E9F_PROPERTY_HS_ADDITIONAL_DOMAINS_AB2", - "COMPANIES_E9F_PROPERTY_HS_ADDITIONAL_DOMAINS_AB3", - "COMPANIES_EAC_PROPERTY_HS_CREATED_BY_USER_ID", - "COMPANIES_EAC_PROPERTY_HS_CREATED_BY_USER_ID_AB1", - "COMPANIES_EAC_PROPERTY_HS_CREATED_BY_USER_ID_AB2", - "COMPANIES_EAC_PROPERTY_HS_CREATED_BY_USER_ID_AB3", - "COMPANIES_EBE_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_TIMESTAMP_LATEST_VALUE_4E16365A", - "COMPANIES_EBE_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_TIMESTAMP_LATEST_VALUE_4E16365A_AB1", - "COMPANIES_EBE_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_TIMESTAMP_LATEST_VALUE_4E16365A_AB2", - "COMPANIES_EBE_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_TIMESTAMP_LATEST_VALUE_4E16365A_AB3", - "COMPANIES_ED2_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_LATEST_VALUE_81A64E30", - "COMPANIES_ED2_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_LATEST_VALUE_81A64E30_AB1", - "COMPANIES_ED2_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_LATEST_VALUE_81A64E30_AB2", - "COMPANIES_ED2_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_LATEST_VALUE_81A64E30_AB3", - "COMPANIES_F07_PROPERTY_NAME", - "COMPANIES_F07_PROPERTY_NAME_AB1", - "COMPANIES_F07_PROPERTY_NAME_AB2", - "COMPANIES_F07_PROPERTY_NAME_AB3", - "COMPANIES_F20_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_11E3A63A", - "COMPANIES_F20_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_11E3A63A_AB1", - "COMPANIES_F20_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_11E3A63A_AB2", - "COMPANIES_F20_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_11E3A63A_AB3", - "COMPANIES_F39_PROPERTY_HS_PREDICTIVECONTACTSCORE_V2_NEXT_MAX_MAX_D4E58C1E", - "COMPANIES_F39_PROPERTY_HS_PREDICTIVECONTACTSCORE_V2_NEXT_MAX_MAX_D4E58C1E_AB1", - "COMPANIES_F39_PROPERTY_HS_PREDICTIVECONTACTSCORE_V2_NEXT_MAX_MAX_D4E58C1E_AB2", - "COMPANIES_F39_PROPERTY_HS_PREDICTIVECONTACTSCORE_V2_NEXT_MAX_MAX_D4E58C1E_AB3", - "COMPANIES_F76_PROPERTY_HS_LAST_SALES_ACTIVITY_DATE", - "COMPANIES_F76_PROPERTY_HS_LAST_SALES_ACTIVITY_DATE_AB1", - "COMPANIES_F76_PROPERTY_HS_LAST_SALES_ACTIVITY_DATE_AB2", - "COMPANIES_F76_PROPERTY_HS_LAST_SALES_ACTIVITY_DATE_AB3", - "COMPANIES_FBD_PROPERTY_NOTES_LAST_CONTACTED", - "COMPANIES_FBD_PROPERTY_NOTES_LAST_CONTACTED_AB1", - "COMPANIES_FBD_PROPERTY_NOTES_LAST_CONTACTED_AB2", - "COMPANIES_FBD_PROPERTY_NOTES_LAST_CONTACTED_AB3", - "COMPANIES_PROPERTIES_004_NOTES_LAST_CONTACTED", - "COMPANIES_PROPERTIES_004_NOTES_LAST_CONTACTED_AB1", - "COMPANIES_PROPERTIES_004_NOTES_LAST_CONTACTED_AB2", - "COMPANIES_PROPERTIES_004_NOTES_LAST_CONTACTED_AB3", - "COMPANIES_PROPERTIES_018_HS_LATEST_MEETING_ACTIVITY", - "COMPANIES_PROPERTIES_018_HS_LATEST_MEETING_ACTIVITY_AB1", - "COMPANIES_PROPERTIES_018_HS_LATEST_MEETING_ACTIVITY_AB2", - "COMPANIES_PROPERTIES_018_HS_LATEST_MEETING_ACTIVITY_AB3", - "COMPANIES_PROPERTIES_01E_RECENT_DEAL_AMOUNT", - "COMPANIES_PROPERTIES_01E_RECENT_DEAL_AMOUNT_AB1", - "COMPANIES_PROPERTIES_01E_RECENT_DEAL_AMOUNT_AB2", - "COMPANIES_PROPERTIES_01E_RECENT_DEAL_AMOUNT_AB3", - "COMPANIES_PROPERTIES_05C_HS_NUM_CONTACTS_WITH_BUYING_ROLES", - "COMPANIES_PROPERTIES_05C_HS_NUM_CONTACTS_WITH_BUYING_ROLES_AB1", - "COMPANIES_PROPERTIES_05C_HS_NUM_CONTACTS_WITH_BUYING_ROLES_AB2", - "COMPANIES_PROPERTIES_05C_HS_NUM_CONTACTS_WITH_BUYING_ROLES_AB3", - "COMPANIES_PROPERTIES_08D_NUMBEROFEMPLOYEES", - "COMPANIES_PROPERTIES_08D_NUMBEROFEMPLOYEES_AB1", - "COMPANIES_PROPERTIES_08D_NUMBEROFEMPLOYEES_AB2", - "COMPANIES_PROPERTIES_08D_NUMBEROFEMPLOYEES_AB3", - "COMPANIES_PROPERTIES_0B7_FIRST_CONTACT_CREATEDATE_TIMESTAMP_EARLIEST_VALUE_78B50EEA", - "COMPANIES_PROPERTIES_0B7_FIRST_CONTACT_CREATEDATE_TIMESTAMP_EARLIEST_VALUE_78B50EEA_AB1", - "COMPANIES_PROPERTIES_0B7_FIRST_CONTACT_CREATEDATE_TIMESTAMP_EARLIEST_VALUE_78B50EEA_AB2", - "COMPANIES_PROPERTIES_0B7_FIRST_CONTACT_CREATEDATE_TIMESTAMP_EARLIEST_VALUE_78B50EEA_AB3", - "COMPANIES_PROPERTIES_0B9_HS_ANALYTICS_SOURCE_DATA_1", - "COMPANIES_PROPERTIES_0B9_HS_ANALYTICS_SOURCE_DATA_1_AB1", - "COMPANIES_PROPERTIES_0B9_HS_ANALYTICS_SOURCE_DATA_1_AB2", - "COMPANIES_PROPERTIES_0B9_HS_ANALYTICS_SOURCE_DATA_1_AB3", - "COMPANIES_PROPERTIES_0BC_RECENT_DEAL_CLOSE_DATE", - "COMPANIES_PROPERTIES_0BC_RECENT_DEAL_CLOSE_DATE_AB1", - "COMPANIES_PROPERTIES_0BC_RECENT_DEAL_CLOSE_DATE_AB2", - "COMPANIES_PROPERTIES_0BC_RECENT_DEAL_CLOSE_DATE_AB3", - "COMPANIES_PROPERTIES_0CB_HS_ANALYTICS_FIRST_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_11E3A63A", - "COMPANIES_PROPERTIES_0CB_HS_ANALYTICS_FIRST_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_11E3A63A_AB1", - "COMPANIES_PROPERTIES_0CB_HS_ANALYTICS_FIRST_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_11E3A63A_AB2", - "COMPANIES_PROPERTIES_0CB_HS_ANALYTICS_FIRST_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_11E3A63A_AB3", - "COMPANIES_PROPERTIES_100_TWITTERHANDLE", - "COMPANIES_PROPERTIES_100_TWITTERHANDLE_AB1", - "COMPANIES_PROPERTIES_100_TWITTERHANDLE_AB2", - "COMPANIES_PROPERTIES_100_TWITTERHANDLE_AB3", - "COMPANIES_PROPERTIES_121_HS_ANALYTICS_SOURCE", - "COMPANIES_PROPERTIES_121_HS_ANALYTICS_SOURCE_AB1", - "COMPANIES_PROPERTIES_121_HS_ANALYTICS_SOURCE_AB2", - "COMPANIES_PROPERTIES_121_HS_ANALYTICS_SOURCE_AB3", - "COMPANIES_PROPERTIES_138_TWITTERBIO", - "COMPANIES_PROPERTIES_138_TWITTERBIO_AB1", - "COMPANIES_PROPERTIES_138_TWITTERBIO_AB2", - "COMPANIES_PROPERTIES_138_TWITTERBIO_AB3", - "COMPANIES_PROPERTIES_177_LINKEDIN_COMPANY_PAGE", - "COMPANIES_PROPERTIES_177_LINKEDIN_COMPANY_PAGE_AB1", - "COMPANIES_PROPERTIES_177_LINKEDIN_COMPANY_PAGE_AB2", - "COMPANIES_PROPERTIES_177_LINKEDIN_COMPANY_PAGE_AB3", - "COMPANIES_PROPERTIES_181_ABOUT_US", - "COMPANIES_PROPERTIES_181_ABOUT_US_AB1", - "COMPANIES_PROPERTIES_181_ABOUT_US_AB2", - "COMPANIES_PROPERTIES_181_ABOUT_US_AB3", - "COMPANIES_PROPERTIES_1AB_HS_LAST_LOGGED_CALL_DATE", - "COMPANIES_PROPERTIES_1AB_HS_LAST_LOGGED_CALL_DATE_AB1", - "COMPANIES_PROPERTIES_1AB_HS_LAST_LOGGED_CALL_DATE_AB2", - "COMPANIES_PROPERTIES_1AB_HS_LAST_LOGGED_CALL_DATE_AB3", - "COMPANIES_PROPERTIES_1B6_GOOGLEPLUS_PAGE", - "COMPANIES_PROPERTIES_1B6_GOOGLEPLUS_PAGE_AB1", - "COMPANIES_PROPERTIES_1B6_GOOGLEPLUS_PAGE_AB2", - "COMPANIES_PROPERTIES_1B6_GOOGLEPLUS_PAGE_AB3", - "COMPANIES_PROPERTIES_1D0_TIMEZONE", - "COMPANIES_PROPERTIES_1D0_TIMEZONE_AB1", - "COMPANIES_PROPERTIES_1D0_TIMEZONE_AB2", - "COMPANIES_PROPERTIES_1D0_TIMEZONE_AB3", - "COMPANIES_PROPERTIES_1D7_INDUSTRY", - "COMPANIES_PROPERTIES_1D7_INDUSTRY_AB1", - "COMPANIES_PROPERTIES_1D7_INDUSTRY_AB2", - "COMPANIES_PROPERTIES_1D7_INDUSTRY_AB3", - "COMPANIES_PROPERTIES_1FE_RECENT_CONVERSION_EVENT_NAME_TIMESTAMP_LATEST_VALUE_66C820BF", - "COMPANIES_PROPERTIES_1FE_RECENT_CONVERSION_EVENT_NAME_TIMESTAMP_LATEST_VALUE_66C820BF_AB1", - "COMPANIES_PROPERTIES_1FE_RECENT_CONVERSION_EVENT_NAME_TIMESTAMP_LATEST_VALUE_66C820BF_AB2", - "COMPANIES_PROPERTIES_1FE_RECENT_CONVERSION_EVENT_NAME_TIMESTAMP_LATEST_VALUE_66C820BF_AB3", - "COMPANIES_PROPERTIES_220_HS_TARGET_ACCOUNT", - "COMPANIES_PROPERTIES_220_HS_TARGET_ACCOUNT_AB1", - "COMPANIES_PROPERTIES_220_HS_TARGET_ACCOUNT_AB2", - "COMPANIES_PROPERTIES_220_HS_TARGET_ACCOUNT_AB3", - "COMPANIES_PROPERTIES_259_FIRST_CONVERSION_DATE_TIMESTAMP_EARLIEST_VALUE_61F58F2C", - "COMPANIES_PROPERTIES_259_FIRST_CONVERSION_DATE_TIMESTAMP_EARLIEST_VALUE_61F58F2C_AB1", - "COMPANIES_PROPERTIES_259_FIRST_CONVERSION_DATE_TIMESTAMP_EARLIEST_VALUE_61F58F2C_AB2", - "COMPANIES_PROPERTIES_259_FIRST_CONVERSION_DATE_TIMESTAMP_EARLIEST_VALUE_61F58F2C_AB3", - "COMPANIES_PROPERTIES_27E_HS_CREATEDATE", - "COMPANIES_PROPERTIES_27E_HS_CREATEDATE_AB1", - "COMPANIES_PROPERTIES_27E_HS_CREATEDATE_AB2", - "COMPANIES_PROPERTIES_27E_HS_CREATEDATE_AB3", - "COMPANIES_PROPERTIES_29C_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_TIMESTAMP_LATEST_VALUE_999A0FCE", - "COMPANIES_PROPERTIES_29C_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_TIMESTAMP_LATEST_VALUE_999A0FCE_AB1", - "COMPANIES_PROPERTIES_29C_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_TIMESTAMP_LATEST_VALUE_999A0FCE_AB2", - "COMPANIES_PROPERTIES_29C_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_TIMESTAMP_LATEST_VALUE_999A0FCE_AB3", - "COMPANIES_PROPERTIES_2DB_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_ACCC17AE", - "COMPANIES_PROPERTIES_2DB_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_ACCC17AE_AB1", - "COMPANIES_PROPERTIES_2DB_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_ACCC17AE_AB2", - "COMPANIES_PROPERTIES_2DB_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_ACCC17AE_AB3", - "COMPANIES_PROPERTIES_2FA_HS_ADDITIONAL_DOMAINS", - "COMPANIES_PROPERTIES_2FA_HS_ADDITIONAL_DOMAINS_AB1", - "COMPANIES_PROPERTIES_2FA_HS_ADDITIONAL_DOMAINS_AB2", - "COMPANIES_PROPERTIES_2FA_HS_ADDITIONAL_DOMAINS_AB3", - "COMPANIES_PROPERTIES_30A_NUM_ASSOCIATED_DEALS", - "COMPANIES_PROPERTIES_30A_NUM_ASSOCIATED_DEALS_AB1", - "COMPANIES_PROPERTIES_30A_NUM_ASSOCIATED_DEALS_AB2", - "COMPANIES_PROPERTIES_30A_NUM_ASSOCIATED_DEALS_AB3", - "COMPANIES_PROPERTIES_30D_HS_LASTMODIFIEDDATE", - "COMPANIES_PROPERTIES_30D_HS_LASTMODIFIEDDATE_AB1", - "COMPANIES_PROPERTIES_30D_HS_LASTMODIFIEDDATE_AB2", - "COMPANIES_PROPERTIES_30D_HS_LASTMODIFIEDDATE_AB3", - "COMPANIES_PROPERTIES_330_HS_MERGED_OBJECT_IDS", - "COMPANIES_PROPERTIES_330_HS_MERGED_OBJECT_IDS_AB1", - "COMPANIES_PROPERTIES_330_HS_MERGED_OBJECT_IDS_AB2", - "COMPANIES_PROPERTIES_330_HS_MERGED_OBJECT_IDS_AB3", - "COMPANIES_PROPERTIES_393_HS_LAST_SALES_ACTIVITY_DATE", - "COMPANIES_PROPERTIES_393_HS_LAST_SALES_ACTIVITY_DATE_AB1", - "COMPANIES_PROPERTIES_393_HS_LAST_SALES_ACTIVITY_DATE_AB2", - "COMPANIES_PROPERTIES_393_HS_LAST_SALES_ACTIVITY_DATE_AB3", - "COMPANIES_PROPERTIES_3C9_HS_ANALYTICS_SOURCE_DATA_1_TIMESTAMP_EARLIEST_VALUE_9B2F1FA1", - "COMPANIES_PROPERTIES_3C9_HS_ANALYTICS_SOURCE_DATA_1_TIMESTAMP_EARLIEST_VALUE_9B2F1FA1_AB1", - "COMPANIES_PROPERTIES_3C9_HS_ANALYTICS_SOURCE_DATA_1_TIMESTAMP_EARLIEST_VALUE_9B2F1FA1_AB2", - "COMPANIES_PROPERTIES_3C9_HS_ANALYTICS_SOURCE_DATA_1_TIMESTAMP_EARLIEST_VALUE_9B2F1FA1_AB3", - "COMPANIES_PROPERTIES_44B_NUM_ASSOCIATED_CONTACTS", - "COMPANIES_PROPERTIES_44B_NUM_ASSOCIATED_CONTACTS_AB1", - "COMPANIES_PROPERTIES_44B_NUM_ASSOCIATED_CONTACTS_AB2", - "COMPANIES_PROPERTIES_44B_NUM_ASSOCIATED_CONTACTS_AB3", - "COMPANIES_PROPERTIES_462_PHONE", - "COMPANIES_PROPERTIES_462_PHONE_AB1", - "COMPANIES_PROPERTIES_462_PHONE_AB2", - "COMPANIES_PROPERTIES_462_PHONE_AB3", - "COMPANIES_PROPERTIES_485_FIRST_CONTACT_CREATEDATE", - "COMPANIES_PROPERTIES_485_FIRST_CONTACT_CREATEDATE_AB1", - "COMPANIES_PROPERTIES_485_FIRST_CONTACT_CREATEDATE_AB2", - "COMPANIES_PROPERTIES_485_FIRST_CONTACT_CREATEDATE_AB3", - "COMPANIES_PROPERTIES_521_TOTAL_MONEY_RAISED", - "COMPANIES_PROPERTIES_521_TOTAL_MONEY_RAISED_AB1", - "COMPANIES_PROPERTIES_521_TOTAL_MONEY_RAISED_AB2", - "COMPANIES_PROPERTIES_521_TOTAL_MONEY_RAISED_AB3", - "COMPANIES_PROPERTIES_529_RECENT_CONVERSION_DATE_TIMESTAMP_LATEST_VALUE_72856DA1", - "COMPANIES_PROPERTIES_529_RECENT_CONVERSION_DATE_TIMESTAMP_LATEST_VALUE_72856DA1_AB1", - "COMPANIES_PROPERTIES_529_RECENT_CONVERSION_DATE_TIMESTAMP_LATEST_VALUE_72856DA1_AB2", - "COMPANIES_PROPERTIES_529_RECENT_CONVERSION_DATE_TIMESTAMP_LATEST_VALUE_72856DA1_AB3", - "COMPANIES_PROPERTIES_5F0_HS_ANALYTICS_LAST_TIMESTAMP", - "COMPANIES_PROPERTIES_5F0_HS_ANALYTICS_LAST_TIMESTAMP_AB1", - "COMPANIES_PROPERTIES_5F0_HS_ANALYTICS_LAST_TIMESTAMP_AB2", - "COMPANIES_PROPERTIES_5F0_HS_ANALYTICS_LAST_TIMESTAMP_AB3", - "COMPANIES_PROPERTIES_62B_HS_LEAD_STATUS", - "COMPANIES_PROPERTIES_62B_HS_LEAD_STATUS_AB1", - "COMPANIES_PROPERTIES_62B_HS_LEAD_STATUS_AB2", - "COMPANIES_PROPERTIES_62B_HS_LEAD_STATUS_AB3", - "COMPANIES_PROPERTIES_65A_ANNUALREVENUE", - "COMPANIES_PROPERTIES_65A_ANNUALREVENUE_AB1", - "COMPANIES_PROPERTIES_65A_ANNUALREVENUE_AB2", - "COMPANIES_PROPERTIES_65A_ANNUALREVENUE_AB3", - "COMPANIES_PROPERTIES_65D_FOUNDED_YEAR", - "COMPANIES_PROPERTIES_65D_FOUNDED_YEAR_AB1", - "COMPANIES_PROPERTIES_65D_FOUNDED_YEAR_AB2", - "COMPANIES_PROPERTIES_65D_FOUNDED_YEAR_AB3", - "COMPANIES_PROPERTIES_6BF_FACEBOOK_COMPANY_PAGE", - "COMPANIES_PROPERTIES_6BF_FACEBOOK_COMPANY_PAGE_AB1", - "COMPANIES_PROPERTIES_6BF_FACEBOOK_COMPANY_PAGE_AB2", - "COMPANIES_PROPERTIES_6BF_FACEBOOK_COMPANY_PAGE_AB3", - "COMPANIES_PROPERTIES_6D5_HS_PREDICTIVECONTACTSCORE_V2_NEXT_MAX_MAX_D4E58C1E", - "COMPANIES_PROPERTIES_6D5_HS_PREDICTIVECONTACTSCORE_V2_NEXT_MAX_MAX_D4E58C1E_AB1", - "COMPANIES_PROPERTIES_6D5_HS_PREDICTIVECONTACTSCORE_V2_NEXT_MAX_MAX_D4E58C1E_AB2", - "COMPANIES_PROPERTIES_6D5_HS_PREDICTIVECONTACTSCORE_V2_NEXT_MAX_MAX_D4E58C1E_AB3", - "COMPANIES_PROPERTIES_6EB_FIRST_CONVERSION_EVENT_NAME_TIMESTAMP_EARLIEST_VALUE_68DDAE0A", - "COMPANIES_PROPERTIES_6EB_FIRST_CONVERSION_EVENT_NAME_TIMESTAMP_EARLIEST_VALUE_68DDAE0A_AB1", - "COMPANIES_PROPERTIES_6EB_FIRST_CONVERSION_EVENT_NAME_TIMESTAMP_EARLIEST_VALUE_68DDAE0A_AB2", - "COMPANIES_PROPERTIES_6EB_FIRST_CONVERSION_EVENT_NAME_TIMESTAMP_EARLIEST_VALUE_68DDAE0A_AB3", - "COMPANIES_PROPERTIES_6EE_HS_TARGET_ACCOUNT_PROBABILITY", - "COMPANIES_PROPERTIES_6EE_HS_TARGET_ACCOUNT_PROBABILITY_AB1", - "COMPANIES_PROPERTIES_6EE_HS_TARGET_ACCOUNT_PROBABILITY_AB2", - "COMPANIES_PROPERTIES_6EE_HS_TARGET_ACCOUNT_PROBABILITY_AB3", - "COMPANIES_PROPERTIES_701_DAYS_TO_CLOSE", - "COMPANIES_PROPERTIES_701_DAYS_TO_CLOSE_AB1", - "COMPANIES_PROPERTIES_701_DAYS_TO_CLOSE_AB2", - "COMPANIES_PROPERTIES_701_DAYS_TO_CLOSE_AB3", - "COMPANIES_PROPERTIES_71A_HS_NUM_DECISION_MAKERS", - "COMPANIES_PROPERTIES_71A_HS_NUM_DECISION_MAKERS_AB1", - "COMPANIES_PROPERTIES_71A_HS_NUM_DECISION_MAKERS_AB2", - "COMPANIES_PROPERTIES_71A_HS_NUM_DECISION_MAKERS_AB3", - "COMPANIES_PROPERTIES_726_NUM_NOTES", - "COMPANIES_PROPERTIES_726_NUM_NOTES_AB1", - "COMPANIES_PROPERTIES_726_NUM_NOTES_AB2", - "COMPANIES_PROPERTIES_726_NUM_NOTES_AB3", - "COMPANIES_PROPERTIES_73E_HS_IDEAL_CUSTOMER_PROFILE", - "COMPANIES_PROPERTIES_73E_HS_IDEAL_CUSTOMER_PROFILE_AB1", - "COMPANIES_PROPERTIES_73E_HS_IDEAL_CUSTOMER_PROFILE_AB2", - "COMPANIES_PROPERTIES_73E_HS_IDEAL_CUSTOMER_PROFILE_AB3", - "COMPANIES_PROPERTIES_746_HS_ANALYTICS_LAST_TIMESTAMP_TIMESTAMP_LATEST_VALUE_4E16365A", - "COMPANIES_PROPERTIES_746_HS_ANALYTICS_LAST_TIMESTAMP_TIMESTAMP_LATEST_VALUE_4E16365A_AB1", - "COMPANIES_PROPERTIES_746_HS_ANALYTICS_LAST_TIMESTAMP_TIMESTAMP_LATEST_VALUE_4E16365A_AB2", - "COMPANIES_PROPERTIES_746_HS_ANALYTICS_LAST_TIMESTAMP_TIMESTAMP_LATEST_VALUE_4E16365A_AB3", - "COMPANIES_PROPERTIES_758_HS_PARENT_COMPANY_ID", - "COMPANIES_PROPERTIES_758_HS_PARENT_COMPANY_ID_AB1", - "COMPANIES_PROPERTIES_758_HS_PARENT_COMPANY_ID_AB2", - "COMPANIES_PROPERTIES_758_HS_PARENT_COMPANY_ID_AB3", - "COMPANIES_PROPERTIES_76D_HS_ANALYTICS_SOURCE_DATA_2_TIMESTAMP_EARLIEST_VALUE_9B2F9400", - "COMPANIES_PROPERTIES_76D_HS_ANALYTICS_SOURCE_DATA_2_TIMESTAMP_EARLIEST_VALUE_9B2F9400_AB1", - "COMPANIES_PROPERTIES_76D_HS_ANALYTICS_SOURCE_DATA_2_TIMESTAMP_EARLIEST_VALUE_9B2F9400_AB2", - "COMPANIES_PROPERTIES_76D_HS_ANALYTICS_SOURCE_DATA_2_TIMESTAMP_EARLIEST_VALUE_9B2F9400_AB3", - "COMPANIES_PROPERTIES_777_HS_NUM_CHILD_COMPANIES", - "COMPANIES_PROPERTIES_777_HS_NUM_CHILD_COMPANIES_AB1", - "COMPANIES_PROPERTIES_777_HS_NUM_CHILD_COMPANIES_AB2", - "COMPANIES_PROPERTIES_777_HS_NUM_CHILD_COMPANIES_AB3", - "COMPANIES_PROPERTIES_785_HS_ANALYTICS_FIRST_TIMESTAMP", - "COMPANIES_PROPERTIES_785_HS_ANALYTICS_FIRST_TIMESTAMP_AB1", - "COMPANIES_PROPERTIES_785_HS_ANALYTICS_FIRST_TIMESTAMP_AB2", - "COMPANIES_PROPERTIES_785_HS_ANALYTICS_FIRST_TIMESTAMP_AB3", - "COMPANIES_PROPERTIES_7AF_HS_TARGET_ACCOUNT_RECOMMENDATION_SNOOZE_TIME", - "COMPANIES_PROPERTIES_7AF_HS_TARGET_ACCOUNT_RECOMMENDATION_SNOOZE_TIME_AB1", - "COMPANIES_PROPERTIES_7AF_HS_TARGET_ACCOUNT_RECOMMENDATION_SNOOZE_TIME_AB2", - "COMPANIES_PROPERTIES_7AF_HS_TARGET_ACCOUNT_RECOMMENDATION_SNOOZE_TIME_AB3", - "COMPANIES_PROPERTIES_7B6_DOMAIN", - "COMPANIES_PROPERTIES_7B6_DOMAIN_AB1", - "COMPANIES_PROPERTIES_7B6_DOMAIN_AB2", - "COMPANIES_PROPERTIES_7B6_DOMAIN_AB3", - "COMPANIES_PROPERTIES_7D1_NUM_CONTACTED_NOTES", - "COMPANIES_PROPERTIES_7D1_NUM_CONTACTED_NOTES_AB1", - "COMPANIES_PROPERTIES_7D1_NUM_CONTACTED_NOTES_AB2", - "COMPANIES_PROPERTIES_7D1_NUM_CONTACTED_NOTES_AB3", - "COMPANIES_PROPERTIES_7FC_TYPE", - "COMPANIES_PROPERTIES_7FC_TYPE_AB1", - "COMPANIES_PROPERTIES_7FC_TYPE_AB2", - "COMPANIES_PROPERTIES_7FC_TYPE_AB3", - "COMPANIES_PROPERTIES_81F_HS_ANALYTICS_SOURCE_TIMESTAMP_EARLIEST_VALUE_25A3A52C", - "COMPANIES_PROPERTIES_81F_HS_ANALYTICS_SOURCE_TIMESTAMP_EARLIEST_VALUE_25A3A52C_AB1", - "COMPANIES_PROPERTIES_81F_HS_ANALYTICS_SOURCE_TIMESTAMP_EARLIEST_VALUE_25A3A52C_AB2", - "COMPANIES_PROPERTIES_81F_HS_ANALYTICS_SOURCE_TIMESTAMP_EARLIEST_VALUE_25A3A52C_AB3", - "COMPANIES_PROPERTIES_876_NOTES_LAST_UPDATED", - "COMPANIES_PROPERTIES_876_NOTES_LAST_UPDATED_AB1", - "COMPANIES_PROPERTIES_876_NOTES_LAST_UPDATED_AB2", - "COMPANIES_PROPERTIES_876_NOTES_LAST_UPDATED_AB3", - "COMPANIES_PROPERTIES_888_FACEBOOKFANS", - "COMPANIES_PROPERTIES_888_FACEBOOKFANS_AB1", - "COMPANIES_PROPERTIES_888_FACEBOOKFANS_AB2", - "COMPANIES_PROPERTIES_888_FACEBOOKFANS_AB3", - "COMPANIES_PROPERTIES_889_HS_ALL_OWNER_IDS", - "COMPANIES_PROPERTIES_889_HS_ALL_OWNER_IDS_AB1", - "COMPANIES_PROPERTIES_889_HS_ALL_OWNER_IDS_AB2", - "COMPANIES_PROPERTIES_889_HS_ALL_OWNER_IDS_AB3", - "COMPANIES_PROPERTIES_89F_HS_ALL_TEAM_IDS", - "COMPANIES_PROPERTIES_89F_HS_ALL_TEAM_IDS_AB1", - "COMPANIES_PROPERTIES_89F_HS_ALL_TEAM_IDS_AB2", - "COMPANIES_PROPERTIES_89F_HS_ALL_TEAM_IDS_AB3", - "COMPANIES_PROPERTIES_8A7_HS_CREATED_BY_USER_ID", - "COMPANIES_PROPERTIES_8A7_HS_CREATED_BY_USER_ID_AB1", - "COMPANIES_PROPERTIES_8A7_HS_CREATED_BY_USER_ID_AB2", - "COMPANIES_PROPERTIES_8A7_HS_CREATED_BY_USER_ID_AB3", - "COMPANIES_PROPERTIES_8B9_CREATEDATE", - "COMPANIES_PROPERTIES_8B9_CREATEDATE_AB1", - "COMPANIES_PROPERTIES_8B9_CREATEDATE_AB2", - "COMPANIES_PROPERTIES_8B9_CREATEDATE_AB3", - "COMPANIES_PROPERTIES_8D2_HS_AVATAR_FILEMANAGER_KEY", - "COMPANIES_PROPERTIES_8D2_HS_AVATAR_FILEMANAGER_KEY_AB1", - "COMPANIES_PROPERTIES_8D2_HS_AVATAR_FILEMANAGER_KEY_AB2", - "COMPANIES_PROPERTIES_8D2_HS_AVATAR_FILEMANAGER_KEY_AB3", - "COMPANIES_PROPERTIES_8DC_FIRST_DEAL_CREATED_DATE", - "COMPANIES_PROPERTIES_8DC_FIRST_DEAL_CREATED_DATE_AB1", - "COMPANIES_PROPERTIES_8DC_FIRST_DEAL_CREATED_DATE_AB2", - "COMPANIES_PROPERTIES_8DC_FIRST_DEAL_CREATED_DATE_AB3", - "COMPANIES_PROPERTIES_909_ADDRESS2", - "COMPANIES_PROPERTIES_909_ADDRESS2_AB1", - "COMPANIES_PROPERTIES_909_ADDRESS2_AB2", - "COMPANIES_PROPERTIES_909_ADDRESS2_AB3", - "COMPANIES_PROPERTIES_921_HS_IS_TARGET_ACCOUNT", - "COMPANIES_PROPERTIES_921_HS_IS_TARGET_ACCOUNT_AB1", - "COMPANIES_PROPERTIES_921_HS_IS_TARGET_ACCOUNT_AB2", - "COMPANIES_PROPERTIES_921_HS_IS_TARGET_ACCOUNT_AB3", - "COMPANIES_PROPERTIES_947_TWITTERFOLLOWERS", - "COMPANIES_PROPERTIES_947_TWITTERFOLLOWERS_AB1", - "COMPANIES_PROPERTIES_947_TWITTERFOLLOWERS_AB2", - "COMPANIES_PROPERTIES_947_TWITTERFOLLOWERS_AB3", - "COMPANIES_PROPERTIES_94F_NAME", - "COMPANIES_PROPERTIES_94F_NAME_AB1", - "COMPANIES_PROPERTIES_94F_NAME_AB2", - "COMPANIES_PROPERTIES_94F_NAME_AB3", - "COMPANIES_PROPERTIES_969_CLOSEDATE", - "COMPANIES_PROPERTIES_969_CLOSEDATE_AB1", - "COMPANIES_PROPERTIES_969_CLOSEDATE_AB2", - "COMPANIES_PROPERTIES_969_CLOSEDATE_AB3", - "COMPANIES_PROPERTIES_9EA_COUNTRY", - "COMPANIES_PROPERTIES_9EA_COUNTRY_AB1", - "COMPANIES_PROPERTIES_9EA_COUNTRY_AB2", - "COMPANIES_PROPERTIES_9EA_COUNTRY_AB3", - "COMPANIES_PROPERTIES_9FE_CITY", - "COMPANIES_PROPERTIES_9FE_CITY_AB1", - "COMPANIES_PROPERTIES_9FE_CITY_AB2", - "COMPANIES_PROPERTIES_9FE_CITY_AB3", - "COMPANIES_PROPERTIES_A27_HUBSPOT_OWNER_ID", - "COMPANIES_PROPERTIES_A27_HUBSPOT_OWNER_ID_AB1", - "COMPANIES_PROPERTIES_A27_HUBSPOT_OWNER_ID_AB2", - "COMPANIES_PROPERTIES_A27_HUBSPOT_OWNER_ID_AB3", - "COMPANIES_PROPERTIES_A37_HS_ANALYTICS_LAST_VISIT_TIMESTAMP", - "COMPANIES_PROPERTIES_A37_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB1", - "COMPANIES_PROPERTIES_A37_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB2", - "COMPANIES_PROPERTIES_A37_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB3", - "COMPANIES_PROPERTIES_A5B_NOTES_NEXT_ACTIVITY_DATE", - "COMPANIES_PROPERTIES_A5B_NOTES_NEXT_ACTIVITY_DATE_AB1", - "COMPANIES_PROPERTIES_A5B_NOTES_NEXT_ACTIVITY_DATE_AB2", - "COMPANIES_PROPERTIES_A5B_NOTES_NEXT_ACTIVITY_DATE_AB3", - "COMPANIES_PROPERTIES_A85_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN", - "COMPANIES_PROPERTIES_A85_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB1", - "COMPANIES_PROPERTIES_A85_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB2", - "COMPANIES_PROPERTIES_A85_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB3", - "COMPANIES_PROPERTIES_A8A_HS_UPDATED_BY_USER_ID", - "COMPANIES_PROPERTIES_A8A_HS_UPDATED_BY_USER_ID_AB1", - "COMPANIES_PROPERTIES_A8A_HS_UPDATED_BY_USER_ID_AB2", - "COMPANIES_PROPERTIES_A8A_HS_UPDATED_BY_USER_ID_AB3", - "COMPANIES_PROPERTIES_AAA_LINKEDINBIO", - "COMPANIES_PROPERTIES_AAA_LINKEDINBIO_AB1", - "COMPANIES_PROPERTIES_AAA_LINKEDINBIO_AB2", - "COMPANIES_PROPERTIES_AAA_LINKEDINBIO_AB3", - "COMPANIES_PROPERTIES_AB7_ADDRESS", - "COMPANIES_PROPERTIES_AB7_ADDRESS_AB1", - "COMPANIES_PROPERTIES_AB7_ADDRESS_AB2", - "COMPANIES_PROPERTIES_AB7_ADDRESS_AB3", - "COMPANIES_PROPERTIES_AD4_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN", - "COMPANIES_PROPERTIES_AD4_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB1", - "COMPANIES_PROPERTIES_AD4_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB2", - "COMPANIES_PROPERTIES_AD4_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB3", - "COMPANIES_PROPERTIES_AD4_LIFECYCLESTAGE", - "COMPANIES_PROPERTIES_AD4_LIFECYCLESTAGE_AB1", - "COMPANIES_PROPERTIES_AD4_LIFECYCLESTAGE_AB2", - "COMPANIES_PROPERTIES_AD4_LIFECYCLESTAGE_AB3", - "COMPANIES_PROPERTIES_ADA_WEB_TECHNOLOGIES", - "COMPANIES_PROPERTIES_ADA_WEB_TECHNOLOGIES_AB1", - "COMPANIES_PROPERTIES_ADA_WEB_TECHNOLOGIES_AB2", - "COMPANIES_PROPERTIES_ADA_WEB_TECHNOLOGIES_AB3", - "COMPANIES_PROPERTIES_ADE_HUBSPOT_OWNER_ASSIGNEDDATE", - "COMPANIES_PROPERTIES_ADE_HUBSPOT_OWNER_ASSIGNEDDATE_AB1", - "COMPANIES_PROPERTIES_ADE_HUBSPOT_OWNER_ASSIGNEDDATE_AB2", - "COMPANIES_PROPERTIES_ADE_HUBSPOT_OWNER_ASSIGNEDDATE_AB3", - "COMPANIES_PROPERTIES_AF0_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM", - "COMPANIES_PROPERTIES_AF0_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB1", - "COMPANIES_PROPERTIES_AF0_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB2", - "COMPANIES_PROPERTIES_AF0_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB3", - "COMPANIES_PROPERTIES_AF6_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE", - "COMPANIES_PROPERTIES_AF6_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB1", - "COMPANIES_PROPERTIES_AF6_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB2", - "COMPANIES_PROPERTIES_AF6_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB3", - "COMPANIES_PROPERTIES_B76_HS_USER_IDS_OF_ALL_OWNERS", - "COMPANIES_PROPERTIES_B76_HS_USER_IDS_OF_ALL_OWNERS_AB1", - "COMPANIES_PROPERTIES_B76_HS_USER_IDS_OF_ALL_OWNERS_AB2", - "COMPANIES_PROPERTIES_B76_HS_USER_IDS_OF_ALL_OWNERS_AB3", - "COMPANIES_PROPERTIES_B8E_IS_PUBLIC", - "COMPANIES_PROPERTIES_B8E_IS_PUBLIC_AB1", - "COMPANIES_PROPERTIES_B8E_IS_PUBLIC_AB2", - "COMPANIES_PROPERTIES_B8E_IS_PUBLIC_AB3", - "COMPANIES_PROPERTIES_B91_HS_OBJECT_ID", - "COMPANIES_PROPERTIES_B91_HS_OBJECT_ID_AB1", - "COMPANIES_PROPERTIES_B91_HS_OBJECT_ID_AB2", - "COMPANIES_PROPERTIES_B91_HS_OBJECT_ID_AB3", - "COMPANIES_PROPERTIES_B92_ENGAGEMENTS_LAST_MEETING_BOOKED", - "COMPANIES_PROPERTIES_B92_ENGAGEMENTS_LAST_MEETING_BOOKED_AB1", - "COMPANIES_PROPERTIES_B92_ENGAGEMENTS_LAST_MEETING_BOOKED_AB2", - "COMPANIES_PROPERTIES_B92_ENGAGEMENTS_LAST_MEETING_BOOKED_AB3", - "COMPANIES_PROPERTIES_BC4_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN", - "COMPANIES_PROPERTIES_BC4_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB1", - "COMPANIES_PROPERTIES_BC4_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB2", - "COMPANIES_PROPERTIES_BC4_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB3", - "COMPANIES_PROPERTIES_BFE_HS_SALES_EMAIL_LAST_REPLIED", - "COMPANIES_PROPERTIES_BFE_HS_SALES_EMAIL_LAST_REPLIED_AB1", - "COMPANIES_PROPERTIES_BFE_HS_SALES_EMAIL_LAST_REPLIED_AB2", - "COMPANIES_PROPERTIES_BFE_HS_SALES_EMAIL_LAST_REPLIED_AB3", - "COMPANIES_PROPERTIES_C5F_DESCRIPTION", - "COMPANIES_PROPERTIES_C5F_DESCRIPTION_AB1", - "COMPANIES_PROPERTIES_C5F_DESCRIPTION_AB2", - "COMPANIES_PROPERTIES_C5F_DESCRIPTION_AB3", - "COMPANIES_PROPERTIES_C84_HS_ALL_ACCESSIBLE_TEAM_IDS", - "COMPANIES_PROPERTIES_C84_HS_ALL_ACCESSIBLE_TEAM_IDS_AB1", - "COMPANIES_PROPERTIES_C84_HS_ALL_ACCESSIBLE_TEAM_IDS_AB2", - "COMPANIES_PROPERTIES_C84_HS_ALL_ACCESSIBLE_TEAM_IDS_AB3", - "COMPANIES_PROPERTIES_C92_HS_NUM_OPEN_DEALS", - "COMPANIES_PROPERTIES_C92_HS_NUM_OPEN_DEALS_AB1", - "COMPANIES_PROPERTIES_C92_HS_NUM_OPEN_DEALS_AB2", - "COMPANIES_PROPERTIES_C92_HS_NUM_OPEN_DEALS_AB3", - "COMPANIES_PROPERTIES_C97_HUBSPOT_TEAM_ID", - "COMPANIES_PROPERTIES_C97_HUBSPOT_TEAM_ID_AB1", - "COMPANIES_PROPERTIES_C97_HUBSPOT_TEAM_ID_AB2", - "COMPANIES_PROPERTIES_C97_HUBSPOT_TEAM_ID_AB3", - "COMPANIES_PROPERTIES_CBB_HS_ANALYTICS_NUM_PAGE_VIEWS", - "COMPANIES_PROPERTIES_CBB_HS_ANALYTICS_NUM_PAGE_VIEWS_AB1", - "COMPANIES_PROPERTIES_CBB_HS_ANALYTICS_NUM_PAGE_VIEWS_AB2", - "COMPANIES_PROPERTIES_CBB_HS_ANALYTICS_NUM_PAGE_VIEWS_AB3", - "COMPANIES_PROPERTIES_CE7_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_EARLIEST_VALUE_4757FE10", - "COMPANIES_PROPERTIES_CE7_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_EARLIEST_VALUE_4757FE10_AB1", - "COMPANIES_PROPERTIES_CE7_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_EARLIEST_VALUE_4757FE10_AB2", - "COMPANIES_PROPERTIES_CE7_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_EARLIEST_VALUE_4757FE10_AB3", - "COMPANIES_PROPERTIES_CF7_HS_TOTAL_DEAL_VALUE", - "COMPANIES_PROPERTIES_CF7_HS_TOTAL_DEAL_VALUE_AB1", - "COMPANIES_PROPERTIES_CF7_HS_TOTAL_DEAL_VALUE_AB2", - "COMPANIES_PROPERTIES_CF7_HS_TOTAL_DEAL_VALUE_AB3", - "COMPANIES_PROPERTIES_D07_HS_LAST_BOOKED_MEETING_DATE", - "COMPANIES_PROPERTIES_D07_HS_LAST_BOOKED_MEETING_DATE_AB1", - "COMPANIES_PROPERTIES_D07_HS_LAST_BOOKED_MEETING_DATE_AB2", - "COMPANIES_PROPERTIES_D07_HS_LAST_BOOKED_MEETING_DATE_AB3", - "COMPANIES_PROPERTIES_D6E_CLOSEDATE_TIMESTAMP_EARLIEST_VALUE_A2A17E6E", - "COMPANIES_PROPERTIES_D6E_CLOSEDATE_TIMESTAMP_EARLIEST_VALUE_A2A17E6E_AB1", - "COMPANIES_PROPERTIES_D6E_CLOSEDATE_TIMESTAMP_EARLIEST_VALUE_A2A17E6E_AB2", - "COMPANIES_PROPERTIES_D6E_CLOSEDATE_TIMESTAMP_EARLIEST_VALUE_A2A17E6E_AB3", - "COMPANIES_PROPERTIES_D74_NUM_CONVERSION_EVENTS_CARDINALITY_SUM_D095F14B", - "COMPANIES_PROPERTIES_D74_NUM_CONVERSION_EVENTS_CARDINALITY_SUM_D095F14B_AB1", - "COMPANIES_PROPERTIES_D74_NUM_CONVERSION_EVENTS_CARDINALITY_SUM_D095F14B_AB2", - "COMPANIES_PROPERTIES_D74_NUM_CONVERSION_EVENTS_CARDINALITY_SUM_D095F14B_AB3", - "COMPANIES_PROPERTIES_D85_STATE", - "COMPANIES_PROPERTIES_D85_STATE_AB1", - "COMPANIES_PROPERTIES_D85_STATE_AB2", - "COMPANIES_PROPERTIES_D85_STATE_AB3", - "COMPANIES_PROPERTIES_D9E_HS_TARGET_ACCOUNT_RECOMMENDATION_STATE", - "COMPANIES_PROPERTIES_D9E_HS_TARGET_ACCOUNT_RECOMMENDATION_STATE_AB1", - "COMPANIES_PROPERTIES_D9E_HS_TARGET_ACCOUNT_RECOMMENDATION_STATE_AB2", - "COMPANIES_PROPERTIES_D9E_HS_TARGET_ACCOUNT_RECOMMENDATION_STATE_AB3", - "COMPANIES_PROPERTIES_D9E_TOTAL_REVENUE", - "COMPANIES_PROPERTIES_D9E_TOTAL_REVENUE_AB1", - "COMPANIES_PROPERTIES_D9E_TOTAL_REVENUE_AB2", - "COMPANIES_PROPERTIES_D9E_TOTAL_REVENUE_AB3", - "COMPANIES_PROPERTIES_DB7_HS_ANALYTICS_NUM_VISITS_CARDINALITY_SUM_53D952A6", - "COMPANIES_PROPERTIES_DB7_HS_ANALYTICS_NUM_VISITS_CARDINALITY_SUM_53D952A6_AB1", - "COMPANIES_PROPERTIES_DB7_HS_ANALYTICS_NUM_VISITS_CARDINALITY_SUM_53D952A6_AB2", - "COMPANIES_PROPERTIES_DB7_HS_ANALYTICS_NUM_VISITS_CARDINALITY_SUM_53D952A6_AB3", - "COMPANIES_PROPERTIES_DC5_HS_ANALYTICS_SOURCE_DATA_2", - "COMPANIES_PROPERTIES_DC5_HS_ANALYTICS_SOURCE_DATA_2_AB1", - "COMPANIES_PROPERTIES_DC5_HS_ANALYTICS_SOURCE_DATA_2_AB2", - "COMPANIES_PROPERTIES_DC5_HS_ANALYTICS_SOURCE_DATA_2_AB3", - "COMPANIES_PROPERTIES_E1D_HS_LAST_SALES_ACTIVITY_TIMESTAMP", - "COMPANIES_PROPERTIES_E1D_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB1", - "COMPANIES_PROPERTIES_E1D_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB2", - "COMPANIES_PROPERTIES_E1D_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB3", - "COMPANIES_PROPERTIES_E33_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_LATEST_VALUE_81A64E30", - "COMPANIES_PROPERTIES_E33_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_LATEST_VALUE_81A64E30_AB1", - "COMPANIES_PROPERTIES_E33_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_LATEST_VALUE_81A64E30_AB2", - "COMPANIES_PROPERTIES_E33_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_LATEST_VALUE_81A64E30_AB3", - "COMPANIES_PROPERTIES_F1D_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP", - "COMPANIES_PROPERTIES_F1D_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB1", - "COMPANIES_PROPERTIES_F1D_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB2", - "COMPANIES_PROPERTIES_F1D_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB3", - "COMPANIES_PROPERTIES_F28_HS_ANALYTICS_NUM_VISITS", - "COMPANIES_PROPERTIES_F28_HS_ANALYTICS_NUM_VISITS_AB1", - "COMPANIES_PROPERTIES_F28_HS_ANALYTICS_NUM_VISITS_AB2", - "COMPANIES_PROPERTIES_F28_HS_ANALYTICS_NUM_VISITS_AB3", - "COMPANIES_PROPERTIES_F8E_HS_NUM_BLOCKERS", - "COMPANIES_PROPERTIES_F8E_HS_NUM_BLOCKERS_AB1", - "COMPANIES_PROPERTIES_F8E_HS_NUM_BLOCKERS_AB2", - "COMPANIES_PROPERTIES_F8E_HS_NUM_BLOCKERS_AB3", - "COMPANIES_PROPERTIES_F95_HS_ANALYTICS_NUM_PAGE_VIEWS_CARDINALITY_SUM_E46E85B0", - "COMPANIES_PROPERTIES_F95_HS_ANALYTICS_NUM_PAGE_VIEWS_CARDINALITY_SUM_E46E85B0_AB1", - "COMPANIES_PROPERTIES_F95_HS_ANALYTICS_NUM_PAGE_VIEWS_CARDINALITY_SUM_E46E85B0_AB2", - "COMPANIES_PROPERTIES_F95_HS_ANALYTICS_NUM_PAGE_VIEWS_CARDINALITY_SUM_E46E85B0_AB3", - "COMPANIES_PROPERTIES_FC1_HS_LAST_OPEN_TASK_DATE", - "COMPANIES_PROPERTIES_FC1_HS_LAST_OPEN_TASK_DATE_AB1", - "COMPANIES_PROPERTIES_FC1_HS_LAST_OPEN_TASK_DATE_AB2", - "COMPANIES_PROPERTIES_FC1_HS_LAST_OPEN_TASK_DATE_AB3", - "COMPANIES_PROPERTIES_FDB_ZIP", - "COMPANIES_PROPERTIES_FDB_ZIP_AB1", - "COMPANIES_PROPERTIES_FDB_ZIP_AB2", - "COMPANIES_PROPERTIES_FDB_ZIP_AB3", - "COMPANIES_PROPERTIES_FF9_WEBSITE", - "COMPANIES_PROPERTIES_FF9_WEBSITE_AB1", - "COMPANIES_PROPERTIES_FF9_WEBSITE_AB2", - "COMPANIES_PROPERTIES_FF9_WEBSITE_AB3", - "CONTACTS_00A_PROPERTY_HS_CONTENT_MEMBERSHIP_EMAIL_CONFIRMED", - "CONTACTS_00A_PROPERTY_HS_CONTENT_MEMBERSHIP_EMAIL_CONFIRMED_AB1", - "CONTACTS_00A_PROPERTY_HS_CONTENT_MEMBERSHIP_EMAIL_CONFIRMED_AB2", - "CONTACTS_00A_PROPERTY_HS_CONTENT_MEMBERSHIP_EMAIL_CONFIRMED_AB3", - "CONTACTS_010_PROPERTY_HS_CREATED_BY_USER_ID", - "CONTACTS_010_PROPERTY_HS_CREATED_BY_USER_ID_AB1", - "CONTACTS_010_PROPERTY_HS_CREATED_BY_USER_ID_AB2", - "CONTACTS_010_PROPERTY_HS_CREATED_BY_USER_ID_AB3", - "CONTACTS_014_PROPERTY_HS_TESTPURGE", - "CONTACTS_014_PROPERTY_HS_TESTPURGE_AB1", - "CONTACTS_014_PROPERTY_HS_TESTPURGE_AB2", - "CONTACTS_014_PROPERTY_HS_TESTPURGE_AB3", - "CONTACTS_01B_PROPERTY_HS_ALL_CONTACT_VIDS", - "CONTACTS_01B_PROPERTY_HS_ALL_CONTACT_VIDS_AB1", - "CONTACTS_01B_PROPERTY_HS_ALL_CONTACT_VIDS_AB2", - "CONTACTS_01B_PROPERTY_HS_ALL_CONTACT_VIDS_AB3", - "CONTACTS_022_PROPERTY_HS_CALCULATED_PHONE_NUMBER_COUNTRY_CODE", - "CONTACTS_022_PROPERTY_HS_CALCULATED_PHONE_NUMBER_COUNTRY_CODE_AB1", - "CONTACTS_022_PROPERTY_HS_CALCULATED_PHONE_NUMBER_COUNTRY_CODE_AB2", - "CONTACTS_022_PROPERTY_HS_CALCULATED_PHONE_NUMBER_COUNTRY_CODE_AB3", - "CONTACTS_031_PROPERTY_HS_ANALYTICS_FIRST_REFERRER", - "CONTACTS_031_PROPERTY_HS_ANALYTICS_FIRST_REFERRER_AB1", - "CONTACTS_031_PROPERTY_HS_ANALYTICS_FIRST_REFERRER_AB2", - "CONTACTS_031_PROPERTY_HS_ANALYTICS_FIRST_REFERRER_AB3", - "CONTACTS_04B_PROPERTY_HS_MERGED_OBJECT_IDS", - "CONTACTS_04B_PROPERTY_HS_MERGED_OBJECT_IDS_AB1", - "CONTACTS_04B_PROPERTY_HS_MERGED_OBJECT_IDS_AB2", - "CONTACTS_04B_PROPERTY_HS_MERGED_OBJECT_IDS_AB3", - "CONTACTS_052_PROPERTY_FIRST_CONVERSION_EVENT_NAME", - "CONTACTS_052_PROPERTY_FIRST_CONVERSION_EVENT_NAME_AB1", - "CONTACTS_052_PROPERTY_FIRST_CONVERSION_EVENT_NAME_AB2", - "CONTACTS_052_PROPERTY_FIRST_CONVERSION_EVENT_NAME_AB3", - "CONTACTS_053_PROPERTY_RECENT_CONVERSION_DATE", - "CONTACTS_053_PROPERTY_RECENT_CONVERSION_DATE_AB1", - "CONTACTS_053_PROPERTY_RECENT_CONVERSION_DATE_AB2", - "CONTACTS_053_PROPERTY_RECENT_CONVERSION_DATE_AB3", - "CONTACTS_056_PROPERTY_WORK_EMAIL", - "CONTACTS_056_PROPERTY_WORK_EMAIL_AB1", - "CONTACTS_056_PROPERTY_WORK_EMAIL_AB2", - "CONTACTS_056_PROPERTY_WORK_EMAIL_AB3", - "CONTACTS_059_PROPERTY_HS_EMAIL_LAST_OPEN_DATE", - "CONTACTS_059_PROPERTY_HS_EMAIL_LAST_OPEN_DATE_AB1", - "CONTACTS_059_PROPERTY_HS_EMAIL_LAST_OPEN_DATE_AB2", - "CONTACTS_059_PROPERTY_HS_EMAIL_LAST_OPEN_DATE_AB3", - "CONTACTS_05C_PROPERTY_HS_IS_UNWORKED", - "CONTACTS_05C_PROPERTY_HS_IS_UNWORKED_AB1", - "CONTACTS_05C_PROPERTY_HS_IS_UNWORKED_AB2", - "CONTACTS_05C_PROPERTY_HS_IS_UNWORKED_AB3", - "CONTACTS_0A4_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED", - "CONTACTS_0A4_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_AB1", - "CONTACTS_0A4_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_AB2", - "CONTACTS_0A4_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_AB3", - "CONTACTS_0A9_PROPERTY_HS_EMAIL_BAD_ADDRESS", - "CONTACTS_0A9_PROPERTY_HS_EMAIL_BAD_ADDRESS_AB1", - "CONTACTS_0A9_PROPERTY_HS_EMAIL_BAD_ADDRESS_AB2", - "CONTACTS_0A9_PROPERTY_HS_EMAIL_BAD_ADDRESS_AB3", - "CONTACTS_0AC_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN", - "CONTACTS_0AC_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB1", - "CONTACTS_0AC_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB2", - "CONTACTS_0AC_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB3", - "CONTACTS_0B2_PROPERTY_HS_CALCULATED_FORM_SUBMISSIONS", - "CONTACTS_0B2_PROPERTY_HS_CALCULATED_FORM_SUBMISSIONS_AB1", - "CONTACTS_0B2_PROPERTY_HS_CALCULATED_FORM_SUBMISSIONS_AB2", - "CONTACTS_0B2_PROPERTY_HS_CALCULATED_FORM_SUBMISSIONS_AB3", - "CONTACTS_0C8_PROPERTY_TWITTERHANDLE", - "CONTACTS_0C8_PROPERTY_TWITTERHANDLE_AB1", - "CONTACTS_0C8_PROPERTY_TWITTERHANDLE_AB2", - "CONTACTS_0C8_PROPERTY_TWITTERHANDLE_AB3", - "CONTACTS_0FC_PROPERTY_FAX", - "CONTACTS_0FC_PROPERTY_FAX_AB1", - "CONTACTS_0FC_PROPERTY_FAX_AB2", - "CONTACTS_0FC_PROPERTY_FAX_AB3", - "CONTACTS_0FC_PROPERTY_HS_CONTENT_MEMBERSHIP_REGISTRATION_EMAIL_SENT_AT", - "CONTACTS_0FC_PROPERTY_HS_CONTENT_MEMBERSHIP_REGISTRATION_EMAIL_SENT_AT_AB1", - "CONTACTS_0FC_PROPERTY_HS_CONTENT_MEMBERSHIP_REGISTRATION_EMAIL_SENT_AT_AB2", - "CONTACTS_0FC_PROPERTY_HS_CONTENT_MEMBERSHIP_REGISTRATION_EMAIL_SENT_AT_AB3", - "CONTACTS_12B_PROPERTY_SCHOOL", - "CONTACTS_12B_PROPERTY_SCHOOL_AB1", - "CONTACTS_12B_PROPERTY_SCHOOL_AB2", - "CONTACTS_12B_PROPERTY_SCHOOL_AB3", - "CONTACTS_141_PROPERTY_HS_AVATAR_FILEMANAGER_KEY", - "CONTACTS_141_PROPERTY_HS_AVATAR_FILEMANAGER_KEY_AB1", - "CONTACTS_141_PROPERTY_HS_AVATAR_FILEMANAGER_KEY_AB2", - "CONTACTS_141_PROPERTY_HS_AVATAR_FILEMANAGER_KEY_AB3", - "CONTACTS_14D_PROPERTY_WEBSITE", - "CONTACTS_14D_PROPERTY_WEBSITE_AB1", - "CONTACTS_14D_PROPERTY_WEBSITE_AB2", - "CONTACTS_14D_PROPERTY_WEBSITE_AB3", - "CONTACTS_14F_PROPERTY_HS_EMAIL_OPEN", - "CONTACTS_14F_PROPERTY_HS_EMAIL_OPEN_AB1", - "CONTACTS_14F_PROPERTY_HS_EMAIL_OPEN_AB2", - "CONTACTS_14F_PROPERTY_HS_EMAIL_OPEN_AB3", - "CONTACTS_15C_PROPERTY_NOTES_NEXT_ACTIVITY_DATE", - "CONTACTS_15C_PROPERTY_NOTES_NEXT_ACTIVITY_DATE_AB1", - "CONTACTS_15C_PROPERTY_NOTES_NEXT_ACTIVITY_DATE_AB2", - "CONTACTS_15C_PROPERTY_NOTES_NEXT_ACTIVITY_DATE_AB3", - "CONTACTS_19F_PROPERTY_HS_ANALYTICS_NUM_EVENT_COMPLETIONS", - "CONTACTS_19F_PROPERTY_HS_ANALYTICS_NUM_EVENT_COMPLETIONS_AB1", - "CONTACTS_19F_PROPERTY_HS_ANALYTICS_NUM_EVENT_COMPLETIONS_AB2", - "CONTACTS_19F_PROPERTY_HS_ANALYTICS_NUM_EVENT_COMPLETIONS_AB3", - "CONTACTS_1B0_PROPERTY_HS_ADDITIONAL_EMAILS", - "CONTACTS_1B0_PROPERTY_HS_ADDITIONAL_EMAILS_AB1", - "CONTACTS_1B0_PROPERTY_HS_ADDITIONAL_EMAILS_AB2", - "CONTACTS_1B0_PROPERTY_HS_ADDITIONAL_EMAILS_AB3", - "CONTACTS_1C7_PROPERTY_HS_EMAIL_QUARANTINED_REASON", - "CONTACTS_1C7_PROPERTY_HS_EMAIL_QUARANTINED_REASON_AB1", - "CONTACTS_1C7_PROPERTY_HS_EMAIL_QUARANTINED_REASON_AB2", - "CONTACTS_1C7_PROPERTY_HS_EMAIL_QUARANTINED_REASON_AB3", - "CONTACTS_1CD_PROPERTY_HS_SA_FIRST_ENGAGEMENT_OBJECT_TYPE", - "CONTACTS_1CD_PROPERTY_HS_SA_FIRST_ENGAGEMENT_OBJECT_TYPE_AB1", - "CONTACTS_1CD_PROPERTY_HS_SA_FIRST_ENGAGEMENT_OBJECT_TYPE_AB2", - "CONTACTS_1CD_PROPERTY_HS_SA_FIRST_ENGAGEMENT_OBJECT_TYPE_AB3", - "CONTACTS_1E0_PROPERTIES", - "CONTACTS_1E0_PROPERTIES_AB1", - "CONTACTS_1E0_PROPERTIES_AB2", - "CONTACTS_1E0_PROPERTIES_AB3", - "CONTACTS_1FE_PROPERTY_HS_FACEBOOK_CLICK_ID", - "CONTACTS_1FE_PROPERTY_HS_FACEBOOK_CLICK_ID_AB1", - "CONTACTS_1FE_PROPERTY_HS_FACEBOOK_CLICK_ID_AB2", - "CONTACTS_1FE_PROPERTY_HS_FACEBOOK_CLICK_ID_AB3", - "CONTACTS_20F_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS", - "CONTACTS_20F_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_AB1", - "CONTACTS_20F_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_AB2", - "CONTACTS_20F_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_AB3", - "CONTACTS_21D_PROPERTY_HS_EMAIL_OPTOUT_10798197", - "CONTACTS_21D_PROPERTY_HS_EMAIL_OPTOUT_10798197_AB1", - "CONTACTS_21D_PROPERTY_HS_EMAIL_OPTOUT_10798197_AB2", - "CONTACTS_21D_PROPERTY_HS_EMAIL_OPTOUT_10798197_AB3", - "CONTACTS_224_PROPERTY_INDUSTRY", - "CONTACTS_224_PROPERTY_INDUSTRY_AB1", - "CONTACTS_224_PROPERTY_INDUSTRY_AB2", - "CONTACTS_224_PROPERTY_INDUSTRY_AB3", - "CONTACTS_24D_PROPERTY_HS_EMAIL_DOMAIN", - "CONTACTS_24D_PROPERTY_HS_EMAIL_DOMAIN_AB1", - "CONTACTS_24D_PROPERTY_HS_EMAIL_DOMAIN_AB2", - "CONTACTS_24D_PROPERTY_HS_EMAIL_DOMAIN_AB3", - "CONTACTS_250_PROPERTY_HS_CONTENT_MEMBERSHIP_REGISTRATION_DOMAIN_SENT_TO", - "CONTACTS_250_PROPERTY_HS_CONTENT_MEMBERSHIP_REGISTRATION_DOMAIN_SENT_TO_AB1", - "CONTACTS_250_PROPERTY_HS_CONTENT_MEMBERSHIP_REGISTRATION_DOMAIN_SENT_TO_AB2", - "CONTACTS_250_PROPERTY_HS_CONTENT_MEMBERSHIP_REGISTRATION_DOMAIN_SENT_TO_AB3", - "CONTACTS_251_PROPERTY_IP_COUNTRY_CODE", - "CONTACTS_251_PROPERTY_IP_COUNTRY_CODE_AB1", - "CONTACTS_251_PROPERTY_IP_COUNTRY_CODE_AB2", - "CONTACTS_251_PROPERTY_IP_COUNTRY_CODE_AB3", - "CONTACTS_25A_PROPERTY_SALUTATION", - "CONTACTS_25A_PROPERTY_SALUTATION_AB1", - "CONTACTS_25A_PROPERTY_SALUTATION_AB2", - "CONTACTS_25A_PROPERTY_SALUTATION_AB3", - "CONTACTS_298_PROPERTY_EMAIL", - "CONTACTS_298_PROPERTY_EMAIL_AB1", - "CONTACTS_298_PROPERTY_EMAIL_AB2", - "CONTACTS_298_PROPERTY_EMAIL_AB3", - "CONTACTS_29F_PROPERTY_MILITARY_STATUS", - "CONTACTS_29F_PROPERTY_MILITARY_STATUS_AB1", - "CONTACTS_29F_PROPERTY_MILITARY_STATUS_AB2", - "CONTACTS_29F_PROPERTY_MILITARY_STATUS_AB3", - "CONTACTS_2A3_PROPERTY_HS_EMAIL_OPTOUT", - "CONTACTS_2A3_PROPERTY_HS_EMAIL_OPTOUT_AB1", - "CONTACTS_2A3_PROPERTY_HS_EMAIL_OPTOUT_AB2", - "CONTACTS_2A3_PROPERTY_HS_EMAIL_OPTOUT_AB3", - "CONTACTS_2BC_PROPERTY_HS_EMAIL_FIRST_SEND_DATE", - "CONTACTS_2BC_PROPERTY_HS_EMAIL_FIRST_SEND_DATE_AB1", - "CONTACTS_2BC_PROPERTY_HS_EMAIL_FIRST_SEND_DATE_AB2", - "CONTACTS_2BC_PROPERTY_HS_EMAIL_FIRST_SEND_DATE_AB3", - "CONTACTS_2DD_PROPERTY_COUNTRY", - "CONTACTS_2DD_PROPERTY_COUNTRY_AB1", - "CONTACTS_2DD_PROPERTY_COUNTRY_AB2", - "CONTACTS_2DD_PROPERTY_COUNTRY_AB3", - "CONTACTS_2F8_PROPERTY_HS_LAST_SALES_ACTIVITY_TIMESTAMP", - "CONTACTS_2F8_PROPERTY_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB1", - "CONTACTS_2F8_PROPERTY_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB2", - "CONTACTS_2F8_PROPERTY_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB3", - "CONTACTS_325_PROPERTY_HS_EMAIL_CLICK", - "CONTACTS_325_PROPERTY_HS_EMAIL_CLICK_AB1", - "CONTACTS_325_PROPERTY_HS_EMAIL_CLICK_AB2", - "CONTACTS_325_PROPERTY_HS_EMAIL_CLICK_AB3", - "CONTACTS_326_PROPERTY_WEBINAREVENTLASTUPDATED", - "CONTACTS_326_PROPERTY_WEBINAREVENTLASTUPDATED_AB1", - "CONTACTS_326_PROPERTY_WEBINAREVENTLASTUPDATED_AB2", - "CONTACTS_326_PROPERTY_WEBINAREVENTLASTUPDATED_AB3", - "CONTACTS_33E_PROPERTY_RECENT_DEAL_AMOUNT", - "CONTACTS_33E_PROPERTY_RECENT_DEAL_AMOUNT_AB1", - "CONTACTS_33E_PROPERTY_RECENT_DEAL_AMOUNT_AB2", - "CONTACTS_33E_PROPERTY_RECENT_DEAL_AMOUNT_AB3", - "CONTACTS_33F_PROPERTY_ASSOCIATEDCOMPANYLASTUPDATED", - "CONTACTS_33F_PROPERTY_ASSOCIATEDCOMPANYLASTUPDATED_AB1", - "CONTACTS_33F_PROPERTY_ASSOCIATEDCOMPANYLASTUPDATED_AB2", - "CONTACTS_33F_PROPERTY_ASSOCIATEDCOMPANYLASTUPDATED_AB3", - "CONTACTS_348_PROPERTY_HS_TIME_TO_FIRST_ENGAGEMENT", - "CONTACTS_348_PROPERTY_HS_TIME_TO_FIRST_ENGAGEMENT_AB1", - "CONTACTS_348_PROPERTY_HS_TIME_TO_FIRST_ENGAGEMENT_AB2", - "CONTACTS_348_PROPERTY_HS_TIME_TO_FIRST_ENGAGEMENT_AB3", - "CONTACTS_37A_PROPERTY_HS_LAST_SALES_ACTIVITY_DATE", - "CONTACTS_37A_PROPERTY_HS_LAST_SALES_ACTIVITY_DATE_AB1", - "CONTACTS_37A_PROPERTY_HS_LAST_SALES_ACTIVITY_DATE_AB2", - "CONTACTS_37A_PROPERTY_HS_LAST_SALES_ACTIVITY_DATE_AB3", - "CONTACTS_3BE_PROPERTY_HS_EMAIL_DELIVERED", - "CONTACTS_3BE_PROPERTY_HS_EMAIL_DELIVERED_AB1", - "CONTACTS_3BE_PROPERTY_HS_EMAIL_DELIVERED_AB2", - "CONTACTS_3BE_PROPERTY_HS_EMAIL_DELIVERED_AB3", - "CONTACTS_3C0_MERGE_AUDITS", - "CONTACTS_3C0_MERGE_AUDITS_AB1", - "CONTACTS_3C0_MERGE_AUDITS_AB2", - "CONTACTS_3C0_MERGE_AUDITS_AB3", - "CONTACTS_3E9_PROPERTY_NUM_NOTES", - "CONTACTS_3E9_PROPERTY_NUM_NOTES_AB1", - "CONTACTS_3E9_PROPERTY_NUM_NOTES_AB2", - "CONTACTS_3E9_PROPERTY_NUM_NOTES_AB3", - "CONTACTS_3EE_PROPERTY_HS_LIFECYCLESTAGE_LEAD_DATE", - "CONTACTS_3EE_PROPERTY_HS_LIFECYCLESTAGE_LEAD_DATE_AB1", - "CONTACTS_3EE_PROPERTY_HS_LIFECYCLESTAGE_LEAD_DATE_AB2", - "CONTACTS_3EE_PROPERTY_HS_LIFECYCLESTAGE_LEAD_DATE_AB3", - "CONTACTS_401_PROPERTY_HUBSPOT_OWNER_ID", - "CONTACTS_401_PROPERTY_HUBSPOT_OWNER_ID_AB1", - "CONTACTS_401_PROPERTY_HUBSPOT_OWNER_ID_AB2", - "CONTACTS_401_PROPERTY_HUBSPOT_OWNER_ID_AB3", - "CONTACTS_42E_PROPERTY_CITY", - "CONTACTS_42E_PROPERTY_CITY_AB1", - "CONTACTS_42E_PROPERTY_CITY_AB2", - "CONTACTS_42E_PROPERTY_CITY_AB3", - "CONTACTS_44C_PROPERTY_HS_EMAIL_LAST_SEND_DATE", - "CONTACTS_44C_PROPERTY_HS_EMAIL_LAST_SEND_DATE_AB1", - "CONTACTS_44C_PROPERTY_HS_EMAIL_LAST_SEND_DATE_AB2", - "CONTACTS_44C_PROPERTY_HS_EMAIL_LAST_SEND_DATE_AB3", - "CONTACTS_465_PROPERTY_ZIP", - "CONTACTS_465_PROPERTY_ZIP_AB1", - "CONTACTS_465_PROPERTY_ZIP_AB2", - "CONTACTS_465_PROPERTY_ZIP_AB3", - "CONTACTS_472_PROPERTY_ADDRESS", - "CONTACTS_472_PROPERTY_ADDRESS_AB1", - "CONTACTS_472_PROPERTY_ADDRESS_AB2", - "CONTACTS_472_PROPERTY_ADDRESS_AB3", - "CONTACTS_48E_PROPERTY_HS_LEGAL_BASIS", - "CONTACTS_48E_PROPERTY_HS_LEGAL_BASIS_AB1", - "CONTACTS_48E_PROPERTY_HS_LEGAL_BASIS_AB2", - "CONTACTS_48E_PROPERTY_HS_LEGAL_BASIS_AB3", - "CONTACTS_49C_PROPERTY_HS_FACEBOOK_AD_CLICKED", - "CONTACTS_49C_PROPERTY_HS_FACEBOOK_AD_CLICKED_AB1", - "CONTACTS_49C_PROPERTY_HS_FACEBOOK_AD_CLICKED_AB2", - "CONTACTS_49C_PROPERTY_HS_FACEBOOK_AD_CLICKED_AB3", - "CONTACTS_4AB_PROPERTY_CLOSEDATE", - "CONTACTS_4AB_PROPERTY_CLOSEDATE_AB1", - "CONTACTS_4AB_PROPERTY_CLOSEDATE_AB2", - "CONTACTS_4AB_PROPERTY_CLOSEDATE_AB3", - "CONTACTS_4C9_PROPERTY_NUM_CONVERSION_EVENTS", - "CONTACTS_4C9_PROPERTY_NUM_CONVERSION_EVENTS_AB1", - "CONTACTS_4C9_PROPERTY_NUM_CONVERSION_EVENTS_AB2", - "CONTACTS_4C9_PROPERTY_NUM_CONVERSION_EVENTS_AB3", - "CONTACTS_4E2_PROPERTY_HS_CALCULATED_PHONE_NUMBER", - "CONTACTS_4E2_PROPERTY_HS_CALCULATED_PHONE_NUMBER_AB1", - "CONTACTS_4E2_PROPERTY_HS_CALCULATED_PHONE_NUMBER_AB2", - "CONTACTS_4E2_PROPERTY_HS_CALCULATED_PHONE_NUMBER_AB3", - "CONTACTS_4FC_PROPERTY_NUM_UNIQUE_CONVERSION_EVENTS", - "CONTACTS_4FC_PROPERTY_NUM_UNIQUE_CONVERSION_EVENTS_AB1", - "CONTACTS_4FC_PROPERTY_NUM_UNIQUE_CONVERSION_EVENTS_AB2", - "CONTACTS_4FC_PROPERTY_NUM_UNIQUE_CONVERSION_EVENTS_AB3", - "CONTACTS_503_PROPERTY_FIRSTNAME", - "CONTACTS_503_PROPERTY_FIRSTNAME_AB1", - "CONTACTS_503_PROPERTY_FIRSTNAME_AB2", - "CONTACTS_503_PROPERTY_FIRSTNAME_AB3", - "CONTACTS_505_PROPERTY_HS_EMAIL_BOUNCE", - "CONTACTS_505_PROPERTY_HS_EMAIL_BOUNCE_AB1", - "CONTACTS_505_PROPERTY_HS_EMAIL_BOUNCE_AB2", - "CONTACTS_505_PROPERTY_HS_EMAIL_BOUNCE_AB3", - "CONTACTS_507_PROPERTY_SENIORITY", - "CONTACTS_507_PROPERTY_SENIORITY_AB1", - "CONTACTS_507_PROPERTY_SENIORITY_AB2", - "CONTACTS_507_PROPERTY_SENIORITY_AB3", - "CONTACTS_516_PROPERTY_START_DATE", - "CONTACTS_516_PROPERTY_START_DATE_AB1", - "CONTACTS_516_PROPERTY_START_DATE_AB2", - "CONTACTS_516_PROPERTY_START_DATE_AB3", - "CONTACTS_520_PROPERTY_HS_LASTMODIFIEDDATE", - "CONTACTS_520_PROPERTY_HS_LASTMODIFIEDDATE_AB1", - "CONTACTS_520_PROPERTY_HS_LASTMODIFIEDDATE_AB2", - "CONTACTS_520_PROPERTY_HS_LASTMODIFIEDDATE_AB3", - "CONTACTS_541_PROPERTY_HS_LIFECYCLESTAGE_SUBSCRIBER_DATE", - "CONTACTS_541_PROPERTY_HS_LIFECYCLESTAGE_SUBSCRIBER_DATE_AB1", - "CONTACTS_541_PROPERTY_HS_LIFECYCLESTAGE_SUBSCRIBER_DATE_AB2", - "CONTACTS_541_PROPERTY_HS_LIFECYCLESTAGE_SUBSCRIBER_DATE_AB3", - "CONTACTS_546_PROPERTY_HS_BUYING_ROLE", - "CONTACTS_546_PROPERTY_HS_BUYING_ROLE_AB1", - "CONTACTS_546_PROPERTY_HS_BUYING_ROLE_AB2", - "CONTACTS_546_PROPERTY_HS_BUYING_ROLE_AB3", - "CONTACTS_569_PROPERTY_NUM_ASSOCIATED_DEALS", - "CONTACTS_569_PROPERTY_NUM_ASSOCIATED_DEALS_AB1", - "CONTACTS_569_PROPERTY_NUM_ASSOCIATED_DEALS_AB2", - "CONTACTS_569_PROPERTY_NUM_ASSOCIATED_DEALS_AB3", - "CONTACTS_58A_PROPERTY_ANNUALREVENUE", - "CONTACTS_58A_PROPERTY_ANNUALREVENUE_AB1", - "CONTACTS_58A_PROPERTY_ANNUALREVENUE_AB2", - "CONTACTS_58A_PROPERTY_ANNUALREVENUE_AB3", - "CONTACTS_5A2_LIST_MEMBERSHIPS", - "CONTACTS_5A2_LIST_MEMBERSHIPS_AB1", - "CONTACTS_5A2_LIST_MEMBERSHIPS_AB2", - "CONTACTS_5A2_LIST_MEMBERSHIPS_AB3", - "CONTACTS_5B6_PROPERTY_HS_CALCULATED_MERGED_VIDS", - "CONTACTS_5B6_PROPERTY_HS_CALCULATED_MERGED_VIDS_AB1", - "CONTACTS_5B6_PROPERTY_HS_CALCULATED_MERGED_VIDS_AB2", - "CONTACTS_5B6_PROPERTY_HS_CALCULATED_MERGED_VIDS_AB3", - "CONTACTS_5C6_PROPERTY_HS_SALES_EMAIL_LAST_CLICKED", - "CONTACTS_5C6_PROPERTY_HS_SALES_EMAIL_LAST_CLICKED_AB1", - "CONTACTS_5C6_PROPERTY_HS_SALES_EMAIL_LAST_CLICKED_AB2", - "CONTACTS_5C6_PROPERTY_HS_SALES_EMAIL_LAST_CLICKED_AB3", - "CONTACTS_5CB_PROPERTY_HS_SALES_EMAIL_LAST_OPENED", - "CONTACTS_5CB_PROPERTY_HS_SALES_EMAIL_LAST_OPENED_AB1", - "CONTACTS_5CB_PROPERTY_HS_SALES_EMAIL_LAST_OPENED_AB2", - "CONTACTS_5CB_PROPERTY_HS_SALES_EMAIL_LAST_OPENED_AB3", - "CONTACTS_5FE_PROPERTY_LASTNAME", - "CONTACTS_5FE_PROPERTY_LASTNAME_AB1", - "CONTACTS_5FE_PROPERTY_LASTNAME_AB2", - "CONTACTS_5FE_PROPERTY_LASTNAME_AB3", - "CONTACTS_600_PROPERTY_HS_IS_CONTACT", - "CONTACTS_600_PROPERTY_HS_IS_CONTACT_AB1", - "CONTACTS_600_PROPERTY_HS_IS_CONTACT_AB2", - "CONTACTS_600_PROPERTY_HS_IS_CONTACT_AB3", - "CONTACTS_606_PROPERTY_HS_ANALYTICS_NUM_VISITS", - "CONTACTS_606_PROPERTY_HS_ANALYTICS_NUM_VISITS_AB1", - "CONTACTS_606_PROPERTY_HS_ANALYTICS_NUM_VISITS_AB2", - "CONTACTS_606_PROPERTY_HS_ANALYTICS_NUM_VISITS_AB3", - "CONTACTS_646_PROPERTIES_VERSIONS", - "CONTACTS_646_PROPERTIES_VERSIONS_AB1", - "CONTACTS_646_PROPERTIES_VERSIONS_AB2", - "CONTACTS_646_PROPERTIES_VERSIONS_AB3", - "CONTACTS_65F_PROPERTY_HS_LEAD_STATUS", - "CONTACTS_65F_PROPERTY_HS_LEAD_STATUS_AB1", - "CONTACTS_65F_PROPERTY_HS_LEAD_STATUS_AB2", - "CONTACTS_65F_PROPERTY_HS_LEAD_STATUS_AB3", - "CONTACTS_663_PROPERTY_HS_IP_TIMEZONE", - "CONTACTS_663_PROPERTY_HS_IP_TIMEZONE_AB1", - "CONTACTS_663_PROPERTY_HS_IP_TIMEZONE_AB2", - "CONTACTS_663_PROPERTY_HS_IP_TIMEZONE_AB3", - "CONTACTS_663_PROPERTY_MARITAL_STATUS", - "CONTACTS_663_PROPERTY_MARITAL_STATUS_AB1", - "CONTACTS_663_PROPERTY_MARITAL_STATUS_AB2", - "CONTACTS_663_PROPERTY_MARITAL_STATUS_AB3", - "CONTACTS_673_PROPERTY_ASSOCIATEDCOMPANYID", - "CONTACTS_673_PROPERTY_ASSOCIATEDCOMPANYID_AB1", - "CONTACTS_673_PROPERTY_ASSOCIATEDCOMPANYID_AB2", - "CONTACTS_673_PROPERTY_ASSOCIATEDCOMPANYID_AB3", - "CONTACTS_688_PROPERTY_HS_ALL_TEAM_IDS", - "CONTACTS_688_PROPERTY_HS_ALL_TEAM_IDS_AB1", - "CONTACTS_688_PROPERTY_HS_ALL_TEAM_IDS_AB2", - "CONTACTS_688_PROPERTY_HS_ALL_TEAM_IDS_AB3", - "CONTACTS_68D_PROPERTY_HS_EMAIL_LAST_CLICK_DATE", - "CONTACTS_68D_PROPERTY_HS_EMAIL_LAST_CLICK_DATE_AB1", - "CONTACTS_68D_PROPERTY_HS_EMAIL_LAST_CLICK_DATE_AB2", - "CONTACTS_68D_PROPERTY_HS_EMAIL_LAST_CLICK_DATE_AB3", - "CONTACTS_690_PROPERTY_HS_LANGUAGE", - "CONTACTS_690_PROPERTY_HS_LANGUAGE_AB1", - "CONTACTS_690_PROPERTY_HS_LANGUAGE_AB2", - "CONTACTS_690_PROPERTY_HS_LANGUAGE_AB3", - "CONTACTS_6EE_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP", - "CONTACTS_6EE_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_AB1", - "CONTACTS_6EE_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_AB2", - "CONTACTS_6EE_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_AB3", - "CONTACTS_6F4_PROPERTY_HS_ANALYTICS_REVENUE", - "CONTACTS_6F4_PROPERTY_HS_ANALYTICS_REVENUE_AB1", - "CONTACTS_6F4_PROPERTY_HS_ANALYTICS_REVENUE_AB2", - "CONTACTS_6F4_PROPERTY_HS_ANALYTICS_REVENUE_AB3", - "CONTACTS_6FA_PROPERTY_HS_OBJECT_ID", - "CONTACTS_6FA_PROPERTY_HS_OBJECT_ID_AB1", - "CONTACTS_6FA_PROPERTY_HS_OBJECT_ID_AB2", - "CONTACTS_6FA_PROPERTY_HS_OBJECT_ID_AB3", - "CONTACTS_6FF_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP", - "CONTACTS_6FF_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_AB1", - "CONTACTS_6FF_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_AB2", - "CONTACTS_6FF_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_AB3", - "CONTACTS_713_PROPERTY_FIRST_CONVERSION_DATE", - "CONTACTS_713_PROPERTY_FIRST_CONVERSION_DATE_AB1", - "CONTACTS_713_PROPERTY_FIRST_CONVERSION_DATE_AB2", - "CONTACTS_713_PROPERTY_FIRST_CONVERSION_DATE_AB3", - "CONTACTS_71C_PROPERTY_NOTES_LAST_UPDATED", - "CONTACTS_71C_PROPERTY_NOTES_LAST_UPDATED_AB1", - "CONTACTS_71C_PROPERTY_NOTES_LAST_UPDATED_AB2", - "CONTACTS_71C_PROPERTY_NOTES_LAST_UPDATED_AB3", - "CONTACTS_744_PROPERTY_COMPANY_SIZE", - "CONTACTS_744_PROPERTY_COMPANY_SIZE_AB1", - "CONTACTS_744_PROPERTY_COMPANY_SIZE_AB2", - "CONTACTS_744_PROPERTY_COMPANY_SIZE_AB3", - "CONTACTS_759_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1", - "CONTACTS_759_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_AB1", - "CONTACTS_759_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_AB2", - "CONTACTS_759_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_AB3", - "CONTACTS_75F_PROPERTY_HS_LIFECYCLESTAGE_EVANGELIST_DATE", - "CONTACTS_75F_PROPERTY_HS_LIFECYCLESTAGE_EVANGELIST_DATE_AB1", - "CONTACTS_75F_PROPERTY_HS_LIFECYCLESTAGE_EVANGELIST_DATE_AB2", - "CONTACTS_75F_PROPERTY_HS_LIFECYCLESTAGE_EVANGELIST_DATE_AB3", - "CONTACTS_79B_PROPERTY_MOBILEPHONE", - "CONTACTS_79B_PROPERTY_MOBILEPHONE_AB1", - "CONTACTS_79B_PROPERTY_MOBILEPHONE_AB2", - "CONTACTS_79B_PROPERTY_MOBILEPHONE_AB3", - "CONTACTS_7AA_PROPERTY_HS_USER_IDS_OF_ALL_OWNERS", - "CONTACTS_7AA_PROPERTY_HS_USER_IDS_OF_ALL_OWNERS_AB1", - "CONTACTS_7AA_PROPERTY_HS_USER_IDS_OF_ALL_OWNERS_AB2", - "CONTACTS_7AA_PROPERTY_HS_USER_IDS_OF_ALL_OWNERS_AB3", - "CONTACTS_7B0_PROPERTY_DAYS_TO_CLOSE", - "CONTACTS_7B0_PROPERTY_DAYS_TO_CLOSE_AB1", - "CONTACTS_7B0_PROPERTY_DAYS_TO_CLOSE_AB2", - "CONTACTS_7B0_PROPERTY_DAYS_TO_CLOSE_AB3", - "CONTACTS_811_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN", - "CONTACTS_811_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB1", - "CONTACTS_811_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB2", - "CONTACTS_811_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB3", - "CONTACTS_822_PROPERTY_HS_EMAIL_LAST_EMAIL_NAME", - "CONTACTS_822_PROPERTY_HS_EMAIL_LAST_EMAIL_NAME_AB1", - "CONTACTS_822_PROPERTY_HS_EMAIL_LAST_EMAIL_NAME_AB2", - "CONTACTS_822_PROPERTY_HS_EMAIL_LAST_EMAIL_NAME_AB3", - "CONTACTS_86F_PROPERTY_COMPANY", - "CONTACTS_86F_PROPERTY_COMPANY_AB1", - "CONTACTS_86F_PROPERTY_COMPANY_AB2", - "CONTACTS_86F_PROPERTY_COMPANY_AB3", - "CONTACTS_886_PROPERTY_HS_ALL_ACCESSIBLE_TEAM_IDS", - "CONTACTS_886_PROPERTY_HS_ALL_ACCESSIBLE_TEAM_IDS_AB1", - "CONTACTS_886_PROPERTY_HS_ALL_ACCESSIBLE_TEAM_IDS_AB2", - "CONTACTS_886_PROPERTY_HS_ALL_ACCESSIBLE_TEAM_IDS_AB3", - "CONTACTS_893_PROPERTY_MESSAGE", - "CONTACTS_893_PROPERTY_MESSAGE_AB1", - "CONTACTS_893_PROPERTY_MESSAGE_AB2", - "CONTACTS_893_PROPERTY_MESSAGE_AB3", - "CONTACTS_8AE_PROPERTY_GENDER", - "CONTACTS_8AE_PROPERTY_GENDER_AB1", - "CONTACTS_8AE_PROPERTY_GENDER_AB2", - "CONTACTS_8AE_PROPERTY_GENDER_AB3", - "CONTACTS_8C7_PROPERTY_NUM_CONTACTED_NOTES", - "CONTACTS_8C7_PROPERTY_NUM_CONTACTED_NOTES_AB1", - "CONTACTS_8C7_PROPERTY_NUM_CONTACTED_NOTES_AB2", - "CONTACTS_8C7_PROPERTY_NUM_CONTACTED_NOTES_AB3", - "CONTACTS_8CA_PROPERTY_TOTAL_REVENUE", - "CONTACTS_8CA_PROPERTY_TOTAL_REVENUE_AB1", - "CONTACTS_8CA_PROPERTY_TOTAL_REVENUE_AB2", - "CONTACTS_8CA_PROPERTY_TOTAL_REVENUE_AB3", - "CONTACTS_8CB_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP", - "CONTACTS_8CB_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB1", - "CONTACTS_8CB_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB2", - "CONTACTS_8CB_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB3", - "CONTACTS_8CD_PROPERTY_SURVEYMONKEYEVENTLASTUPDATED", - "CONTACTS_8CD_PROPERTY_SURVEYMONKEYEVENTLASTUPDATED_AB1", - "CONTACTS_8CD_PROPERTY_SURVEYMONKEYEVENTLASTUPDATED_AB2", - "CONTACTS_8CD_PROPERTY_SURVEYMONKEYEVENTLASTUPDATED_AB3", - "CONTACTS_8ED_PROPERTY_HS_ALL_OWNER_IDS", - "CONTACTS_8ED_PROPERTY_HS_ALL_OWNER_IDS_AB1", - "CONTACTS_8ED_PROPERTY_HS_ALL_OWNER_IDS_AB2", - "CONTACTS_8ED_PROPERTY_HS_ALL_OWNER_IDS_AB3", - "CONTACTS_901_PROPERTY_HS_EMAILCONFIRMATIONSTATUS", - "CONTACTS_901_PROPERTY_HS_EMAILCONFIRMATIONSTATUS_AB1", - "CONTACTS_901_PROPERTY_HS_EMAILCONFIRMATIONSTATUS_AB2", - "CONTACTS_901_PROPERTY_HS_EMAILCONFIRMATIONSTATUS_AB3", - "CONTACTS_936_PROPERTY_HS_EMAIL_HARD_BOUNCE_REASON", - "CONTACTS_936_PROPERTY_HS_EMAIL_HARD_BOUNCE_REASON_AB1", - "CONTACTS_936_PROPERTY_HS_EMAIL_HARD_BOUNCE_REASON_AB2", - "CONTACTS_936_PROPERTY_HS_EMAIL_HARD_BOUNCE_REASON_AB3", - "CONTACTS_938_PROPERTY_HS_EMAIL_FIRST_OPEN_DATE", - "CONTACTS_938_PROPERTY_HS_EMAIL_FIRST_OPEN_DATE_AB1", - "CONTACTS_938_PROPERTY_HS_EMAIL_FIRST_OPEN_DATE_AB2", - "CONTACTS_938_PROPERTY_HS_EMAIL_FIRST_OPEN_DATE_AB3", - "CONTACTS_964_PROPERTY_NOTES_LAST_CONTACTED", - "CONTACTS_964_PROPERTY_NOTES_LAST_CONTACTED_AB1", - "CONTACTS_964_PROPERTY_NOTES_LAST_CONTACTED_AB2", - "CONTACTS_964_PROPERTY_NOTES_LAST_CONTACTED_AB3", - "CONTACTS_982_FORM_SUBMISSIONS", - "CONTACTS_982_FORM_SUBMISSIONS_AB1", - "CONTACTS_982_FORM_SUBMISSIONS_AB2", - "CONTACTS_982_FORM_SUBMISSIONS_AB3", - "CONTACTS_98A_PROPERTY_HS_CONTENT_MEMBERSHIP_NOTES", - "CONTACTS_98A_PROPERTY_HS_CONTENT_MEMBERSHIP_NOTES_AB1", - "CONTACTS_98A_PROPERTY_HS_CONTENT_MEMBERSHIP_NOTES_AB2", - "CONTACTS_98A_PROPERTY_HS_CONTENT_MEMBERSHIP_NOTES_AB3", - "CONTACTS_994_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2", - "CONTACTS_994_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_AB1", - "CONTACTS_994_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_AB2", - "CONTACTS_994_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_AB3", - "CONTACTS_99B_PROPERTY_LASTMODIFIEDDATE", - "CONTACTS_99B_PROPERTY_LASTMODIFIEDDATE_AB1", - "CONTACTS_99B_PROPERTY_LASTMODIFIEDDATE_AB2", - "CONTACTS_99B_PROPERTY_LASTMODIFIEDDATE_AB3", - "CONTACTS_9B0_PROPERTY_HS_CONTENT_MEMBERSHIP_STATUS", - "CONTACTS_9B0_PROPERTY_HS_CONTENT_MEMBERSHIP_STATUS_AB1", - "CONTACTS_9B0_PROPERTY_HS_CONTENT_MEMBERSHIP_STATUS_AB2", - "CONTACTS_9B0_PROPERTY_HS_CONTENT_MEMBERSHIP_STATUS_AB3", - "CONTACTS_9C3_PROPERTY_HS_SEARCHABLE_CALCULATED_PHONE_NUMBER", - "CONTACTS_9C3_PROPERTY_HS_SEARCHABLE_CALCULATED_PHONE_NUMBER_AB1", - "CONTACTS_9C3_PROPERTY_HS_SEARCHABLE_CALCULATED_PHONE_NUMBER_AB2", - "CONTACTS_9C3_PROPERTY_HS_SEARCHABLE_CALCULATED_PHONE_NUMBER_AB3", - "CONTACTS_9CA_PROPERTY_IP_STATE_CODE", - "CONTACTS_9CA_PROPERTY_IP_STATE_CODE_AB1", - "CONTACTS_9CA_PROPERTY_IP_STATE_CODE_AB2", - "CONTACTS_9CA_PROPERTY_IP_STATE_CODE_AB3", - "CONTACTS_9DD_PROPERTY_HS_TESTROLLBACK", - "CONTACTS_9DD_PROPERTY_HS_TESTROLLBACK_AB1", - "CONTACTS_9DD_PROPERTY_HS_TESTROLLBACK_AB2", - "CONTACTS_9DD_PROPERTY_HS_TESTROLLBACK_AB3", - "CONTACTS_9DE_PROPERTY_HS_EMAIL_FIRST_CLICK_DATE", - "CONTACTS_9DE_PROPERTY_HS_EMAIL_FIRST_CLICK_DATE_AB1", - "CONTACTS_9DE_PROPERTY_HS_EMAIL_FIRST_CLICK_DATE_AB2", - "CONTACTS_9DE_PROPERTY_HS_EMAIL_FIRST_CLICK_DATE_AB3", - "CONTACTS_9FE_PROPERTY_HS_CREATED_BY_CONVERSATIONS", - "CONTACTS_9FE_PROPERTY_HS_CREATED_BY_CONVERSATIONS_AB1", - "CONTACTS_9FE_PROPERTY_HS_CREATED_BY_CONVERSATIONS_AB2", - "CONTACTS_9FE_PROPERTY_HS_CREATED_BY_CONVERSATIONS_AB3", - "CONTACTS_A25_PROPERTY_HS_LATEST_MEETING_ACTIVITY", - "CONTACTS_A25_PROPERTY_HS_LATEST_MEETING_ACTIVITY_AB1", - "CONTACTS_A25_PROPERTY_HS_LATEST_MEETING_ACTIVITY_AB2", - "CONTACTS_A25_PROPERTY_HS_LATEST_MEETING_ACTIVITY_AB3", - "CONTACTS_A2F_PROPERTY_HS_SEQUENCES_IS_ENROLLED", - "CONTACTS_A2F_PROPERTY_HS_SEQUENCES_IS_ENROLLED_AB1", - "CONTACTS_A2F_PROPERTY_HS_SEQUENCES_IS_ENROLLED_AB2", - "CONTACTS_A2F_PROPERTY_HS_SEQUENCES_IS_ENROLLED_AB3", - "CONTACTS_A60_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN", - "CONTACTS_A60_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB1", - "CONTACTS_A60_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB2", - "CONTACTS_A60_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB3", - "CONTACTS_A6F_PROPERTY_FIRST_DEAL_CREATED_DATE", - "CONTACTS_A6F_PROPERTY_FIRST_DEAL_CREATED_DATE_AB1", - "CONTACTS_A6F_PROPERTY_FIRST_DEAL_CREATED_DATE_AB2", - "CONTACTS_A6F_PROPERTY_FIRST_DEAL_CREATED_DATE_AB3", - "CONTACTS_A76_PROPERTY_FIELD_OF_STUDY", - "CONTACTS_A76_PROPERTY_FIELD_OF_STUDY_AB1", - "CONTACTS_A76_PROPERTY_FIELD_OF_STUDY_AB2", - "CONTACTS_A76_PROPERTY_FIELD_OF_STUDY_AB3", - "CONTACTS_A85_PROPERTY_HS_ANALYTICS_AVERAGE_PAGE_VIEWS", - "CONTACTS_A85_PROPERTY_HS_ANALYTICS_AVERAGE_PAGE_VIEWS_AB1", - "CONTACTS_A85_PROPERTY_HS_ANALYTICS_AVERAGE_PAGE_VIEWS_AB2", - "CONTACTS_A85_PROPERTY_HS_ANALYTICS_AVERAGE_PAGE_VIEWS_AB3", - "CONTACTS_A92_PROPERTY_HS_SALES_EMAIL_LAST_REPLIED", - "CONTACTS_A92_PROPERTY_HS_SALES_EMAIL_LAST_REPLIED_AB1", - "CONTACTS_A92_PROPERTY_HS_SALES_EMAIL_LAST_REPLIED_AB2", - "CONTACTS_A92_PROPERTY_HS_SALES_EMAIL_LAST_REPLIED_AB3", - "CONTACTS_AA6_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP", - "CONTACTS_AA6_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB1", - "CONTACTS_AA6_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB2", - "CONTACTS_AA6_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB3", - "CONTACTS_AA8_PROPERTY_HUBSPOT_OWNER_ASSIGNEDDATE", - "CONTACTS_AA8_PROPERTY_HUBSPOT_OWNER_ASSIGNEDDATE_AB1", - "CONTACTS_AA8_PROPERTY_HUBSPOT_OWNER_ASSIGNEDDATE_AB2", - "CONTACTS_AA8_PROPERTY_HUBSPOT_OWNER_ASSIGNEDDATE_AB3", - "CONTACTS_AB7_PROPERTY_IP_STATE", - "CONTACTS_AB7_PROPERTY_IP_STATE_AB1", - "CONTACTS_AB7_PROPERTY_IP_STATE_AB2", - "CONTACTS_AB7_PROPERTY_IP_STATE_AB3", - "CONTACTS_AC7_PROPERTY_HS_EMAIL_SENDS_SINCE_LAST_ENGAGEMENT", - "CONTACTS_AC7_PROPERTY_HS_EMAIL_SENDS_SINCE_LAST_ENGAGEMENT_AB1", - "CONTACTS_AC7_PROPERTY_HS_EMAIL_SENDS_SINCE_LAST_ENGAGEMENT_AB2", - "CONTACTS_AC7_PROPERTY_HS_EMAIL_SENDS_SINCE_LAST_ENGAGEMENT_AB3", - "CONTACTS_AC8_PROPERTY_IP_CITY", - "CONTACTS_AC8_PROPERTY_IP_CITY_AB1", - "CONTACTS_AC8_PROPERTY_IP_CITY_AB2", - "CONTACTS_AC8_PROPERTY_IP_CITY_AB3", - "CONTACTS_AFF_PROPERTY_RECENT_DEAL_CLOSE_DATE", - "CONTACTS_AFF_PROPERTY_RECENT_DEAL_CLOSE_DATE_AB1", - "CONTACTS_AFF_PROPERTY_RECENT_DEAL_CLOSE_DATE_AB2", - "CONTACTS_AFF_PROPERTY_RECENT_DEAL_CLOSE_DATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_006_PROPERTY_NUM_NOTES", - "CONTACTS_ASSOCIATED_COMPANY_006_PROPERTY_NUM_NOTES_AB1", - "CONTACTS_ASSOCIATED_COMPANY_006_PROPERTY_NUM_NOTES_AB2", - "CONTACTS_ASSOCIATED_COMPANY_006_PROPERTY_NUM_NOTES_AB3", - "CONTACTS_ASSOCIATED_COMPANY_041_PROPERTY_IS_PUBLIC", - "CONTACTS_ASSOCIATED_COMPANY_041_PROPERTY_IS_PUBLIC_AB1", - "CONTACTS_ASSOCIATED_COMPANY_041_PROPERTY_IS_PUBLIC_AB2", - "CONTACTS_ASSOCIATED_COMPANY_041_PROPERTY_IS_PUBLIC_AB3", - "CONTACTS_ASSOCIATED_COMPANY_04F_PROPERTY_HS_NUM_BLOCKERS", - "CONTACTS_ASSOCIATED_COMPANY_04F_PROPERTY_HS_NUM_BLOCKERS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_04F_PROPERTY_HS_NUM_BLOCKERS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_04F_PROPERTY_HS_NUM_BLOCKERS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_05D_PROPERTY_HS_OBJECT_ID", - "CONTACTS_ASSOCIATED_COMPANY_05D_PROPERTY_HS_OBJECT_ID_AB1", - "CONTACTS_ASSOCIATED_COMPANY_05D_PROPERTY_HS_OBJECT_ID_AB2", - "CONTACTS_ASSOCIATED_COMPANY_05D_PROPERTY_HS_OBJECT_ID_AB3", - "CONTACTS_ASSOCIATED_COMPANY_087_PROPERTY_HS_LASTMODIFIEDDATE", - "CONTACTS_ASSOCIATED_COMPANY_087_PROPERTY_HS_LASTMODIFIEDDATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_087_PROPERTY_HS_LASTMODIFIEDDATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_087_PROPERTY_HS_LASTMODIFIEDDATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_089_PROPERTY_HS_NUM_DECISION_MAKERS", - "CONTACTS_ASSOCIATED_COMPANY_089_PROPERTY_HS_NUM_DECISION_MAKERS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_089_PROPERTY_HS_NUM_DECISION_MAKERS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_089_PROPERTY_HS_NUM_DECISION_MAKERS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_09C_PROPERTY_HS_ADDITIONAL_DOMAINS", - "CONTACTS_ASSOCIATED_COMPANY_09C_PROPERTY_HS_ADDITIONAL_DOMAINS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_09C_PROPERTY_HS_ADDITIONAL_DOMAINS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_09C_PROPERTY_HS_ADDITIONAL_DOMAINS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_0DB_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP", - "CONTACTS_ASSOCIATED_COMPANY_0DB_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_AB1", - "CONTACTS_ASSOCIATED_COMPANY_0DB_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_AB2", - "CONTACTS_ASSOCIATED_COMPANY_0DB_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_AB3", - "CONTACTS_ASSOCIATED_COMPANY_0FE_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_TIMESTAMP_EARLIEST_VALUE_9B2F1FA1", - "CONTACTS_ASSOCIATED_COMPANY_0FE_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_TIMESTAMP_EARLIEST_VALUE_9B2F1FA1_AB1", - "CONTACTS_ASSOCIATED_COMPANY_0FE_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_TIMESTAMP_EARLIEST_VALUE_9B2F1FA1_AB2", - "CONTACTS_ASSOCIATED_COMPANY_0FE_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_TIMESTAMP_EARLIEST_VALUE_9B2F1FA1_AB3", - "CONTACTS_ASSOCIATED_COMPANY_107_PROPERTY_LINKEDINBIO", - "CONTACTS_ASSOCIATED_COMPANY_107_PROPERTY_LINKEDINBIO_AB1", - "CONTACTS_ASSOCIATED_COMPANY_107_PROPERTY_LINKEDINBIO_AB2", - "CONTACTS_ASSOCIATED_COMPANY_107_PROPERTY_LINKEDINBIO_AB3", - "CONTACTS_ASSOCIATED_COMPANY_12C_PROPERTY_FIRST_CONVERSION_DATE_TIMESTAMP_EARLIEST_VALUE_61F58F2C", - "CONTACTS_ASSOCIATED_COMPANY_12C_PROPERTY_FIRST_CONVERSION_DATE_TIMESTAMP_EARLIEST_VALUE_61F58F2C_AB1", - "CONTACTS_ASSOCIATED_COMPANY_12C_PROPERTY_FIRST_CONVERSION_DATE_TIMESTAMP_EARLIEST_VALUE_61F58F2C_AB2", - "CONTACTS_ASSOCIATED_COMPANY_12C_PROPERTY_FIRST_CONVERSION_DATE_TIMESTAMP_EARLIEST_VALUE_61F58F2C_AB3", - "CONTACTS_ASSOCIATED_COMPANY_147_PROPERTY_NOTES_NEXT_ACTIVITY_DATE", - "CONTACTS_ASSOCIATED_COMPANY_147_PROPERTY_NOTES_NEXT_ACTIVITY_DATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_147_PROPERTY_NOTES_NEXT_ACTIVITY_DATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_147_PROPERTY_NOTES_NEXT_ACTIVITY_DATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_16F_PROPERTY_HS_LEAD_STATUS", - "CONTACTS_ASSOCIATED_COMPANY_16F_PROPERTY_HS_LEAD_STATUS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_16F_PROPERTY_HS_LEAD_STATUS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_16F_PROPERTY_HS_LEAD_STATUS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_171_PROPERTY_ADDRESS", - "CONTACTS_ASSOCIATED_COMPANY_171_PROPERTY_ADDRESS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_171_PROPERTY_ADDRESS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_171_PROPERTY_ADDRESS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_1BC_PROPERTY_HS_LAST_OPEN_TASK_DATE", - "CONTACTS_ASSOCIATED_COMPANY_1BC_PROPERTY_HS_LAST_OPEN_TASK_DATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_1BC_PROPERTY_HS_LAST_OPEN_TASK_DATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_1BC_PROPERTY_HS_LAST_OPEN_TASK_DATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_1CB_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED", - "CONTACTS_ASSOCIATED_COMPANY_1CB_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_AB1", - "CONTACTS_ASSOCIATED_COMPANY_1CB_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_AB2", - "CONTACTS_ASSOCIATED_COMPANY_1CB_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_AB3", - "CONTACTS_ASSOCIATED_COMPANY_1D9_PROPERTY_HS_ANALYTICS_NUM_VISITS", - "CONTACTS_ASSOCIATED_COMPANY_1D9_PROPERTY_HS_ANALYTICS_NUM_VISITS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_1D9_PROPERTY_HS_ANALYTICS_NUM_VISITS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_1D9_PROPERTY_HS_ANALYTICS_NUM_VISITS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_1E5_PROPERTY_HS_LAST_LOGGED_CALL_DATE", - "CONTACTS_ASSOCIATED_COMPANY_1E5_PROPERTY_HS_LAST_LOGGED_CALL_DATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_1E5_PROPERTY_HS_LAST_LOGGED_CALL_DATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_1E5_PROPERTY_HS_LAST_LOGGED_CALL_DATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_1E6_PROPERTY_FACEBOOK_COMPANY_PAGE", - "CONTACTS_ASSOCIATED_COMPANY_1E6_PROPERTY_FACEBOOK_COMPANY_PAGE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_1E6_PROPERTY_FACEBOOK_COMPANY_PAGE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_1E6_PROPERTY_FACEBOOK_COMPANY_PAGE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_1F5_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_ACCC17AE", - "CONTACTS_ASSOCIATED_COMPANY_1F5_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_ACCC17AE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_1F5_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_ACCC17AE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_1F5_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_ACCC17AE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_211_PROPERTY_CLOSEDATE", - "CONTACTS_ASSOCIATED_COMPANY_211_PROPERTY_CLOSEDATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_211_PROPERTY_CLOSEDATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_211_PROPERTY_CLOSEDATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_246_PROPERTY_CLOSEDATE_TIMESTAMP_EARLIEST_VALUE_A2A17E6E", - "CONTACTS_ASSOCIATED_COMPANY_246_PROPERTY_CLOSEDATE_TIMESTAMP_EARLIEST_VALUE_A2A17E6E_AB1", - "CONTACTS_ASSOCIATED_COMPANY_246_PROPERTY_CLOSEDATE_TIMESTAMP_EARLIEST_VALUE_A2A17E6E_AB2", - "CONTACTS_ASSOCIATED_COMPANY_246_PROPERTY_CLOSEDATE_TIMESTAMP_EARLIEST_VALUE_A2A17E6E_AB3", - "CONTACTS_ASSOCIATED_COMPANY_24D_PROPERTY_HS_LAST_SALES_ACTIVITY_DATE", - "CONTACTS_ASSOCIATED_COMPANY_24D_PROPERTY_HS_LAST_SALES_ACTIVITY_DATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_24D_PROPERTY_HS_LAST_SALES_ACTIVITY_DATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_24D_PROPERTY_HS_LAST_SALES_ACTIVITY_DATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_283_PROPERTY_DESCRIPTION", - "CONTACTS_ASSOCIATED_COMPANY_283_PROPERTY_DESCRIPTION_AB1", - "CONTACTS_ASSOCIATED_COMPANY_283_PROPERTY_DESCRIPTION_AB2", - "CONTACTS_ASSOCIATED_COMPANY_283_PROPERTY_DESCRIPTION_AB3", - "CONTACTS_ASSOCIATED_COMPANY_2BF_PROPERTY_HS_ANALYTICS_NUM_VISITS_CARDINALITY_SUM_53D952A6", - "CONTACTS_ASSOCIATED_COMPANY_2BF_PROPERTY_HS_ANALYTICS_NUM_VISITS_CARDINALITY_SUM_53D952A6_AB1", - "CONTACTS_ASSOCIATED_COMPANY_2BF_PROPERTY_HS_ANALYTICS_NUM_VISITS_CARDINALITY_SUM_53D952A6_AB2", - "CONTACTS_ASSOCIATED_COMPANY_2BF_PROPERTY_HS_ANALYTICS_NUM_VISITS_CARDINALITY_SUM_53D952A6_AB3", - "CONTACTS_ASSOCIATED_COMPANY_2CC_PROPERTY_DOMAIN", - "CONTACTS_ASSOCIATED_COMPANY_2CC_PROPERTY_DOMAIN_AB1", - "CONTACTS_ASSOCIATED_COMPANY_2CC_PROPERTY_DOMAIN_AB2", - "CONTACTS_ASSOCIATED_COMPANY_2CC_PROPERTY_DOMAIN_AB3", - "CONTACTS_ASSOCIATED_COMPANY_300_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1", - "CONTACTS_ASSOCIATED_COMPANY_300_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_AB1", - "CONTACTS_ASSOCIATED_COMPANY_300_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_AB2", - "CONTACTS_ASSOCIATED_COMPANY_300_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_AB3", - "CONTACTS_ASSOCIATED_COMPANY_380_PROPERTY_HS_PREDICTIVECONTACTSCORE_V2_NEXT_MAX_MAX_D4E58C1E", - "CONTACTS_ASSOCIATED_COMPANY_380_PROPERTY_HS_PREDICTIVECONTACTSCORE_V2_NEXT_MAX_MAX_D4E58C1E_AB1", - "CONTACTS_ASSOCIATED_COMPANY_380_PROPERTY_HS_PREDICTIVECONTACTSCORE_V2_NEXT_MAX_MAX_D4E58C1E_AB2", - "CONTACTS_ASSOCIATED_COMPANY_380_PROPERTY_HS_PREDICTIVECONTACTSCORE_V2_NEXT_MAX_MAX_D4E58C1E_AB3", - "CONTACTS_ASSOCIATED_COMPANY_3AA_PROPERTY_CREATEDATE", - "CONTACTS_ASSOCIATED_COMPANY_3AA_PROPERTY_CREATEDATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_3AA_PROPERTY_CREATEDATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_3AA_PROPERTY_CREATEDATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_3D7_PROPERTY_NUM_ASSOCIATED_CONTACTS", - "CONTACTS_ASSOCIATED_COMPANY_3D7_PROPERTY_NUM_ASSOCIATED_CONTACTS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_3D7_PROPERTY_NUM_ASSOCIATED_CONTACTS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_3D7_PROPERTY_NUM_ASSOCIATED_CONTACTS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_405_PROPERTY_HS_TARGET_ACCOUNT_RECOMMENDATION_STATE", - "CONTACTS_ASSOCIATED_COMPANY_405_PROPERTY_HS_TARGET_ACCOUNT_RECOMMENDATION_STATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_405_PROPERTY_HS_TARGET_ACCOUNT_RECOMMENDATION_STATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_405_PROPERTY_HS_TARGET_ACCOUNT_RECOMMENDATION_STATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_44B_PROPERTY_HS_IDEAL_CUSTOMER_PROFILE", - "CONTACTS_ASSOCIATED_COMPANY_44B_PROPERTY_HS_IDEAL_CUSTOMER_PROFILE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_44B_PROPERTY_HS_IDEAL_CUSTOMER_PROFILE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_44B_PROPERTY_HS_IDEAL_CUSTOMER_PROFILE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_457_PROPERTY_STATE", - "CONTACTS_ASSOCIATED_COMPANY_457_PROPERTY_STATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_457_PROPERTY_STATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_457_PROPERTY_STATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_459_PROPERTY_NOTES_LAST_UPDATED", - "CONTACTS_ASSOCIATED_COMPANY_459_PROPERTY_NOTES_LAST_UPDATED_AB1", - "CONTACTS_ASSOCIATED_COMPANY_459_PROPERTY_NOTES_LAST_UPDATED_AB2", - "CONTACTS_ASSOCIATED_COMPANY_459_PROPERTY_NOTES_LAST_UPDATED_AB3", - "CONTACTS_ASSOCIATED_COMPANY_47A_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE", - "CONTACTS_ASSOCIATED_COMPANY_47A_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_47A_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_47A_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_51E_PROPERTY_DAYS_TO_CLOSE", - "CONTACTS_ASSOCIATED_COMPANY_51E_PROPERTY_DAYS_TO_CLOSE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_51E_PROPERTY_DAYS_TO_CLOSE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_51E_PROPERTY_DAYS_TO_CLOSE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_521_PROPERTY_HS_TARGET_ACCOUNT_PROBABILITY", - "CONTACTS_ASSOCIATED_COMPANY_521_PROPERTY_HS_TARGET_ACCOUNT_PROBABILITY_AB1", - "CONTACTS_ASSOCIATED_COMPANY_521_PROPERTY_HS_TARGET_ACCOUNT_PROBABILITY_AB2", - "CONTACTS_ASSOCIATED_COMPANY_521_PROPERTY_HS_TARGET_ACCOUNT_PROBABILITY_AB3", - "CONTACTS_ASSOCIATED_COMPANY_524_PROPERTY_HS_ANALYTICS_SOURCE_TIMESTAMP_EARLIEST_VALUE_25A3A52C", - "CONTACTS_ASSOCIATED_COMPANY_524_PROPERTY_HS_ANALYTICS_SOURCE_TIMESTAMP_EARLIEST_VALUE_25A3A52C_AB1", - "CONTACTS_ASSOCIATED_COMPANY_524_PROPERTY_HS_ANALYTICS_SOURCE_TIMESTAMP_EARLIEST_VALUE_25A3A52C_AB2", - "CONTACTS_ASSOCIATED_COMPANY_524_PROPERTY_HS_ANALYTICS_SOURCE_TIMESTAMP_EARLIEST_VALUE_25A3A52C_AB3", - "CONTACTS_ASSOCIATED_COMPANY_542_PROPERTY_HS_TARGET_ACCOUNT", - "CONTACTS_ASSOCIATED_COMPANY_542_PROPERTY_HS_TARGET_ACCOUNT_AB1", - "CONTACTS_ASSOCIATED_COMPANY_542_PROPERTY_HS_TARGET_ACCOUNT_AB2", - "CONTACTS_ASSOCIATED_COMPANY_542_PROPERTY_HS_TARGET_ACCOUNT_AB3", - "CONTACTS_ASSOCIATED_COMPANY_554_PROPERTY_FIRST_DEAL_CREATED_DATE", - "CONTACTS_ASSOCIATED_COMPANY_554_PROPERTY_FIRST_DEAL_CREATED_DATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_554_PROPERTY_FIRST_DEAL_CREATED_DATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_554_PROPERTY_FIRST_DEAL_CREATED_DATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_554_PROPERTY_TOTAL_MONEY_RAISED", - "CONTACTS_ASSOCIATED_COMPANY_554_PROPERTY_TOTAL_MONEY_RAISED_AB1", - "CONTACTS_ASSOCIATED_COMPANY_554_PROPERTY_TOTAL_MONEY_RAISED_AB2", - "CONTACTS_ASSOCIATED_COMPANY_554_PROPERTY_TOTAL_MONEY_RAISED_AB3", - "CONTACTS_ASSOCIATED_COMPANY_582_PROPERTY_HUBSPOT_OWNER_ASSIGNEDDATE", - "CONTACTS_ASSOCIATED_COMPANY_582_PROPERTY_HUBSPOT_OWNER_ASSIGNEDDATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_582_PROPERTY_HUBSPOT_OWNER_ASSIGNEDDATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_582_PROPERTY_HUBSPOT_OWNER_ASSIGNEDDATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_59C_PROPERTY_NUM_CONVERSION_EVENTS_CARDINALITY_SUM_D095F14B", - "CONTACTS_ASSOCIATED_COMPANY_59C_PROPERTY_NUM_CONVERSION_EVENTS_CARDINALITY_SUM_D095F14B_AB1", - "CONTACTS_ASSOCIATED_COMPANY_59C_PROPERTY_NUM_CONVERSION_EVENTS_CARDINALITY_SUM_D095F14B_AB2", - "CONTACTS_ASSOCIATED_COMPANY_59C_PROPERTY_NUM_CONVERSION_EVENTS_CARDINALITY_SUM_D095F14B_AB3", - "CONTACTS_ASSOCIATED_COMPANY_5E3_PROPERTY_HS_ALL_ACCESSIBLE_TEAM_IDS", - "CONTACTS_ASSOCIATED_COMPANY_5E3_PROPERTY_HS_ALL_ACCESSIBLE_TEAM_IDS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_5E3_PROPERTY_HS_ALL_ACCESSIBLE_TEAM_IDS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_5E3_PROPERTY_HS_ALL_ACCESSIBLE_TEAM_IDS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_5E6_PROPERTIES_VERSIONS", - "CONTACTS_ASSOCIATED_COMPANY_5E6_PROPERTIES_VERSIONS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_5E6_PROPERTIES_VERSIONS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_5E6_PROPERTIES_VERSIONS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_610_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP", - "CONTACTS_ASSOCIATED_COMPANY_610_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB1", - "CONTACTS_ASSOCIATED_COMPANY_610_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB2", - "CONTACTS_ASSOCIATED_COMPANY_610_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB3", - "CONTACTS_ASSOCIATED_COMPANY_615_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_EARLIEST_VALUE_4757FE10", - "CONTACTS_ASSOCIATED_COMPANY_615_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_EARLIEST_VALUE_4757FE10_AB1", - "CONTACTS_ASSOCIATED_COMPANY_615_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_EARLIEST_VALUE_4757FE10_AB2", - "CONTACTS_ASSOCIATED_COMPANY_615_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_EARLIEST_VALUE_4757FE10_AB3", - "CONTACTS_ASSOCIATED_COMPANY_621_PROPERTY_ADDRESS2", - "CONTACTS_ASSOCIATED_COMPANY_621_PROPERTY_ADDRESS2_AB1", - "CONTACTS_ASSOCIATED_COMPANY_621_PROPERTY_ADDRESS2_AB2", - "CONTACTS_ASSOCIATED_COMPANY_621_PROPERTY_ADDRESS2_AB3", - "CONTACTS_ASSOCIATED_COMPANY_622_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN", - "CONTACTS_ASSOCIATED_COMPANY_622_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB1", - "CONTACTS_ASSOCIATED_COMPANY_622_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB2", - "CONTACTS_ASSOCIATED_COMPANY_622_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB3", - "CONTACTS_ASSOCIATED_COMPANY_633_PROPERTY_HS_ALL_OWNER_IDS", - "CONTACTS_ASSOCIATED_COMPANY_633_PROPERTY_HS_ALL_OWNER_IDS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_633_PROPERTY_HS_ALL_OWNER_IDS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_633_PROPERTY_HS_ALL_OWNER_IDS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_684_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM", - "CONTACTS_ASSOCIATED_COMPANY_684_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB1", - "CONTACTS_ASSOCIATED_COMPANY_684_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB2", - "CONTACTS_ASSOCIATED_COMPANY_684_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB3", - "CONTACTS_ASSOCIATED_COMPANY_6B4_PROPERTY_NUMBEROFEMPLOYEES", - "CONTACTS_ASSOCIATED_COMPANY_6B4_PROPERTY_NUMBEROFEMPLOYEES_AB1", - "CONTACTS_ASSOCIATED_COMPANY_6B4_PROPERTY_NUMBEROFEMPLOYEES_AB2", - "CONTACTS_ASSOCIATED_COMPANY_6B4_PROPERTY_NUMBEROFEMPLOYEES_AB3", - "CONTACTS_ASSOCIATED_COMPANY_6DB_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_TIMESTAMP_LATEST_VALUE_4E16365A", - "CONTACTS_ASSOCIATED_COMPANY_6DB_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_TIMESTAMP_LATEST_VALUE_4E16365A_AB1", - "CONTACTS_ASSOCIATED_COMPANY_6DB_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_TIMESTAMP_LATEST_VALUE_4E16365A_AB2", - "CONTACTS_ASSOCIATED_COMPANY_6DB_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_TIMESTAMP_LATEST_VALUE_4E16365A_AB3", - "CONTACTS_ASSOCIATED_COMPANY_710_PROPERTY_HS_IS_TARGET_ACCOUNT", - "CONTACTS_ASSOCIATED_COMPANY_710_PROPERTY_HS_IS_TARGET_ACCOUNT_AB1", - "CONTACTS_ASSOCIATED_COMPANY_710_PROPERTY_HS_IS_TARGET_ACCOUNT_AB2", - "CONTACTS_ASSOCIATED_COMPANY_710_PROPERTY_HS_IS_TARGET_ACCOUNT_AB3", - "CONTACTS_ASSOCIATED_COMPANY_71B_PROPERTY_HS_NUM_CHILD_COMPANIES", - "CONTACTS_ASSOCIATED_COMPANY_71B_PROPERTY_HS_NUM_CHILD_COMPANIES_AB1", - "CONTACTS_ASSOCIATED_COMPANY_71B_PROPERTY_HS_NUM_CHILD_COMPANIES_AB2", - "CONTACTS_ASSOCIATED_COMPANY_71B_PROPERTY_HS_NUM_CHILD_COMPANIES_AB3", - "CONTACTS_ASSOCIATED_COMPANY_772_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN", - "CONTACTS_ASSOCIATED_COMPANY_772_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB1", - "CONTACTS_ASSOCIATED_COMPANY_772_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB2", - "CONTACTS_ASSOCIATED_COMPANY_772_PROPERTY_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB3", - "CONTACTS_ASSOCIATED_COMPANY_792_PROPERTY_HS_CREATEDATE", - "CONTACTS_ASSOCIATED_COMPANY_792_PROPERTY_HS_CREATEDATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_792_PROPERTY_HS_CREATEDATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_792_PROPERTY_HS_CREATEDATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_79B_PROPERTY_NOTES_LAST_CONTACTED", - "CONTACTS_ASSOCIATED_COMPANY_79B_PROPERTY_NOTES_LAST_CONTACTED_AB1", - "CONTACTS_ASSOCIATED_COMPANY_79B_PROPERTY_NOTES_LAST_CONTACTED_AB2", - "CONTACTS_ASSOCIATED_COMPANY_79B_PROPERTY_NOTES_LAST_CONTACTED_AB3", - "CONTACTS_ASSOCIATED_COMPANY_7BD_PROPERTY_TWITTERHANDLE", - "CONTACTS_ASSOCIATED_COMPANY_7BD_PROPERTY_TWITTERHANDLE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_7BD_PROPERTY_TWITTERHANDLE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_7BD_PROPERTY_TWITTERHANDLE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_7D9_PROPERTY_FACEBOOKFANS", - "CONTACTS_ASSOCIATED_COMPANY_7D9_PROPERTY_FACEBOOKFANS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_7D9_PROPERTY_FACEBOOKFANS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_7D9_PROPERTY_FACEBOOKFANS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_801_PROPERTY_FIRST_CONTACT_CREATEDATE", - "CONTACTS_ASSOCIATED_COMPANY_801_PROPERTY_FIRST_CONTACT_CREATEDATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_801_PROPERTY_FIRST_CONTACT_CREATEDATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_801_PROPERTY_FIRST_CONTACT_CREATEDATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_804_PROPERTY_LIFECYCLESTAGE", - "CONTACTS_ASSOCIATED_COMPANY_804_PROPERTY_LIFECYCLESTAGE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_804_PROPERTY_LIFECYCLESTAGE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_804_PROPERTY_LIFECYCLESTAGE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_810_PROPERTY_HS_UPDATED_BY_USER_ID", - "CONTACTS_ASSOCIATED_COMPANY_810_PROPERTY_HS_UPDATED_BY_USER_ID_AB1", - "CONTACTS_ASSOCIATED_COMPANY_810_PROPERTY_HS_UPDATED_BY_USER_ID_AB2", - "CONTACTS_ASSOCIATED_COMPANY_810_PROPERTY_HS_UPDATED_BY_USER_ID_AB3", - "CONTACTS_ASSOCIATED_COMPANY_86D_PROPERTY_TWITTERFOLLOWERS", - "CONTACTS_ASSOCIATED_COMPANY_86D_PROPERTY_TWITTERFOLLOWERS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_86D_PROPERTY_TWITTERFOLLOWERS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_86D_PROPERTY_TWITTERFOLLOWERS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_872_PROPERTY_INDUSTRY", - "CONTACTS_ASSOCIATED_COMPANY_872_PROPERTY_INDUSTRY_AB1", - "CONTACTS_ASSOCIATED_COMPANY_872_PROPERTY_INDUSTRY_AB2", - "CONTACTS_ASSOCIATED_COMPANY_872_PROPERTY_INDUSTRY_AB3", - "CONTACTS_ASSOCIATED_COMPANY_883_PROPERTY_PHONE", - "CONTACTS_ASSOCIATED_COMPANY_883_PROPERTY_PHONE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_883_PROPERTY_PHONE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_883_PROPERTY_PHONE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_899_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_CARDINALITY_SUM_E46E85B0", - "CONTACTS_ASSOCIATED_COMPANY_899_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_CARDINALITY_SUM_E46E85B0_AB1", - "CONTACTS_ASSOCIATED_COMPANY_899_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_CARDINALITY_SUM_E46E85B0_AB2", - "CONTACTS_ASSOCIATED_COMPANY_899_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_CARDINALITY_SUM_E46E85B0_AB3", - "CONTACTS_ASSOCIATED_COMPANY_8E9_PROPERTY_HUBSPOT_TEAM_ID", - "CONTACTS_ASSOCIATED_COMPANY_8E9_PROPERTY_HUBSPOT_TEAM_ID_AB1", - "CONTACTS_ASSOCIATED_COMPANY_8E9_PROPERTY_HUBSPOT_TEAM_ID_AB2", - "CONTACTS_ASSOCIATED_COMPANY_8E9_PROPERTY_HUBSPOT_TEAM_ID_AB3", - "CONTACTS_ASSOCIATED_COMPANY_8EF_PROPERTY_ZIP", - "CONTACTS_ASSOCIATED_COMPANY_8EF_PROPERTY_ZIP_AB1", - "CONTACTS_ASSOCIATED_COMPANY_8EF_PROPERTY_ZIP_AB2", - "CONTACTS_ASSOCIATED_COMPANY_8EF_PROPERTY_ZIP_AB3", - "CONTACTS_ASSOCIATED_COMPANY_924_PROPERTY_HS_LAST_BOOKED_MEETING_DATE", - "CONTACTS_ASSOCIATED_COMPANY_924_PROPERTY_HS_LAST_BOOKED_MEETING_DATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_924_PROPERTY_HS_LAST_BOOKED_MEETING_DATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_924_PROPERTY_HS_LAST_BOOKED_MEETING_DATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_93B_PROPERTY_HS_LATEST_MEETING_ACTIVITY", - "CONTACTS_ASSOCIATED_COMPANY_93B_PROPERTY_HS_LATEST_MEETING_ACTIVITY_AB1", - "CONTACTS_ASSOCIATED_COMPANY_93B_PROPERTY_HS_LATEST_MEETING_ACTIVITY_AB2", - "CONTACTS_ASSOCIATED_COMPANY_93B_PROPERTY_HS_LATEST_MEETING_ACTIVITY_AB3", - "CONTACTS_ASSOCIATED_COMPANY_973_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_TIMESTAMP_LATEST_VALUE_999A0FCE", - "CONTACTS_ASSOCIATED_COMPANY_973_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_TIMESTAMP_LATEST_VALUE_999A0FCE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_973_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_TIMESTAMP_LATEST_VALUE_999A0FCE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_973_PROPERTY_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_TIMESTAMP_LATEST_VALUE_999A0FCE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_98C_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_LATEST_VALUE_81A64E30", - "CONTACTS_ASSOCIATED_COMPANY_98C_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_LATEST_VALUE_81A64E30_AB1", - "CONTACTS_ASSOCIATED_COMPANY_98C_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_LATEST_VALUE_81A64E30_AB2", - "CONTACTS_ASSOCIATED_COMPANY_98C_PROPERTY_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_LATEST_VALUE_81A64E30_AB3", - "CONTACTS_ASSOCIATED_COMPANY_9A4_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP", - "CONTACTS_ASSOCIATED_COMPANY_9A4_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB1", - "CONTACTS_ASSOCIATED_COMPANY_9A4_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB2", - "CONTACTS_ASSOCIATED_COMPANY_9A4_PROPERTY_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB3", - "CONTACTS_ASSOCIATED_COMPANY_9B2_PROPERTY_WEB_TECHNOLOGIES", - "CONTACTS_ASSOCIATED_COMPANY_9B2_PROPERTY_WEB_TECHNOLOGIES_AB1", - "CONTACTS_ASSOCIATED_COMPANY_9B2_PROPERTY_WEB_TECHNOLOGIES_AB2", - "CONTACTS_ASSOCIATED_COMPANY_9B2_PROPERTY_WEB_TECHNOLOGIES_AB3", - "CONTACTS_ASSOCIATED_COMPANY_9B7_PROPERTY_HS_CREATED_BY_USER_ID", - "CONTACTS_ASSOCIATED_COMPANY_9B7_PROPERTY_HS_CREATED_BY_USER_ID_AB1", - "CONTACTS_ASSOCIATED_COMPANY_9B7_PROPERTY_HS_CREATED_BY_USER_ID_AB2", - "CONTACTS_ASSOCIATED_COMPANY_9B7_PROPERTY_HS_CREATED_BY_USER_ID_AB3", - "CONTACTS_ASSOCIATED_COMPANY_9D3_PROPERTY_NUM_ASSOCIATED_DEALS", - "CONTACTS_ASSOCIATED_COMPANY_9D3_PROPERTY_NUM_ASSOCIATED_DEALS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_9D3_PROPERTY_NUM_ASSOCIATED_DEALS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_9D3_PROPERTY_NUM_ASSOCIATED_DEALS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_A22_PROPERTY_ANNUALREVENUE", - "CONTACTS_ASSOCIATED_COMPANY_A22_PROPERTY_ANNUALREVENUE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_A22_PROPERTY_ANNUALREVENUE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_A22_PROPERTY_ANNUALREVENUE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_A35_PROPERTY_TIMEZONE", - "CONTACTS_ASSOCIATED_COMPANY_A35_PROPERTY_TIMEZONE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_A35_PROPERTY_TIMEZONE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_A35_PROPERTY_TIMEZONE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_A63_PROPERTY_WEBSITE", - "CONTACTS_ASSOCIATED_COMPANY_A63_PROPERTY_WEBSITE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_A63_PROPERTY_WEBSITE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_A63_PROPERTY_WEBSITE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_A94_PROPERTY_HS_TOTAL_DEAL_VALUE", - "CONTACTS_ASSOCIATED_COMPANY_A94_PROPERTY_HS_TOTAL_DEAL_VALUE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_A94_PROPERTY_HS_TOTAL_DEAL_VALUE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_A94_PROPERTY_HS_TOTAL_DEAL_VALUE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_ABC_PROPERTY_TOTAL_REVENUE", - "CONTACTS_ASSOCIATED_COMPANY_ABC_PROPERTY_TOTAL_REVENUE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_ABC_PROPERTY_TOTAL_REVENUE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_ABC_PROPERTY_TOTAL_REVENUE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_AE9_PROPERTY_COUNTRY", - "CONTACTS_ASSOCIATED_COMPANY_AE9_PROPERTY_COUNTRY_AB1", - "CONTACTS_ASSOCIATED_COMPANY_AE9_PROPERTY_COUNTRY_AB2", - "CONTACTS_ASSOCIATED_COMPANY_AE9_PROPERTY_COUNTRY_AB3", - "CONTACTS_ASSOCIATED_COMPANY_B06_PROPERTY_HS_MERGED_OBJECT_IDS", - "CONTACTS_ASSOCIATED_COMPANY_B06_PROPERTY_HS_MERGED_OBJECT_IDS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_B06_PROPERTY_HS_MERGED_OBJECT_IDS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_B06_PROPERTY_HS_MERGED_OBJECT_IDS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_B80_PROPERTY_RECENT_DEAL_CLOSE_DATE", - "CONTACTS_ASSOCIATED_COMPANY_B80_PROPERTY_RECENT_DEAL_CLOSE_DATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_B80_PROPERTY_RECENT_DEAL_CLOSE_DATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_B80_PROPERTY_RECENT_DEAL_CLOSE_DATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_BB4_PROPERTY_NUM_CONTACTED_NOTES", - "CONTACTS_ASSOCIATED_COMPANY_BB4_PROPERTY_NUM_CONTACTED_NOTES_AB1", - "CONTACTS_ASSOCIATED_COMPANY_BB4_PROPERTY_NUM_CONTACTED_NOTES_AB2", - "CONTACTS_ASSOCIATED_COMPANY_BB4_PROPERTY_NUM_CONTACTED_NOTES_AB3", - "CONTACTS_ASSOCIATED_COMPANY_BD1_PROPERTY_HS_TARGET_ACCOUNT_RECOMMENDATION_SNOOZE_TIME", - "CONTACTS_ASSOCIATED_COMPANY_BD1_PROPERTY_HS_TARGET_ACCOUNT_RECOMMENDATION_SNOOZE_TIME_AB1", - "CONTACTS_ASSOCIATED_COMPANY_BD1_PROPERTY_HS_TARGET_ACCOUNT_RECOMMENDATION_SNOOZE_TIME_AB2", - "CONTACTS_ASSOCIATED_COMPANY_BD1_PROPERTY_HS_TARGET_ACCOUNT_RECOMMENDATION_SNOOZE_TIME_AB3", - "CONTACTS_ASSOCIATED_COMPANY_BEB_PROPERTIES", - "CONTACTS_ASSOCIATED_COMPANY_BEB_PROPERTIES_AB1", - "CONTACTS_ASSOCIATED_COMPANY_BEB_PROPERTIES_AB2", - "CONTACTS_ASSOCIATED_COMPANY_BEB_PROPERTIES_AB3", - "CONTACTS_ASSOCIATED_COMPANY_C3B_PROPERTY_HS_SALES_EMAIL_LAST_REPLIED", - "CONTACTS_ASSOCIATED_COMPANY_C3B_PROPERTY_HS_SALES_EMAIL_LAST_REPLIED_AB1", - "CONTACTS_ASSOCIATED_COMPANY_C3B_PROPERTY_HS_SALES_EMAIL_LAST_REPLIED_AB2", - "CONTACTS_ASSOCIATED_COMPANY_C3B_PROPERTY_HS_SALES_EMAIL_LAST_REPLIED_AB3", - "CONTACTS_ASSOCIATED_COMPANY_C5F_PROPERTY_TYPE", - "CONTACTS_ASSOCIATED_COMPANY_C5F_PROPERTY_TYPE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_C5F_PROPERTY_TYPE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_C5F_PROPERTY_TYPE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_C7D_PROPERTY_HS_USER_IDS_OF_ALL_OWNERS", - "CONTACTS_ASSOCIATED_COMPANY_C7D_PROPERTY_HS_USER_IDS_OF_ALL_OWNERS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_C7D_PROPERTY_HS_USER_IDS_OF_ALL_OWNERS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_C7D_PROPERTY_HS_USER_IDS_OF_ALL_OWNERS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_CA1_PROPERTY_LINKEDIN_COMPANY_PAGE", - "CONTACTS_ASSOCIATED_COMPANY_CA1_PROPERTY_LINKEDIN_COMPANY_PAGE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_CA1_PROPERTY_LINKEDIN_COMPANY_PAGE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_CA1_PROPERTY_LINKEDIN_COMPANY_PAGE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_CD8_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_11E3A63A", - "CONTACTS_ASSOCIATED_COMPANY_CD8_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_11E3A63A_AB1", - "CONTACTS_ASSOCIATED_COMPANY_CD8_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_11E3A63A_AB2", - "CONTACTS_ASSOCIATED_COMPANY_CD8_PROPERTY_HS_ANALYTICS_FIRST_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_11E3A63A_AB3", - "CONTACTS_ASSOCIATED_COMPANY_D03_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_TIMESTAMP_EARLIEST_VALUE_9B2F9400", - "CONTACTS_ASSOCIATED_COMPANY_D03_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_TIMESTAMP_EARLIEST_VALUE_9B2F9400_AB1", - "CONTACTS_ASSOCIATED_COMPANY_D03_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_TIMESTAMP_EARLIEST_VALUE_9B2F9400_AB2", - "CONTACTS_ASSOCIATED_COMPANY_D03_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_TIMESTAMP_EARLIEST_VALUE_9B2F9400_AB3", - "CONTACTS_ASSOCIATED_COMPANY_D05_PROPERTY_TWITTERBIO", - "CONTACTS_ASSOCIATED_COMPANY_D05_PROPERTY_TWITTERBIO_AB1", - "CONTACTS_ASSOCIATED_COMPANY_D05_PROPERTY_TWITTERBIO_AB2", - "CONTACTS_ASSOCIATED_COMPANY_D05_PROPERTY_TWITTERBIO_AB3", - "CONTACTS_ASSOCIATED_COMPANY_D47_PROPERTY_FOUNDED_YEAR", - "CONTACTS_ASSOCIATED_COMPANY_D47_PROPERTY_FOUNDED_YEAR_AB1", - "CONTACTS_ASSOCIATED_COMPANY_D47_PROPERTY_FOUNDED_YEAR_AB2", - "CONTACTS_ASSOCIATED_COMPANY_D47_PROPERTY_FOUNDED_YEAR_AB3", - "CONTACTS_ASSOCIATED_COMPANY_D56_PROPERTY_RECENT_CONVERSION_EVENT_NAME_TIMESTAMP_LATEST_VALUE_66C820BF", - "CONTACTS_ASSOCIATED_COMPANY_D56_PROPERTY_RECENT_CONVERSION_EVENT_NAME_TIMESTAMP_LATEST_VALUE_66C820BF_AB1", - "CONTACTS_ASSOCIATED_COMPANY_D56_PROPERTY_RECENT_CONVERSION_EVENT_NAME_TIMESTAMP_LATEST_VALUE_66C820BF_AB2", - "CONTACTS_ASSOCIATED_COMPANY_D56_PROPERTY_RECENT_CONVERSION_EVENT_NAME_TIMESTAMP_LATEST_VALUE_66C820BF_AB3", - "CONTACTS_ASSOCIATED_COMPANY_DA3_PROPERTY_HUBSPOT_OWNER_ID", - "CONTACTS_ASSOCIATED_COMPANY_DA3_PROPERTY_HUBSPOT_OWNER_ID_AB1", - "CONTACTS_ASSOCIATED_COMPANY_DA3_PROPERTY_HUBSPOT_OWNER_ID_AB2", - "CONTACTS_ASSOCIATED_COMPANY_DA3_PROPERTY_HUBSPOT_OWNER_ID_AB3", - "CONTACTS_ASSOCIATED_COMPANY_E17_PROPERTY_HS_AVATAR_FILEMANAGER_KEY", - "CONTACTS_ASSOCIATED_COMPANY_E17_PROPERTY_HS_AVATAR_FILEMANAGER_KEY_AB1", - "CONTACTS_ASSOCIATED_COMPANY_E17_PROPERTY_HS_AVATAR_FILEMANAGER_KEY_AB2", - "CONTACTS_ASSOCIATED_COMPANY_E17_PROPERTY_HS_AVATAR_FILEMANAGER_KEY_AB3", - "CONTACTS_ASSOCIATED_COMPANY_E1E_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN", - "CONTACTS_ASSOCIATED_COMPANY_E1E_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB1", - "CONTACTS_ASSOCIATED_COMPANY_E1E_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB2", - "CONTACTS_ASSOCIATED_COMPANY_E1E_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB3", - "CONTACTS_ASSOCIATED_COMPANY_E1F_PROPERTY_HS_ALL_TEAM_IDS", - "CONTACTS_ASSOCIATED_COMPANY_E1F_PROPERTY_HS_ALL_TEAM_IDS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_E1F_PROPERTY_HS_ALL_TEAM_IDS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_E1F_PROPERTY_HS_ALL_TEAM_IDS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_E2C_PROPERTY_ABOUT_US", - "CONTACTS_ASSOCIATED_COMPANY_E2C_PROPERTY_ABOUT_US_AB1", - "CONTACTS_ASSOCIATED_COMPANY_E2C_PROPERTY_ABOUT_US_AB2", - "CONTACTS_ASSOCIATED_COMPANY_E2C_PROPERTY_ABOUT_US_AB3", - "CONTACTS_ASSOCIATED_COMPANY_E2C_PROPERTY_RECENT_CONVERSION_DATE_TIMESTAMP_LATEST_VALUE_72856DA1", - "CONTACTS_ASSOCIATED_COMPANY_E2C_PROPERTY_RECENT_CONVERSION_DATE_TIMESTAMP_LATEST_VALUE_72856DA1_AB1", - "CONTACTS_ASSOCIATED_COMPANY_E2C_PROPERTY_RECENT_CONVERSION_DATE_TIMESTAMP_LATEST_VALUE_72856DA1_AB2", - "CONTACTS_ASSOCIATED_COMPANY_E2C_PROPERTY_RECENT_CONVERSION_DATE_TIMESTAMP_LATEST_VALUE_72856DA1_AB3", - "CONTACTS_ASSOCIATED_COMPANY_E56_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2", - "CONTACTS_ASSOCIATED_COMPANY_E56_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_AB1", - "CONTACTS_ASSOCIATED_COMPANY_E56_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_AB2", - "CONTACTS_ASSOCIATED_COMPANY_E56_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_AB3", - "CONTACTS_ASSOCIATED_COMPANY_E59_PROPERTY_FIRST_CONTACT_CREATEDATE_TIMESTAMP_EARLIEST_VALUE_78B50EEA", - "CONTACTS_ASSOCIATED_COMPANY_E59_PROPERTY_FIRST_CONTACT_CREATEDATE_TIMESTAMP_EARLIEST_VALUE_78B50EEA_AB1", - "CONTACTS_ASSOCIATED_COMPANY_E59_PROPERTY_FIRST_CONTACT_CREATEDATE_TIMESTAMP_EARLIEST_VALUE_78B50EEA_AB2", - "CONTACTS_ASSOCIATED_COMPANY_E59_PROPERTY_FIRST_CONTACT_CREATEDATE_TIMESTAMP_EARLIEST_VALUE_78B50EEA_AB3", - "CONTACTS_ASSOCIATED_COMPANY_E81_PROPERTY_HS_LAST_SALES_ACTIVITY_TIMESTAMP", - "CONTACTS_ASSOCIATED_COMPANY_E81_PROPERTY_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB1", - "CONTACTS_ASSOCIATED_COMPANY_E81_PROPERTY_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB2", - "CONTACTS_ASSOCIATED_COMPANY_E81_PROPERTY_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB3", - "CONTACTS_ASSOCIATED_COMPANY_E8E_PROPERTY_GOOGLEPLUS_PAGE", - "CONTACTS_ASSOCIATED_COMPANY_E8E_PROPERTY_GOOGLEPLUS_PAGE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_E8E_PROPERTY_GOOGLEPLUS_PAGE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_E8E_PROPERTY_GOOGLEPLUS_PAGE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_ED5_PROPERTY_CITY", - "CONTACTS_ASSOCIATED_COMPANY_ED5_PROPERTY_CITY_AB1", - "CONTACTS_ASSOCIATED_COMPANY_ED5_PROPERTY_CITY_AB2", - "CONTACTS_ASSOCIATED_COMPANY_ED5_PROPERTY_CITY_AB3", - "CONTACTS_ASSOCIATED_COMPANY_ED6_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS", - "CONTACTS_ASSOCIATED_COMPANY_ED6_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_ED6_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_ED6_PROPERTY_HS_ANALYTICS_NUM_PAGE_VIEWS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_EEC_PROPERTY_HS_ANALYTICS_SOURCE", - "CONTACTS_ASSOCIATED_COMPANY_EEC_PROPERTY_HS_ANALYTICS_SOURCE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_EEC_PROPERTY_HS_ANALYTICS_SOURCE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_EEC_PROPERTY_HS_ANALYTICS_SOURCE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_EED_PROPERTY_NAME", - "CONTACTS_ASSOCIATED_COMPANY_EED_PROPERTY_NAME_AB1", - "CONTACTS_ASSOCIATED_COMPANY_EED_PROPERTY_NAME_AB2", - "CONTACTS_ASSOCIATED_COMPANY_EED_PROPERTY_NAME_AB3", - "CONTACTS_ASSOCIATED_COMPANY_F09_PROPERTY_RECENT_DEAL_AMOUNT", - "CONTACTS_ASSOCIATED_COMPANY_F09_PROPERTY_RECENT_DEAL_AMOUNT_AB1", - "CONTACTS_ASSOCIATED_COMPANY_F09_PROPERTY_RECENT_DEAL_AMOUNT_AB2", - "CONTACTS_ASSOCIATED_COMPANY_F09_PROPERTY_RECENT_DEAL_AMOUNT_AB3", - "CONTACTS_ASSOCIATED_COMPANY_F1E_PROPERTY_HS_PARENT_COMPANY_ID", - "CONTACTS_ASSOCIATED_COMPANY_F1E_PROPERTY_HS_PARENT_COMPANY_ID_AB1", - "CONTACTS_ASSOCIATED_COMPANY_F1E_PROPERTY_HS_PARENT_COMPANY_ID_AB2", - "CONTACTS_ASSOCIATED_COMPANY_F1E_PROPERTY_HS_PARENT_COMPANY_ID_AB3", - "CONTACTS_ASSOCIATED_COMPANY_F65_PROPERTY_HS_NUM_CONTACTS_WITH_BUYING_ROLES", - "CONTACTS_ASSOCIATED_COMPANY_F65_PROPERTY_HS_NUM_CONTACTS_WITH_BUYING_ROLES_AB1", - "CONTACTS_ASSOCIATED_COMPANY_F65_PROPERTY_HS_NUM_CONTACTS_WITH_BUYING_ROLES_AB2", - "CONTACTS_ASSOCIATED_COMPANY_F65_PROPERTY_HS_NUM_CONTACTS_WITH_BUYING_ROLES_AB3", - "CONTACTS_ASSOCIATED_COMPANY_F7F_PROPERTY_HS_NUM_OPEN_DEALS", - "CONTACTS_ASSOCIATED_COMPANY_F7F_PROPERTY_HS_NUM_OPEN_DEALS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_F7F_PROPERTY_HS_NUM_OPEN_DEALS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_F7F_PROPERTY_HS_NUM_OPEN_DEALS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_FC8_PROPERTY_FIRST_CONVERSION_EVENT_NAME_TIMESTAMP_EARLIEST_VALUE_68DDAE0A", - "CONTACTS_ASSOCIATED_COMPANY_FC8_PROPERTY_FIRST_CONVERSION_EVENT_NAME_TIMESTAMP_EARLIEST_VALUE_68DDAE0A_AB1", - "CONTACTS_ASSOCIATED_COMPANY_FC8_PROPERTY_FIRST_CONVERSION_EVENT_NAME_TIMESTAMP_EARLIEST_VALUE_68DDAE0A_AB2", - "CONTACTS_ASSOCIATED_COMPANY_FC8_PROPERTY_FIRST_CONVERSION_EVENT_NAME_TIMESTAMP_EARLIEST_VALUE_68DDAE0A_AB3", - "CONTACTS_ASSOCIATED_COMPANY_FF0_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP", - "CONTACTS_ASSOCIATED_COMPANY_FF0_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_AB1", - "CONTACTS_ASSOCIATED_COMPANY_FF0_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_AB2", - "CONTACTS_ASSOCIATED_COMPANY_FF0_PROPERTY_HS_ANALYTICS_LAST_TIMESTAMP_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_01F_INDUSTRY", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_01F_INDUSTRY_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_01F_INDUSTRY_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_01F_INDUSTRY_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_027_HS_TARGET_ACCOUNT_RECOMMENDATION_STATE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_027_HS_TARGET_ACCOUNT_RECOMMENDATION_STATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_027_HS_TARGET_ACCOUNT_RECOMMENDATION_STATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_027_HS_TARGET_ACCOUNT_RECOMMENDATION_STATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_05C_HUBSPOT_OWNER_ASSIGNEDDATE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_05C_HUBSPOT_OWNER_ASSIGNEDDATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_05C_HUBSPOT_OWNER_ASSIGNEDDATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_05C_HUBSPOT_OWNER_ASSIGNEDDATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_060_CREATEDATE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_060_CREATEDATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_060_CREATEDATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_060_CREATEDATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_074_RECENT_CONVERSION_EVENT_NAME_TIMESTAMP_LATEST_VALUE_66C820BF", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_074_RECENT_CONVERSION_EVENT_NAME_TIMESTAMP_LATEST_VALUE_66C820BF_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_074_RECENT_CONVERSION_EVENT_NAME_TIMESTAMP_LATEST_VALUE_66C820BF_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_074_RECENT_CONVERSION_EVENT_NAME_TIMESTAMP_LATEST_VALUE_66C820BF_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_087_NUM_ASSOCIATED_CONTACTS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_087_NUM_ASSOCIATED_CONTACTS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_087_NUM_ASSOCIATED_CONTACTS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_087_NUM_ASSOCIATED_CONTACTS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_0AB_LINKEDINBIO", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_0AB_LINKEDINBIO_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_0AB_LINKEDINBIO_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_0AB_LINKEDINBIO_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_0DF_HS_CREATED_BY_USER_ID", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_0DF_HS_CREATED_BY_USER_ID_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_0DF_HS_CREATED_BY_USER_ID_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_0DF_HS_CREATED_BY_USER_ID_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_102_PHONE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_102_PHONE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_102_PHONE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_102_PHONE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_123_COUNTRY", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_123_COUNTRY_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_123_COUNTRY_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_123_COUNTRY_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_129_HS_CREATEDATE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_129_HS_CREATEDATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_129_HS_CREATEDATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_129_HS_CREATEDATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_138_HS_USER_IDS_OF_ALL_OWNERS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_138_HS_USER_IDS_OF_ALL_OWNERS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_138_HS_USER_IDS_OF_ALL_OWNERS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_138_HS_USER_IDS_OF_ALL_OWNERS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_14A_DAYS_TO_CLOSE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_14A_DAYS_TO_CLOSE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_14A_DAYS_TO_CLOSE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_14A_DAYS_TO_CLOSE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_152_ABOUT_US", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_152_ABOUT_US_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_152_ABOUT_US_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_152_ABOUT_US_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_15C_TIMEZONE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_15C_TIMEZONE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_15C_TIMEZONE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_15C_TIMEZONE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_174_HS_LAST_SALES_ACTIVITY_DATE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_174_HS_LAST_SALES_ACTIVITY_DATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_174_HS_LAST_SALES_ACTIVITY_DATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_174_HS_LAST_SALES_ACTIVITY_DATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_19C_RECENT_DEAL_CLOSE_DATE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_19C_RECENT_DEAL_CLOSE_DATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_19C_RECENT_DEAL_CLOSE_DATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_19C_RECENT_DEAL_CLOSE_DATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_1A0_NUM_NOTES", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_1A0_NUM_NOTES_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_1A0_NUM_NOTES_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_1A0_NUM_NOTES_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_1E1_HS_ALL_TEAM_IDS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_1E1_HS_ALL_TEAM_IDS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_1E1_HS_ALL_TEAM_IDS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_1E1_HS_ALL_TEAM_IDS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_20D_HS_LATEST_MEETING_ACTIVITY", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_20D_HS_LATEST_MEETING_ACTIVITY_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_20D_HS_LATEST_MEETING_ACTIVITY_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_20D_HS_LATEST_MEETING_ACTIVITY_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_290_TOTAL_REVENUE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_290_TOTAL_REVENUE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_290_TOTAL_REVENUE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_290_TOTAL_REVENUE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_2B8_FIRST_DEAL_CREATED_DATE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_2B8_FIRST_DEAL_CREATED_DATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_2B8_FIRST_DEAL_CREATED_DATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_2B8_FIRST_DEAL_CREATED_DATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_2B8_HS_NUM_CHILD_COMPANIES", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_2B8_HS_NUM_CHILD_COMPANIES_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_2B8_HS_NUM_CHILD_COMPANIES_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_2B8_HS_NUM_CHILD_COMPANIES_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_2D0_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_EARLIEST_VALUE_4757FE10", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_2D0_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_EARLIEST_VALUE_4757FE10_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_2D0_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_EARLIEST_VALUE_4757FE10_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_2D0_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_EARLIEST_VALUE_4757FE10_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_3AE_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_3AE_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_3AE_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_3AE_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_403_HS_ANALYTICS_SOURCE_DATA_1_TIMESTAMP_EARLIEST_VALUE_9B2F1FA1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_403_HS_ANALYTICS_SOURCE_DATA_1_TIMESTAMP_EARLIEST_VALUE_9B2F1FA1_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_403_HS_ANALYTICS_SOURCE_DATA_1_TIMESTAMP_EARLIEST_VALUE_9B2F1FA1_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_403_HS_ANALYTICS_SOURCE_DATA_1_TIMESTAMP_EARLIEST_VALUE_9B2F1FA1_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_411_HS_ADDITIONAL_DOMAINS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_411_HS_ADDITIONAL_DOMAINS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_411_HS_ADDITIONAL_DOMAINS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_411_HS_ADDITIONAL_DOMAINS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_447_HS_LASTMODIFIEDDATE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_447_HS_LASTMODIFIEDDATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_447_HS_LASTMODIFIEDDATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_447_HS_LASTMODIFIEDDATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_46A_TOTAL_MONEY_RAISED", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_46A_TOTAL_MONEY_RAISED_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_46A_TOTAL_MONEY_RAISED_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_46A_TOTAL_MONEY_RAISED_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_4B1_FIRST_CONTACT_CREATEDATE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_4B1_FIRST_CONTACT_CREATEDATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_4B1_FIRST_CONTACT_CREATEDATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_4B1_FIRST_CONTACT_CREATEDATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_51F_TWITTERHANDLE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_51F_TWITTERHANDLE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_51F_TWITTERHANDLE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_51F_TWITTERHANDLE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_533_FACEBOOKFANS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_533_FACEBOOKFANS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_533_FACEBOOKFANS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_533_FACEBOOKFANS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_541_ANNUALREVENUE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_541_ANNUALREVENUE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_541_ANNUALREVENUE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_541_ANNUALREVENUE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_560_HS_ANALYTICS_SOURCE_DATA_2_TIMESTAMP_EARLIEST_VALUE_9B2F9400", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_560_HS_ANALYTICS_SOURCE_DATA_2_TIMESTAMP_EARLIEST_VALUE_9B2F9400_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_560_HS_ANALYTICS_SOURCE_DATA_2_TIMESTAMP_EARLIEST_VALUE_9B2F9400_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_560_HS_ANALYTICS_SOURCE_DATA_2_TIMESTAMP_EARLIEST_VALUE_9B2F9400_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_57A_HS_PREDICTIVECONTACTSCORE_V2_NEXT_MAX_MAX_D4E58C1E", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_57A_HS_PREDICTIVECONTACTSCORE_V2_NEXT_MAX_MAX_D4E58C1E_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_57A_HS_PREDICTIVECONTACTSCORE_V2_NEXT_MAX_MAX_D4E58C1E_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_57A_HS_PREDICTIVECONTACTSCORE_V2_NEXT_MAX_MAX_D4E58C1E_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_57B_FIRST_CONVERSION_EVENT_NAME_TIMESTAMP_EARLIEST_VALUE_68DDAE0A", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_57B_FIRST_CONVERSION_EVENT_NAME_TIMESTAMP_EARLIEST_VALUE_68DDAE0A_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_57B_FIRST_CONVERSION_EVENT_NAME_TIMESTAMP_EARLIEST_VALUE_68DDAE0A_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_57B_FIRST_CONVERSION_EVENT_NAME_TIMESTAMP_EARLIEST_VALUE_68DDAE0A_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_57D_HS_TOTAL_DEAL_VALUE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_57D_HS_TOTAL_DEAL_VALUE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_57D_HS_TOTAL_DEAL_VALUE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_57D_HS_TOTAL_DEAL_VALUE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_5AC_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_TIMESTAMP_LATEST_VALUE_999A0FCE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_5AC_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_TIMESTAMP_LATEST_VALUE_999A0FCE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_5AC_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_TIMESTAMP_LATEST_VALUE_999A0FCE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_5AC_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_TIMESTAMP_LATEST_VALUE_999A0FCE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_5E7_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_ACCC17AE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_5E7_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_ACCC17AE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_5E7_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_ACCC17AE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_5E7_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_ACCC17AE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_5FE_ZIP", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_5FE_ZIP_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_5FE_ZIP_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_5FE_ZIP_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_685_HS_ANALYTICS_NUM_VISITS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_685_HS_ANALYTICS_NUM_VISITS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_685_HS_ANALYTICS_NUM_VISITS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_685_HS_ANALYTICS_NUM_VISITS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_6C3_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_6C3_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_6C3_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_6C3_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_6D9_NUMBEROFEMPLOYEES", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_6D9_NUMBEROFEMPLOYEES_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_6D9_NUMBEROFEMPLOYEES_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_6D9_NUMBEROFEMPLOYEES_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_6EF_ENGAGEMENTS_LAST_MEETING_BOOKED", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_6EF_ENGAGEMENTS_LAST_MEETING_BOOKED_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_6EF_ENGAGEMENTS_LAST_MEETING_BOOKED_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_6EF_ENGAGEMENTS_LAST_MEETING_BOOKED_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_70E_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_70E_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_70E_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_70E_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_719_NUM_ASSOCIATED_DEALS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_719_NUM_ASSOCIATED_DEALS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_719_NUM_ASSOCIATED_DEALS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_719_NUM_ASSOCIATED_DEALS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_738_HS_ALL_ACCESSIBLE_TEAM_IDS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_738_HS_ALL_ACCESSIBLE_TEAM_IDS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_738_HS_ALL_ACCESSIBLE_TEAM_IDS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_738_HS_ALL_ACCESSIBLE_TEAM_IDS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_76B_WEB_TECHNOLOGIES", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_76B_WEB_TECHNOLOGIES_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_76B_WEB_TECHNOLOGIES_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_76B_WEB_TECHNOLOGIES_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_785_HS_SALES_EMAIL_LAST_REPLIED", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_785_HS_SALES_EMAIL_LAST_REPLIED_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_785_HS_SALES_EMAIL_LAST_REPLIED_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_785_HS_SALES_EMAIL_LAST_REPLIED_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_79E_HS_OBJECT_ID", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_79E_HS_OBJECT_ID_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_79E_HS_OBJECT_ID_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_79E_HS_OBJECT_ID_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_7E5_RECENT_CONVERSION_DATE_TIMESTAMP_LATEST_VALUE_72856DA1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_7E5_RECENT_CONVERSION_DATE_TIMESTAMP_LATEST_VALUE_72856DA1_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_7E5_RECENT_CONVERSION_DATE_TIMESTAMP_LATEST_VALUE_72856DA1_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_7E5_RECENT_CONVERSION_DATE_TIMESTAMP_LATEST_VALUE_72856DA1_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_80F_NOTES_LAST_CONTACTED", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_80F_NOTES_LAST_CONTACTED_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_80F_NOTES_LAST_CONTACTED_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_80F_NOTES_LAST_CONTACTED_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_810_GOOGLEPLUS_PAGE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_810_GOOGLEPLUS_PAGE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_810_GOOGLEPLUS_PAGE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_810_GOOGLEPLUS_PAGE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_818_HS_ANALYTICS_FIRST_TIMESTAMP", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_818_HS_ANALYTICS_FIRST_TIMESTAMP_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_818_HS_ANALYTICS_FIRST_TIMESTAMP_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_818_HS_ANALYTICS_FIRST_TIMESTAMP_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_81D_NUM_CONTACTED_NOTES", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_81D_NUM_CONTACTED_NOTES_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_81D_NUM_CONTACTED_NOTES_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_81D_NUM_CONTACTED_NOTES_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_82E_ADDRESS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_82E_ADDRESS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_82E_ADDRESS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_82E_ADDRESS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_839_ADDRESS2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_839_ADDRESS2_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_839_ADDRESS2_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_839_ADDRESS2_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_85E_HS_ANALYTICS_SOURCE_DATA_1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_85E_HS_ANALYTICS_SOURCE_DATA_1_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_85E_HS_ANALYTICS_SOURCE_DATA_1_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_85E_HS_ANALYTICS_SOURCE_DATA_1_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_869_HS_IDEAL_CUSTOMER_PROFILE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_869_HS_IDEAL_CUSTOMER_PROFILE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_869_HS_IDEAL_CUSTOMER_PROFILE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_869_HS_IDEAL_CUSTOMER_PROFILE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_86C_HS_UPDATED_BY_USER_ID", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_86C_HS_UPDATED_BY_USER_ID_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_86C_HS_UPDATED_BY_USER_ID_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_86C_HS_UPDATED_BY_USER_ID_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_87A_NUM_CONVERSION_EVENTS_CARDINALITY_SUM_D095F14B", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_87A_NUM_CONVERSION_EVENTS_CARDINALITY_SUM_D095F14B_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_87A_NUM_CONVERSION_EVENTS_CARDINALITY_SUM_D095F14B_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_87A_NUM_CONVERSION_EVENTS_CARDINALITY_SUM_D095F14B_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_882_HUBSPOT_OWNER_ID", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_882_HUBSPOT_OWNER_ID_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_882_HUBSPOT_OWNER_ID_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_882_HUBSPOT_OWNER_ID_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_883_FIRST_CONVERSION_DATE_TIMESTAMP_EARLIEST_VALUE_61F58F2C", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_883_FIRST_CONVERSION_DATE_TIMESTAMP_EARLIEST_VALUE_61F58F2C_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_883_FIRST_CONVERSION_DATE_TIMESTAMP_EARLIEST_VALUE_61F58F2C_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_883_FIRST_CONVERSION_DATE_TIMESTAMP_EARLIEST_VALUE_61F58F2C_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_8B4_DESCRIPTION", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_8B4_DESCRIPTION_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_8B4_DESCRIPTION_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_8B4_DESCRIPTION_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_8CF_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_LATEST_VALUE_81A64E30", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_8CF_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_LATEST_VALUE_81A64E30_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_8CF_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_LATEST_VALUE_81A64E30_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_8CF_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_TIMESTAMP_LATEST_VALUE_81A64E30_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_91F_CITY", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_91F_CITY_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_91F_CITY_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_91F_CITY_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_937_CLOSEDATE_TIMESTAMP_EARLIEST_VALUE_A2A17E6E", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_937_CLOSEDATE_TIMESTAMP_EARLIEST_VALUE_A2A17E6E_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_937_CLOSEDATE_TIMESTAMP_EARLIEST_VALUE_A2A17E6E_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_937_CLOSEDATE_TIMESTAMP_EARLIEST_VALUE_A2A17E6E_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_93C_STATE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_93C_STATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_93C_STATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_93C_STATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_946_HS_LAST_OPEN_TASK_DATE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_946_HS_LAST_OPEN_TASK_DATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_946_HS_LAST_OPEN_TASK_DATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_946_HS_LAST_OPEN_TASK_DATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_953_HS_MERGED_OBJECT_IDS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_953_HS_MERGED_OBJECT_IDS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_953_HS_MERGED_OBJECT_IDS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_953_HS_MERGED_OBJECT_IDS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_9BF_LINKEDIN_COMPANY_PAGE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_9BF_LINKEDIN_COMPANY_PAGE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_9BF_LINKEDIN_COMPANY_PAGE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_9BF_LINKEDIN_COMPANY_PAGE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_9D6_HS_TARGET_ACCOUNT_RECOMMENDATION_SNOOZE_TIME", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_9D6_HS_TARGET_ACCOUNT_RECOMMENDATION_SNOOZE_TIME_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_9D6_HS_TARGET_ACCOUNT_RECOMMENDATION_SNOOZE_TIME_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_9D6_HS_TARGET_ACCOUNT_RECOMMENDATION_SNOOZE_TIME_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_9DA_HS_LAST_LOGGED_CALL_DATE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_9DA_HS_LAST_LOGGED_CALL_DATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_9DA_HS_LAST_LOGGED_CALL_DATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_9DA_HS_LAST_LOGGED_CALL_DATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_A2F_HS_ALL_OWNER_IDS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_A2F_HS_ALL_OWNER_IDS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_A2F_HS_ALL_OWNER_IDS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_A2F_HS_ALL_OWNER_IDS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_A64_LIFECYCLESTAGE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_A64_LIFECYCLESTAGE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_A64_LIFECYCLESTAGE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_A64_LIFECYCLESTAGE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_A73_FACEBOOK_COMPANY_PAGE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_A73_FACEBOOK_COMPANY_PAGE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_A73_FACEBOOK_COMPANY_PAGE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_A73_FACEBOOK_COMPANY_PAGE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_AA0_FOUNDED_YEAR", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_AA0_FOUNDED_YEAR_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_AA0_FOUNDED_YEAR_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_AA0_FOUNDED_YEAR_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_ACD_DOMAIN", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_ACD_DOMAIN_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_ACD_DOMAIN_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_ACD_DOMAIN_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_B4E_HS_LAST_BOOKED_MEETING_DATE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_B4E_HS_LAST_BOOKED_MEETING_DATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_B4E_HS_LAST_BOOKED_MEETING_DATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_B4E_HS_LAST_BOOKED_MEETING_DATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BC4_HS_TARGET_ACCOUNT", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BC4_HS_TARGET_ACCOUNT_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BC4_HS_TARGET_ACCOUNT_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BC4_HS_TARGET_ACCOUNT_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BC9_HS_NUM_BLOCKERS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BC9_HS_NUM_BLOCKERS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BC9_HS_NUM_BLOCKERS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BC9_HS_NUM_BLOCKERS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BCB_TWITTERBIO", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BCB_TWITTERBIO_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BCB_TWITTERBIO_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BCB_TWITTERBIO_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BE9_HS_ANALYTICS_SOURCE_DATA_2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BE9_HS_ANALYTICS_SOURCE_DATA_2_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BE9_HS_ANALYTICS_SOURCE_DATA_2_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BE9_HS_ANALYTICS_SOURCE_DATA_2_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BF0_NAME", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BF0_NAME_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BF0_NAME_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BF0_NAME_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BF1_HS_ANALYTICS_LAST_TIMESTAMP_TIMESTAMP_LATEST_VALUE_4E16365A", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BF1_HS_ANALYTICS_LAST_TIMESTAMP_TIMESTAMP_LATEST_VALUE_4E16365A_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BF1_HS_ANALYTICS_LAST_TIMESTAMP_TIMESTAMP_LATEST_VALUE_4E16365A_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_BF1_HS_ANALYTICS_LAST_TIMESTAMP_TIMESTAMP_LATEST_VALUE_4E16365A_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_C38_HS_IS_TARGET_ACCOUNT", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_C38_HS_IS_TARGET_ACCOUNT_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_C38_HS_IS_TARGET_ACCOUNT_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_C38_HS_IS_TARGET_ACCOUNT_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_C70_HS_TARGET_ACCOUNT_PROBABILITY", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_C70_HS_TARGET_ACCOUNT_PROBABILITY_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_C70_HS_TARGET_ACCOUNT_PROBABILITY_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_C70_HS_TARGET_ACCOUNT_PROBABILITY_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_CD0_HS_ANALYTICS_FIRST_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_11E3A63A", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_CD0_HS_ANALYTICS_FIRST_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_11E3A63A_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_CD0_HS_ANALYTICS_FIRST_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_11E3A63A_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_CD0_HS_ANALYTICS_FIRST_TIMESTAMP_TIMESTAMP_EARLIEST_VALUE_11E3A63A_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_CF9_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_CF9_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_CF9_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_CF9_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_CFE_FIRST_CONTACT_CREATEDATE_TIMESTAMP_EARLIEST_VALUE_78B50EEA", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_CFE_FIRST_CONTACT_CREATEDATE_TIMESTAMP_EARLIEST_VALUE_78B50EEA_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_CFE_FIRST_CONTACT_CREATEDATE_TIMESTAMP_EARLIEST_VALUE_78B50EEA_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_CFE_FIRST_CONTACT_CREATEDATE_TIMESTAMP_EARLIEST_VALUE_78B50EEA_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D1F_HS_ANALYTICS_SOURCE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D1F_HS_ANALYTICS_SOURCE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D1F_HS_ANALYTICS_SOURCE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D1F_HS_ANALYTICS_SOURCE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D24_TWITTERFOLLOWERS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D24_TWITTERFOLLOWERS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D24_TWITTERFOLLOWERS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D24_TWITTERFOLLOWERS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D32_HS_ANALYTICS_NUM_PAGE_VIEWS_CARDINALITY_SUM_E46E85B0", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D32_HS_ANALYTICS_NUM_PAGE_VIEWS_CARDINALITY_SUM_E46E85B0_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D32_HS_ANALYTICS_NUM_PAGE_VIEWS_CARDINALITY_SUM_E46E85B0_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D32_HS_ANALYTICS_NUM_PAGE_VIEWS_CARDINALITY_SUM_E46E85B0_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D43_HS_NUM_DECISION_MAKERS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D43_HS_NUM_DECISION_MAKERS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D43_HS_NUM_DECISION_MAKERS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D43_HS_NUM_DECISION_MAKERS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D52_HUBSPOT_TEAM_ID", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D52_HUBSPOT_TEAM_ID_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D52_HUBSPOT_TEAM_ID_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D52_HUBSPOT_TEAM_ID_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D5A_HS_ANALYTICS_NUM_PAGE_VIEWS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D5A_HS_ANALYTICS_NUM_PAGE_VIEWS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D5A_HS_ANALYTICS_NUM_PAGE_VIEWS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D5A_HS_ANALYTICS_NUM_PAGE_VIEWS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D97_HS_ANALYTICS_NUM_VISITS_CARDINALITY_SUM_53D952A6", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D97_HS_ANALYTICS_NUM_VISITS_CARDINALITY_SUM_53D952A6_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D97_HS_ANALYTICS_NUM_VISITS_CARDINALITY_SUM_53D952A6_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D97_HS_ANALYTICS_NUM_VISITS_CARDINALITY_SUM_53D952A6_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D9F_IS_PUBLIC", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D9F_IS_PUBLIC_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D9F_IS_PUBLIC_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_D9F_IS_PUBLIC_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_DB2_HS_AVATAR_FILEMANAGER_KEY", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_DB2_HS_AVATAR_FILEMANAGER_KEY_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_DB2_HS_AVATAR_FILEMANAGER_KEY_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_DB2_HS_AVATAR_FILEMANAGER_KEY_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_DBB_CLOSEDATE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_DBB_CLOSEDATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_DBB_CLOSEDATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_DBB_CLOSEDATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_E23_HS_NUM_CONTACTS_WITH_BUYING_ROLES", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_E23_HS_NUM_CONTACTS_WITH_BUYING_ROLES_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_E23_HS_NUM_CONTACTS_WITH_BUYING_ROLES_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_E23_HS_NUM_CONTACTS_WITH_BUYING_ROLES_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_E8E_HS_ANALYTICS_LAST_VISIT_TIMESTAMP", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_E8E_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_E8E_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_E8E_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_EA6_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_EA6_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_EA6_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_EA6_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_EDD_HS_PARENT_COMPANY_ID", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_EDD_HS_PARENT_COMPANY_ID_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_EDD_HS_PARENT_COMPANY_ID_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_EDD_HS_PARENT_COMPANY_ID_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_EEF_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_EEF_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_EEF_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_EEF_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F00_HS_ANALYTICS_LAST_TIMESTAMP", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F00_HS_ANALYTICS_LAST_TIMESTAMP_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F00_HS_ANALYTICS_LAST_TIMESTAMP_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F00_HS_ANALYTICS_LAST_TIMESTAMP_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F4F_HS_LEAD_STATUS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F4F_HS_LEAD_STATUS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F4F_HS_LEAD_STATUS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F4F_HS_LEAD_STATUS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F57_WEBSITE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F57_WEBSITE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F57_WEBSITE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F57_WEBSITE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F5E_HS_NUM_OPEN_DEALS", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F5E_HS_NUM_OPEN_DEALS_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F5E_HS_NUM_OPEN_DEALS_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F5E_HS_NUM_OPEN_DEALS_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F64_RECENT_DEAL_AMOUNT", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F64_RECENT_DEAL_AMOUNT_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F64_RECENT_DEAL_AMOUNT_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F64_RECENT_DEAL_AMOUNT_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F6B_HS_LAST_SALES_ACTIVITY_TIMESTAMP", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F6B_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F6B_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F6B_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F7B_NOTES_NEXT_ACTIVITY_DATE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F7B_NOTES_NEXT_ACTIVITY_DATE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F7B_NOTES_NEXT_ACTIVITY_DATE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F7B_NOTES_NEXT_ACTIVITY_DATE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F7C_HS_ANALYTICS_SOURCE_TIMESTAMP_EARLIEST_VALUE_25A3A52C", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F7C_HS_ANALYTICS_SOURCE_TIMESTAMP_EARLIEST_VALUE_25A3A52C_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F7C_HS_ANALYTICS_SOURCE_TIMESTAMP_EARLIEST_VALUE_25A3A52C_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_F7C_HS_ANALYTICS_SOURCE_TIMESTAMP_EARLIEST_VALUE_25A3A52C_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_FB2_TYPE", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_FB2_TYPE_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_FB2_TYPE_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_FB2_TYPE_AB3", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_FC9_NOTES_LAST_UPDATED", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_FC9_NOTES_LAST_UPDATED_AB1", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_FC9_NOTES_LAST_UPDATED_AB2", - "CONTACTS_ASSOCIATED_COMPANY_PROPERTIES_FC9_NOTES_LAST_UPDATED_AB3", - "CONTACTS_B1E_ASSOCIATED_COMPANY", - "CONTACTS_B1E_ASSOCIATED_COMPANY_AB1", - "CONTACTS_B1E_ASSOCIATED_COMPANY_AB2", - "CONTACTS_B1E_ASSOCIATED_COMPANY_AB3", - "CONTACTS_B3F_PROPERTY_HS_DOCUMENT_LAST_REVISITED", - "CONTACTS_B3F_PROPERTY_HS_DOCUMENT_LAST_REVISITED_AB1", - "CONTACTS_B3F_PROPERTY_HS_DOCUMENT_LAST_REVISITED_AB2", - "CONTACTS_B3F_PROPERTY_HS_DOCUMENT_LAST_REVISITED_AB3", - "CONTACTS_B44_PROPERTY_HS_ANALYTICS_LAST_REFERRER", - "CONTACTS_B44_PROPERTY_HS_ANALYTICS_LAST_REFERRER_AB1", - "CONTACTS_B44_PROPERTY_HS_ANALYTICS_LAST_REFERRER_AB2", - "CONTACTS_B44_PROPERTY_HS_ANALYTICS_LAST_REFERRER_AB3", - "CONTACTS_B51_PROPERTY_HS_COUNT_IS_WORKED", - "CONTACTS_B51_PROPERTY_HS_COUNT_IS_WORKED_AB1", - "CONTACTS_B51_PROPERTY_HS_COUNT_IS_WORKED_AB2", - "CONTACTS_B51_PROPERTY_HS_COUNT_IS_WORKED_AB3", - "CONTACTS_B64_PROPERTY_HS_EMAIL_IS_INELIGIBLE", - "CONTACTS_B64_PROPERTY_HS_EMAIL_IS_INELIGIBLE_AB1", - "CONTACTS_B64_PROPERTY_HS_EMAIL_IS_INELIGIBLE_AB2", - "CONTACTS_B64_PROPERTY_HS_EMAIL_IS_INELIGIBLE_AB3", - "CONTACTS_B95_PROPERTY_HS_LIFECYCLESTAGE_CUSTOMER_DATE", - "CONTACTS_B95_PROPERTY_HS_LIFECYCLESTAGE_CUSTOMER_DATE_AB1", - "CONTACTS_B95_PROPERTY_HS_LIFECYCLESTAGE_CUSTOMER_DATE_AB2", - "CONTACTS_B95_PROPERTY_HS_LIFECYCLESTAGE_CUSTOMER_DATE_AB3", - "CONTACTS_B9B_PROPERTY_RELATIONSHIP_STATUS", - "CONTACTS_B9B_PROPERTY_RELATIONSHIP_STATUS_AB1", - "CONTACTS_B9B_PROPERTY_RELATIONSHIP_STATUS_AB2", - "CONTACTS_B9B_PROPERTY_RELATIONSHIP_STATUS_AB3", - "CONTACTS_BA6_PROPERTY_STATE", - "CONTACTS_BA6_PROPERTY_STATE_AB1", - "CONTACTS_BA6_PROPERTY_STATE_AB2", - "CONTACTS_BA6_PROPERTY_STATE_AB3", - "CONTACTS_BBD_PROPERTY_HS_CALCULATED_MOBILE_NUMBER", - "CONTACTS_BBD_PROPERTY_HS_CALCULATED_MOBILE_NUMBER_AB1", - "CONTACTS_BBD_PROPERTY_HS_CALCULATED_MOBILE_NUMBER_AB2", - "CONTACTS_BBD_PROPERTY_HS_CALCULATED_MOBILE_NUMBER_AB3", - "CONTACTS_BD7_PROPERTY_HS_SEARCHABLE_CALCULATED_INTERNATIONAL_MOBILE_NUMBER", - "CONTACTS_BD7_PROPERTY_HS_SEARCHABLE_CALCULATED_INTERNATIONAL_MOBILE_NUMBER_AB1", - "CONTACTS_BD7_PROPERTY_HS_SEARCHABLE_CALCULATED_INTERNATIONAL_MOBILE_NUMBER_AB2", - "CONTACTS_BD7_PROPERTY_HS_SEARCHABLE_CALCULATED_INTERNATIONAL_MOBILE_NUMBER_AB3", - "CONTACTS_C07_PROPERTY_HS_EMAIL_CUSTOMER_QUARANTINED_REASON", - "CONTACTS_C07_PROPERTY_HS_EMAIL_CUSTOMER_QUARANTINED_REASON_AB1", - "CONTACTS_C07_PROPERTY_HS_EMAIL_CUSTOMER_QUARANTINED_REASON_AB2", - "CONTACTS_C07_PROPERTY_HS_EMAIL_CUSTOMER_QUARANTINED_REASON_AB3", - "CONTACTS_C20_PROPERTY_HS_UPDATED_BY_USER_ID", - "CONTACTS_C20_PROPERTY_HS_UPDATED_BY_USER_ID_AB1", - "CONTACTS_C20_PROPERTY_HS_UPDATED_BY_USER_ID_AB2", - "CONTACTS_C20_PROPERTY_HS_UPDATED_BY_USER_ID_AB3", - "CONTACTS_C35_PROPERTY_JOB_FUNCTION", - "CONTACTS_C35_PROPERTY_JOB_FUNCTION_AB1", - "CONTACTS_C35_PROPERTY_JOB_FUNCTION_AB2", - "CONTACTS_C35_PROPERTY_JOB_FUNCTION_AB3", - "CONTACTS_C44_PROPERTY_HS_SEARCHABLE_CALCULATED_MOBILE_NUMBER", - "CONTACTS_C44_PROPERTY_HS_SEARCHABLE_CALCULATED_MOBILE_NUMBER_AB1", - "CONTACTS_C44_PROPERTY_HS_SEARCHABLE_CALCULATED_MOBILE_NUMBER_AB2", - "CONTACTS_C44_PROPERTY_HS_SEARCHABLE_CALCULATED_MOBILE_NUMBER_AB3", - "CONTACTS_C4B_PROPERTY_HUBSPOT_TEAM_ID", - "CONTACTS_C4B_PROPERTY_HUBSPOT_TEAM_ID_AB1", - "CONTACTS_C4B_PROPERTY_HUBSPOT_TEAM_ID_AB2", - "CONTACTS_C4B_PROPERTY_HUBSPOT_TEAM_ID_AB3", - "CONTACTS_C7A_PROPERTY_HS_LIFECYCLESTAGE_SALESQUALIFIEDLEAD_DATE", - "CONTACTS_C7A_PROPERTY_HS_LIFECYCLESTAGE_SALESQUALIFIEDLEAD_DATE_AB1", - "CONTACTS_C7A_PROPERTY_HS_LIFECYCLESTAGE_SALESQUALIFIEDLEAD_DATE_AB2", - "CONTACTS_C7A_PROPERTY_HS_LIFECYCLESTAGE_SALESQUALIFIEDLEAD_DATE_AB3", - "CONTACTS_C86_PROPERTY_HS_SA_FIRST_ENGAGEMENT_DESCR", - "CONTACTS_C86_PROPERTY_HS_SA_FIRST_ENGAGEMENT_DESCR_AB1", - "CONTACTS_C86_PROPERTY_HS_SA_FIRST_ENGAGEMENT_DESCR_AB2", - "CONTACTS_C86_PROPERTY_HS_SA_FIRST_ENGAGEMENT_DESCR_AB3", - "CONTACTS_CAE_PROPERTY_HS_LIFECYCLESTAGE_OTHER_DATE", - "CONTACTS_CAE_PROPERTY_HS_LIFECYCLESTAGE_OTHER_DATE_AB1", - "CONTACTS_CAE_PROPERTY_HS_LIFECYCLESTAGE_OTHER_DATE_AB2", - "CONTACTS_CAE_PROPERTY_HS_LIFECYCLESTAGE_OTHER_DATE_AB3", - "CONTACTS_CB8_PROPERTY_IP_ZIPCODE", - "CONTACTS_CB8_PROPERTY_IP_ZIPCODE_AB1", - "CONTACTS_CB8_PROPERTY_IP_ZIPCODE_AB2", - "CONTACTS_CB8_PROPERTY_IP_ZIPCODE_AB3", - "CONTACTS_CC5_PROPERTY_HS_CONVERSATIONS_VISITOR_EMAIL", - "CONTACTS_CC5_PROPERTY_HS_CONVERSATIONS_VISITOR_EMAIL_AB1", - "CONTACTS_CC5_PROPERTY_HS_CONVERSATIONS_VISITOR_EMAIL_AB2", - "CONTACTS_CC5_PROPERTY_HS_CONVERSATIONS_VISITOR_EMAIL_AB3", - "CONTACTS_CD3_PROPERTY_HS_LIFECYCLESTAGE_MARKETINGQUALIFIEDLEAD_DATE", - "CONTACTS_CD3_PROPERTY_HS_LIFECYCLESTAGE_MARKETINGQUALIFIEDLEAD_DATE_AB1", - "CONTACTS_CD3_PROPERTY_HS_LIFECYCLESTAGE_MARKETINGQUALIFIEDLEAD_DATE_AB2", - "CONTACTS_CD3_PROPERTY_HS_LIFECYCLESTAGE_MARKETINGQUALIFIEDLEAD_DATE_AB3", - "CONTACTS_CF0_PROPERTY_PHONE", - "CONTACTS_CF0_PROPERTY_PHONE_AB1", - "CONTACTS_CF0_PROPERTY_PHONE_AB2", - "CONTACTS_CF0_PROPERTY_PHONE_AB3", - "CONTACTS_D19_PROPERTY_HS_CONTENT_MEMBERSHIP_REGISTERED_AT", - "CONTACTS_D19_PROPERTY_HS_CONTENT_MEMBERSHIP_REGISTERED_AT_AB1", - "CONTACTS_D19_PROPERTY_HS_CONTENT_MEMBERSHIP_REGISTERED_AT_AB2", - "CONTACTS_D19_PROPERTY_HS_CONTENT_MEMBERSHIP_REGISTERED_AT_AB3", - "CONTACTS_D3D_PROPERTY_HS_SEARCHABLE_CALCULATED_INTERNATIONAL_PHONE_NUMBER", - "CONTACTS_D3D_PROPERTY_HS_SEARCHABLE_CALCULATED_INTERNATIONAL_PHONE_NUMBER_AB1", - "CONTACTS_D3D_PROPERTY_HS_SEARCHABLE_CALCULATED_INTERNATIONAL_PHONE_NUMBER_AB2", - "CONTACTS_D3D_PROPERTY_HS_SEARCHABLE_CALCULATED_INTERNATIONAL_PHONE_NUMBER_AB3", - "CONTACTS_D49_PROPERTY_NUMEMPLOYEES", - "CONTACTS_D49_PROPERTY_NUMEMPLOYEES_AB1", - "CONTACTS_D49_PROPERTY_NUMEMPLOYEES_AB2", - "CONTACTS_D49_PROPERTY_NUMEMPLOYEES_AB3", - "CONTACTS_DC5_PROPERTY_IP_COUNTRY", - "CONTACTS_DC5_PROPERTY_IP_COUNTRY_AB1", - "CONTACTS_DC5_PROPERTY_IP_COUNTRY_AB2", - "CONTACTS_DC5_PROPERTY_IP_COUNTRY_AB3", - "CONTACTS_DD2_PROPERTY_HS_COUNT_IS_UNWORKED", - "CONTACTS_DD2_PROPERTY_HS_COUNT_IS_UNWORKED_AB1", - "CONTACTS_DD2_PROPERTY_HS_COUNT_IS_UNWORKED_AB2", - "CONTACTS_DD2_PROPERTY_HS_COUNT_IS_UNWORKED_AB3", - "CONTACTS_DDF_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE", - "CONTACTS_DDF_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB1", - "CONTACTS_DDF_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB2", - "CONTACTS_DDF_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB3", - "CONTACTS_DEF_PROPERTY_JOBTITLE", - "CONTACTS_DEF_PROPERTY_JOBTITLE_AB1", - "CONTACTS_DEF_PROPERTY_JOBTITLE_AB2", - "CONTACTS_DEF_PROPERTY_JOBTITLE_AB3", - "CONTACTS_DF1_PROPERTY_HS_CREATEDATE", - "CONTACTS_DF1_PROPERTY_HS_CREATEDATE_AB1", - "CONTACTS_DF1_PROPERTY_HS_CREATEDATE_AB2", - "CONTACTS_DF1_PROPERTY_HS_CREATEDATE_AB3", - "CONTACTS_E1B_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM", - "CONTACTS_E1B_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB1", - "CONTACTS_E1B_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB2", - "CONTACTS_E1B_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB3", - "CONTACTS_E23_PROPERTY_DEGREE", - "CONTACTS_E23_PROPERTY_DEGREE_AB1", - "CONTACTS_E23_PROPERTY_DEGREE_AB2", - "CONTACTS_E23_PROPERTY_DEGREE_AB3", - "CONTACTS_E37_PROPERTY_LIFECYCLESTAGE", - "CONTACTS_E37_PROPERTY_LIFECYCLESTAGE_AB1", - "CONTACTS_E37_PROPERTY_LIFECYCLESTAGE_AB2", - "CONTACTS_E37_PROPERTY_LIFECYCLESTAGE_AB3", - "CONTACTS_E5F_PROPERTY_CREATEDATE", - "CONTACTS_E5F_PROPERTY_CREATEDATE_AB1", - "CONTACTS_E5F_PROPERTY_CREATEDATE_AB2", - "CONTACTS_E5F_PROPERTY_CREATEDATE_AB3", - "CONTACTS_E81_PROPERTY_RECENT_CONVERSION_EVENT_NAME", - "CONTACTS_E81_PROPERTY_RECENT_CONVERSION_EVENT_NAME_AB1", - "CONTACTS_E81_PROPERTY_RECENT_CONVERSION_EVENT_NAME_AB2", - "CONTACTS_E81_PROPERTY_RECENT_CONVERSION_EVENT_NAME_AB3", - "CONTACTS_EA2_PROPERTY_HS_CALCULATED_PHONE_NUMBER_AREA_CODE", - "CONTACTS_EA2_PROPERTY_HS_CALCULATED_PHONE_NUMBER_AREA_CODE_AB1", - "CONTACTS_EA2_PROPERTY_HS_CALCULATED_PHONE_NUMBER_AREA_CODE_AB2", - "CONTACTS_EA2_PROPERTY_HS_CALCULATED_PHONE_NUMBER_AREA_CODE_AB3", - "CONTACTS_EAB_PROPERTY_HS_SA_FIRST_ENGAGEMENT_DATE", - "CONTACTS_EAB_PROPERTY_HS_SA_FIRST_ENGAGEMENT_DATE_AB1", - "CONTACTS_EAB_PROPERTY_HS_SA_FIRST_ENGAGEMENT_DATE_AB2", - "CONTACTS_EAB_PROPERTY_HS_SA_FIRST_ENGAGEMENT_DATE_AB3", - "CONTACTS_EB1_PROPERTY_HS_GOOGLE_CLICK_ID", - "CONTACTS_EB1_PROPERTY_HS_GOOGLE_CLICK_ID_AB1", - "CONTACTS_EB1_PROPERTY_HS_GOOGLE_CLICK_ID_AB2", - "CONTACTS_EB1_PROPERTY_HS_GOOGLE_CLICK_ID_AB3", - "CONTACTS_EC0_PROPERTY_HS_ANALYTICS_LAST_URL", - "CONTACTS_EC0_PROPERTY_HS_ANALYTICS_LAST_URL_AB1", - "CONTACTS_EC0_PROPERTY_HS_ANALYTICS_LAST_URL_AB2", - "CONTACTS_EC0_PROPERTY_HS_ANALYTICS_LAST_URL_AB3", - "CONTACTS_ED3_PROPERTY_DATE_OF_BIRTH", - "CONTACTS_ED3_PROPERTY_DATE_OF_BIRTH_AB1", - "CONTACTS_ED3_PROPERTY_DATE_OF_BIRTH_AB2", - "CONTACTS_ED3_PROPERTY_DATE_OF_BIRTH_AB3", - "CONTACTS_EDA_PROPERTY_HS_EMAIL_HARD_BOUNCE_REASON_ENUM", - "CONTACTS_EDA_PROPERTY_HS_EMAIL_HARD_BOUNCE_REASON_ENUM_AB1", - "CONTACTS_EDA_PROPERTY_HS_EMAIL_HARD_BOUNCE_REASON_ENUM_AB2", - "CONTACTS_EDA_PROPERTY_HS_EMAIL_HARD_BOUNCE_REASON_ENUM_AB3", - "CONTACTS_EEC_PROPERTY_HS_CALCULATED_PHONE_NUMBER_REGION_CODE", - "CONTACTS_EEC_PROPERTY_HS_CALCULATED_PHONE_NUMBER_REGION_CODE_AB1", - "CONTACTS_EEC_PROPERTY_HS_CALCULATED_PHONE_NUMBER_REGION_CODE_AB2", - "CONTACTS_EEC_PROPERTY_HS_CALCULATED_PHONE_NUMBER_REGION_CODE_AB3", - "CONTACTS_F0B_PROPERTY_HS_FIRST_ENGAGEMENT_OBJECT_ID", - "CONTACTS_F0B_PROPERTY_HS_FIRST_ENGAGEMENT_OBJECT_ID_AB1", - "CONTACTS_F0B_PROPERTY_HS_FIRST_ENGAGEMENT_OBJECT_ID_AB2", - "CONTACTS_F0B_PROPERTY_HS_FIRST_ENGAGEMENT_OBJECT_ID_AB3", - "CONTACTS_F27_PROPERTY_HS_ANALYTICS_SOURCE", - "CONTACTS_F27_PROPERTY_HS_ANALYTICS_SOURCE_AB1", - "CONTACTS_F27_PROPERTY_HS_ANALYTICS_SOURCE_AB2", - "CONTACTS_F27_PROPERTY_HS_ANALYTICS_SOURCE_AB3", - "CONTACTS_FA8_PROPERTY_GRADUATION_DATE", - "CONTACTS_FA8_PROPERTY_GRADUATION_DATE_AB1", - "CONTACTS_FA8_PROPERTY_GRADUATION_DATE_AB2", - "CONTACTS_FA8_PROPERTY_GRADUATION_DATE_AB3", - "CONTACTS_FA8_PROPERTY_IP_LATLON", - "CONTACTS_FA8_PROPERTY_IP_LATLON_AB1", - "CONTACTS_FA8_PROPERTY_IP_LATLON_AB2", - "CONTACTS_FA8_PROPERTY_IP_LATLON_AB3", - "CONTACTS_FAB_PROPERTY_HS_PERSONA", - "CONTACTS_FAB_PROPERTY_HS_PERSONA_AB1", - "CONTACTS_FAB_PROPERTY_HS_PERSONA_AB2", - "CONTACTS_FAB_PROPERTY_HS_PERSONA_AB3", - "CONTACTS_FC3_PROPERTY_HS_LIFECYCLESTAGE_OPPORTUNITY_DATE", - "CONTACTS_FC3_PROPERTY_HS_LIFECYCLESTAGE_OPPORTUNITY_DATE_AB1", - "CONTACTS_FC3_PROPERTY_HS_LIFECYCLESTAGE_OPPORTUNITY_DATE_AB2", - "CONTACTS_FC3_PROPERTY_HS_LIFECYCLESTAGE_OPPORTUNITY_DATE_AB3", - "CONTACTS_FD5_PROPERTY_HS_EMAIL_QUARANTINED", - "CONTACTS_FD5_PROPERTY_HS_EMAIL_QUARANTINED_AB1", - "CONTACTS_FD5_PROPERTY_HS_EMAIL_QUARANTINED_AB2", - "CONTACTS_FD5_PROPERTY_HS_EMAIL_QUARANTINED_AB3", - "CONTACTS_FDC_PROPERTY_HUBSPOTSCORE", - "CONTACTS_FDC_PROPERTY_HUBSPOTSCORE_AB1", - "CONTACTS_FDC_PROPERTY_HUBSPOTSCORE_AB2", - "CONTACTS_FDC_PROPERTY_HUBSPOTSCORE_AB3", - "CONTACTS_FEA_IDENTITY_PROFILES", - "CONTACTS_FEA_IDENTITY_PROFILES_AB1", - "CONTACTS_FEA_IDENTITY_PROFILES_AB2", - "CONTACTS_FEA_IDENTITY_PROFILES_AB3", - "CONTACTS_FF7_PROPERTY_HS_ANALYTICS_FIRST_URL", - "CONTACTS_FF7_PROPERTY_HS_ANALYTICS_FIRST_URL_AB1", - "CONTACTS_FF7_PROPERTY_HS_ANALYTICS_FIRST_URL_AB2", - "CONTACTS_FF7_PROPERTY_HS_ANALYTICS_FIRST_URL_AB3", - "CONTACTS_IDENTITY_PROFILES_767_IDENTITIES", - "CONTACTS_IDENTITY_PROFILES_767_IDENTITIES_AB1", - "CONTACTS_IDENTITY_PROFILES_767_IDENTITIES_AB2", - "CONTACTS_IDENTITY_PROFILES_767_IDENTITIES_AB3", - "CONTACTS_MERGE_AUDITS_361_MERGED_FROM_EMAIL", - "CONTACTS_MERGE_AUDITS_361_MERGED_FROM_EMAIL_AB1", - "CONTACTS_MERGE_AUDITS_361_MERGED_FROM_EMAIL_AB2", - "CONTACTS_MERGE_AUDITS_361_MERGED_FROM_EMAIL_AB3", - "CONTACTS_MERGE_AUDITS_3C4_MERGED_TO_EMAIL", - "CONTACTS_MERGE_AUDITS_3C4_MERGED_TO_EMAIL_AB1", - "CONTACTS_MERGE_AUDITS_3C4_MERGED_TO_EMAIL_AB2", - "CONTACTS_MERGE_AUDITS_3C4_MERGED_TO_EMAIL_AB3", - "CONTACTS_PROPERTIES_01C_SENIORITY", - "CONTACTS_PROPERTIES_01C_SENIORITY_AB1", - "CONTACTS_PROPERTIES_01C_SENIORITY_AB2", - "CONTACTS_PROPERTIES_01C_SENIORITY_AB3", - "CONTACTS_PROPERTIES_01E_COMPANY_SIZE", - "CONTACTS_PROPERTIES_01E_COMPANY_SIZE_AB1", - "CONTACTS_PROPERTIES_01E_COMPANY_SIZE_AB2", - "CONTACTS_PROPERTIES_01E_COMPANY_SIZE_AB3", - "CONTACTS_PROPERTIES_02E_HS_LAST_SALES_ACTIVITY_TIMESTAMP", - "CONTACTS_PROPERTIES_02E_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB1", - "CONTACTS_PROPERTIES_02E_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB2", - "CONTACTS_PROPERTIES_02E_HS_LAST_SALES_ACTIVITY_TIMESTAMP_AB3", - "CONTACTS_PROPERTIES_03A_HS_ANALYTICS_REVENUE", - "CONTACTS_PROPERTIES_03A_HS_ANALYTICS_REVENUE_AB1", - "CONTACTS_PROPERTIES_03A_HS_ANALYTICS_REVENUE_AB2", - "CONTACTS_PROPERTIES_03A_HS_ANALYTICS_REVENUE_AB3", - "CONTACTS_PROPERTIES_03C_HS_EMAIL_SENDS_SINCE_LAST_ENGAGEMENT", - "CONTACTS_PROPERTIES_03C_HS_EMAIL_SENDS_SINCE_LAST_ENGAGEMENT_AB1", - "CONTACTS_PROPERTIES_03C_HS_EMAIL_SENDS_SINCE_LAST_ENGAGEMENT_AB2", - "CONTACTS_PROPERTIES_03C_HS_EMAIL_SENDS_SINCE_LAST_ENGAGEMENT_AB3", - "CONTACTS_PROPERTIES_046_HS_LIFECYCLESTAGE_OTHER_DATE", - "CONTACTS_PROPERTIES_046_HS_LIFECYCLESTAGE_OTHER_DATE_AB1", - "CONTACTS_PROPERTIES_046_HS_LIFECYCLESTAGE_OTHER_DATE_AB2", - "CONTACTS_PROPERTIES_046_HS_LIFECYCLESTAGE_OTHER_DATE_AB3", - "CONTACTS_PROPERTIES_04B_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN", - "CONTACTS_PROPERTIES_04B_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB1", - "CONTACTS_PROPERTIES_04B_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB2", - "CONTACTS_PROPERTIES_04B_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB3", - "CONTACTS_PROPERTIES_063_TOTAL_REVENUE", - "CONTACTS_PROPERTIES_063_TOTAL_REVENUE_AB1", - "CONTACTS_PROPERTIES_063_TOTAL_REVENUE_AB2", - "CONTACTS_PROPERTIES_063_TOTAL_REVENUE_AB3", - "CONTACTS_PROPERTIES_067_DAYS_TO_CLOSE", - "CONTACTS_PROPERTIES_067_DAYS_TO_CLOSE_AB1", - "CONTACTS_PROPERTIES_067_DAYS_TO_CLOSE_AB2", - "CONTACTS_PROPERTIES_067_DAYS_TO_CLOSE_AB3", - "CONTACTS_PROPERTIES_0A7_HS_SA_FIRST_ENGAGEMENT_DATE", - "CONTACTS_PROPERTIES_0A7_HS_SA_FIRST_ENGAGEMENT_DATE_AB1", - "CONTACTS_PROPERTIES_0A7_HS_SA_FIRST_ENGAGEMENT_DATE_AB2", - "CONTACTS_PROPERTIES_0A7_HS_SA_FIRST_ENGAGEMENT_DATE_AB3", - "CONTACTS_PROPERTIES_0D3_HS_LIFECYCLESTAGE_LEAD_DATE", - "CONTACTS_PROPERTIES_0D3_HS_LIFECYCLESTAGE_LEAD_DATE_AB1", - "CONTACTS_PROPERTIES_0D3_HS_LIFECYCLESTAGE_LEAD_DATE_AB2", - "CONTACTS_PROPERTIES_0D3_HS_LIFECYCLESTAGE_LEAD_DATE_AB3", - "CONTACTS_PROPERTIES_0E1_HS_ANALYTICS_LAST_REFERRER", - "CONTACTS_PROPERTIES_0E1_HS_ANALYTICS_LAST_REFERRER_AB1", - "CONTACTS_PROPERTIES_0E1_HS_ANALYTICS_LAST_REFERRER_AB2", - "CONTACTS_PROPERTIES_0E1_HS_ANALYTICS_LAST_REFERRER_AB3", - "CONTACTS_PROPERTIES_0EE_NUM_UNIQUE_CONVERSION_EVENTS", - "CONTACTS_PROPERTIES_0EE_NUM_UNIQUE_CONVERSION_EVENTS_AB1", - "CONTACTS_PROPERTIES_0EE_NUM_UNIQUE_CONVERSION_EVENTS_AB2", - "CONTACTS_PROPERTIES_0EE_NUM_UNIQUE_CONVERSION_EVENTS_AB3", - "CONTACTS_PROPERTIES_0FC_IP_STATE", - "CONTACTS_PROPERTIES_0FC_IP_STATE_AB1", - "CONTACTS_PROPERTIES_0FC_IP_STATE_AB2", - "CONTACTS_PROPERTIES_0FC_IP_STATE_AB3", - "CONTACTS_PROPERTIES_113_HS_EMAIL_QUARANTINED", - "CONTACTS_PROPERTIES_113_HS_EMAIL_QUARANTINED_AB1", - "CONTACTS_PROPERTIES_113_HS_EMAIL_QUARANTINED_AB2", - "CONTACTS_PROPERTIES_113_HS_EMAIL_QUARANTINED_AB3", - "CONTACTS_PROPERTIES_11B_HS_CONTENT_MEMBERSHIP_EMAIL_CONFIRMED", - "CONTACTS_PROPERTIES_11B_HS_CONTENT_MEMBERSHIP_EMAIL_CONFIRMED_AB1", - "CONTACTS_PROPERTIES_11B_HS_CONTENT_MEMBERSHIP_EMAIL_CONFIRMED_AB2", - "CONTACTS_PROPERTIES_11B_HS_CONTENT_MEMBERSHIP_EMAIL_CONFIRMED_AB3", - "CONTACTS_PROPERTIES_131_HS_ANALYTICS_AVERAGE_PAGE_VIEWS", - "CONTACTS_PROPERTIES_131_HS_ANALYTICS_AVERAGE_PAGE_VIEWS_AB1", - "CONTACTS_PROPERTIES_131_HS_ANALYTICS_AVERAGE_PAGE_VIEWS_AB2", - "CONTACTS_PROPERTIES_131_HS_ANALYTICS_AVERAGE_PAGE_VIEWS_AB3", - "CONTACTS_PROPERTIES_13C_HS_SEARCHABLE_CALCULATED_INTERNATIONAL_MOBILE_NUMBER", - "CONTACTS_PROPERTIES_13C_HS_SEARCHABLE_CALCULATED_INTERNATIONAL_MOBILE_NUMBER_AB1", - "CONTACTS_PROPERTIES_13C_HS_SEARCHABLE_CALCULATED_INTERNATIONAL_MOBILE_NUMBER_AB2", - "CONTACTS_PROPERTIES_13C_HS_SEARCHABLE_CALCULATED_INTERNATIONAL_MOBILE_NUMBER_AB3", - "CONTACTS_PROPERTIES_147_ASSOCIATEDCOMPANYID", - "CONTACTS_PROPERTIES_147_ASSOCIATEDCOMPANYID_AB1", - "CONTACTS_PROPERTIES_147_ASSOCIATEDCOMPANYID_AB2", - "CONTACTS_PROPERTIES_147_ASSOCIATEDCOMPANYID_AB3", - "CONTACTS_PROPERTIES_14C_FIRSTNAME", - "CONTACTS_PROPERTIES_14C_FIRSTNAME_AB1", - "CONTACTS_PROPERTIES_14C_FIRSTNAME_AB2", - "CONTACTS_PROPERTIES_14C_FIRSTNAME_AB3", - "CONTACTS_PROPERTIES_185_NOTES_LAST_UPDATED", - "CONTACTS_PROPERTIES_185_NOTES_LAST_UPDATED_AB1", - "CONTACTS_PROPERTIES_185_NOTES_LAST_UPDATED_AB2", - "CONTACTS_PROPERTIES_185_NOTES_LAST_UPDATED_AB3", - "CONTACTS_PROPERTIES_188_RECENT_CONVERSION_EVENT_NAME", - "CONTACTS_PROPERTIES_188_RECENT_CONVERSION_EVENT_NAME_AB1", - "CONTACTS_PROPERTIES_188_RECENT_CONVERSION_EVENT_NAME_AB2", - "CONTACTS_PROPERTIES_188_RECENT_CONVERSION_EVENT_NAME_AB3", - "CONTACTS_PROPERTIES_18C_HS_EMAIL_LAST_SEND_DATE", - "CONTACTS_PROPERTIES_18C_HS_EMAIL_LAST_SEND_DATE_AB1", - "CONTACTS_PROPERTIES_18C_HS_EMAIL_LAST_SEND_DATE_AB2", - "CONTACTS_PROPERTIES_18C_HS_EMAIL_LAST_SEND_DATE_AB3", - "CONTACTS_PROPERTIES_192_HS_ANALYTICS_LAST_URL", - "CONTACTS_PROPERTIES_192_HS_ANALYTICS_LAST_URL_AB1", - "CONTACTS_PROPERTIES_192_HS_ANALYTICS_LAST_URL_AB2", - "CONTACTS_PROPERTIES_192_HS_ANALYTICS_LAST_URL_AB3", - "CONTACTS_PROPERTIES_193_HS_LIFECYCLESTAGE_EVANGELIST_DATE", - "CONTACTS_PROPERTIES_193_HS_LIFECYCLESTAGE_EVANGELIST_DATE_AB1", - "CONTACTS_PROPERTIES_193_HS_LIFECYCLESTAGE_EVANGELIST_DATE_AB2", - "CONTACTS_PROPERTIES_193_HS_LIFECYCLESTAGE_EVANGELIST_DATE_AB3", - "CONTACTS_PROPERTIES_1AE_HS_EMAIL_QUARANTINED_REASON", - "CONTACTS_PROPERTIES_1AE_HS_EMAIL_QUARANTINED_REASON_AB1", - "CONTACTS_PROPERTIES_1AE_HS_EMAIL_QUARANTINED_REASON_AB2", - "CONTACTS_PROPERTIES_1AE_HS_EMAIL_QUARANTINED_REASON_AB3", - "CONTACTS_PROPERTIES_1B9_MOBILEPHONE", - "CONTACTS_PROPERTIES_1B9_MOBILEPHONE_AB1", - "CONTACTS_PROPERTIES_1B9_MOBILEPHONE_AB2", - "CONTACTS_PROPERTIES_1B9_MOBILEPHONE_AB3", - "CONTACTS_PROPERTIES_1D8_SURVEYMONKEYEVENTLASTUPDATED", - "CONTACTS_PROPERTIES_1D8_SURVEYMONKEYEVENTLASTUPDATED_AB1", - "CONTACTS_PROPERTIES_1D8_SURVEYMONKEYEVENTLASTUPDATED_AB2", - "CONTACTS_PROPERTIES_1D8_SURVEYMONKEYEVENTLASTUPDATED_AB3", - "CONTACTS_PROPERTIES_1F3_HS_CONTENT_MEMBERSHIP_REGISTRATION_EMAIL_SENT_AT", - "CONTACTS_PROPERTIES_1F3_HS_CONTENT_MEMBERSHIP_REGISTRATION_EMAIL_SENT_AT_AB1", - "CONTACTS_PROPERTIES_1F3_HS_CONTENT_MEMBERSHIP_REGISTRATION_EMAIL_SENT_AT_AB2", - "CONTACTS_PROPERTIES_1F3_HS_CONTENT_MEMBERSHIP_REGISTRATION_EMAIL_SENT_AT_AB3", - "CONTACTS_PROPERTIES_232_PHONE", - "CONTACTS_PROPERTIES_232_PHONE_AB1", - "CONTACTS_PROPERTIES_232_PHONE_AB2", - "CONTACTS_PROPERTIES_232_PHONE_AB3", - "CONTACTS_PROPERTIES_242_HS_EMAIL_FIRST_CLICK_DATE", - "CONTACTS_PROPERTIES_242_HS_EMAIL_FIRST_CLICK_DATE_AB1", - "CONTACTS_PROPERTIES_242_HS_EMAIL_FIRST_CLICK_DATE_AB2", - "CONTACTS_PROPERTIES_242_HS_EMAIL_FIRST_CLICK_DATE_AB3", - "CONTACTS_PROPERTIES_265_HS_TESTROLLBACK", - "CONTACTS_PROPERTIES_265_HS_TESTROLLBACK_AB1", - "CONTACTS_PROPERTIES_265_HS_TESTROLLBACK_AB2", - "CONTACTS_PROPERTIES_265_HS_TESTROLLBACK_AB3", - "CONTACTS_PROPERTIES_27A_MARITAL_STATUS", - "CONTACTS_PROPERTIES_27A_MARITAL_STATUS_AB1", - "CONTACTS_PROPERTIES_27A_MARITAL_STATUS_AB2", - "CONTACTS_PROPERTIES_27A_MARITAL_STATUS_AB3", - "CONTACTS_PROPERTIES_283_HS_ALL_OWNER_IDS", - "CONTACTS_PROPERTIES_283_HS_ALL_OWNER_IDS_AB1", - "CONTACTS_PROPERTIES_283_HS_ALL_OWNER_IDS_AB2", - "CONTACTS_PROPERTIES_283_HS_ALL_OWNER_IDS_AB3", - "CONTACTS_PROPERTIES_283_HUBSPOTSCORE", - "CONTACTS_PROPERTIES_283_HUBSPOTSCORE_AB1", - "CONTACTS_PROPERTIES_283_HUBSPOTSCORE_AB2", - "CONTACTS_PROPERTIES_283_HUBSPOTSCORE_AB3", - "CONTACTS_PROPERTIES_2C2_SALUTATION", - "CONTACTS_PROPERTIES_2C2_SALUTATION_AB1", - "CONTACTS_PROPERTIES_2C2_SALUTATION_AB2", - "CONTACTS_PROPERTIES_2C2_SALUTATION_AB3", - "CONTACTS_PROPERTIES_2CE_DATE_OF_BIRTH", - "CONTACTS_PROPERTIES_2CE_DATE_OF_BIRTH_AB1", - "CONTACTS_PROPERTIES_2CE_DATE_OF_BIRTH_AB2", - "CONTACTS_PROPERTIES_2CE_DATE_OF_BIRTH_AB3", - "CONTACTS_PROPERTIES_2D1_CREATEDATE", - "CONTACTS_PROPERTIES_2D1_CREATEDATE_AB1", - "CONTACTS_PROPERTIES_2D1_CREATEDATE_AB2", - "CONTACTS_PROPERTIES_2D1_CREATEDATE_AB3", - "CONTACTS_PROPERTIES_2D6_HS_EMAIL_BOUNCE", - "CONTACTS_PROPERTIES_2D6_HS_EMAIL_BOUNCE_AB1", - "CONTACTS_PROPERTIES_2D6_HS_EMAIL_BOUNCE_AB2", - "CONTACTS_PROPERTIES_2D6_HS_EMAIL_BOUNCE_AB3", - "CONTACTS_PROPERTIES_2E4_HS_IS_CONTACT", - "CONTACTS_PROPERTIES_2E4_HS_IS_CONTACT_AB1", - "CONTACTS_PROPERTIES_2E4_HS_IS_CONTACT_AB2", - "CONTACTS_PROPERTIES_2E4_HS_IS_CONTACT_AB3", - "CONTACTS_PROPERTIES_2EC_HS_SEARCHABLE_CALCULATED_INTERNATIONAL_PHONE_NUMBER", - "CONTACTS_PROPERTIES_2EC_HS_SEARCHABLE_CALCULATED_INTERNATIONAL_PHONE_NUMBER_AB1", - "CONTACTS_PROPERTIES_2EC_HS_SEARCHABLE_CALCULATED_INTERNATIONAL_PHONE_NUMBER_AB2", - "CONTACTS_PROPERTIES_2EC_HS_SEARCHABLE_CALCULATED_INTERNATIONAL_PHONE_NUMBER_AB3", - "CONTACTS_PROPERTIES_2F8_HS_CONVERSATIONS_VISITOR_EMAIL", - "CONTACTS_PROPERTIES_2F8_HS_CONVERSATIONS_VISITOR_EMAIL_AB1", - "CONTACTS_PROPERTIES_2F8_HS_CONVERSATIONS_VISITOR_EMAIL_AB2", - "CONTACTS_PROPERTIES_2F8_HS_CONVERSATIONS_VISITOR_EMAIL_AB3", - "CONTACTS_PROPERTIES_337_INDUSTRY", - "CONTACTS_PROPERTIES_337_INDUSTRY_AB1", - "CONTACTS_PROPERTIES_337_INDUSTRY_AB2", - "CONTACTS_PROPERTIES_337_INDUSTRY_AB3", - "CONTACTS_PROPERTIES_378_NOTES_NEXT_ACTIVITY_DATE", - "CONTACTS_PROPERTIES_378_NOTES_NEXT_ACTIVITY_DATE_AB1", - "CONTACTS_PROPERTIES_378_NOTES_NEXT_ACTIVITY_DATE_AB2", - "CONTACTS_PROPERTIES_378_NOTES_NEXT_ACTIVITY_DATE_AB3", - "CONTACTS_PROPERTIES_388_HS_ANALYTICS_FIRST_REFERRER", - "CONTACTS_PROPERTIES_388_HS_ANALYTICS_FIRST_REFERRER_AB1", - "CONTACTS_PROPERTIES_388_HS_ANALYTICS_FIRST_REFERRER_AB2", - "CONTACTS_PROPERTIES_388_HS_ANALYTICS_FIRST_REFERRER_AB3", - "CONTACTS_PROPERTIES_38E_RELATIONSHIP_STATUS", - "CONTACTS_PROPERTIES_38E_RELATIONSHIP_STATUS_AB1", - "CONTACTS_PROPERTIES_38E_RELATIONSHIP_STATUS_AB2", - "CONTACTS_PROPERTIES_38E_RELATIONSHIP_STATUS_AB3", - "CONTACTS_PROPERTIES_3A1_HS_ANALYTICS_FIRST_TIMESTAMP", - "CONTACTS_PROPERTIES_3A1_HS_ANALYTICS_FIRST_TIMESTAMP_AB1", - "CONTACTS_PROPERTIES_3A1_HS_ANALYTICS_FIRST_TIMESTAMP_AB2", - "CONTACTS_PROPERTIES_3A1_HS_ANALYTICS_FIRST_TIMESTAMP_AB3", - "CONTACTS_PROPERTIES_3E9_HS_DOCUMENT_LAST_REVISITED", - "CONTACTS_PROPERTIES_3E9_HS_DOCUMENT_LAST_REVISITED_AB1", - "CONTACTS_PROPERTIES_3E9_HS_DOCUMENT_LAST_REVISITED_AB2", - "CONTACTS_PROPERTIES_3E9_HS_DOCUMENT_LAST_REVISITED_AB3", - "CONTACTS_PROPERTIES_3FF_WORK_EMAIL", - "CONTACTS_PROPERTIES_3FF_WORK_EMAIL_AB1", - "CONTACTS_PROPERTIES_3FF_WORK_EMAIL_AB2", - "CONTACTS_PROPERTIES_3FF_WORK_EMAIL_AB3", - "CONTACTS_PROPERTIES_409_ASSOCIATEDCOMPANYLASTUPDATED", - "CONTACTS_PROPERTIES_409_ASSOCIATEDCOMPANYLASTUPDATED_AB1", - "CONTACTS_PROPERTIES_409_ASSOCIATEDCOMPANYLASTUPDATED_AB2", - "CONTACTS_PROPERTIES_409_ASSOCIATEDCOMPANYLASTUPDATED_AB3", - "CONTACTS_PROPERTIES_411_IP_STATE_CODE", - "CONTACTS_PROPERTIES_411_IP_STATE_CODE_AB1", - "CONTACTS_PROPERTIES_411_IP_STATE_CODE_AB2", - "CONTACTS_PROPERTIES_411_IP_STATE_CODE_AB3", - "CONTACTS_PROPERTIES_429_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM", - "CONTACTS_PROPERTIES_429_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB1", - "CONTACTS_PROPERTIES_429_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB2", - "CONTACTS_PROPERTIES_429_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB3", - "CONTACTS_PROPERTIES_42B_HS_EMAIL_HARD_BOUNCE_REASON_ENUM", - "CONTACTS_PROPERTIES_42B_HS_EMAIL_HARD_BOUNCE_REASON_ENUM_AB1", - "CONTACTS_PROPERTIES_42B_HS_EMAIL_HARD_BOUNCE_REASON_ENUM_AB2", - "CONTACTS_PROPERTIES_42B_HS_EMAIL_HARD_BOUNCE_REASON_ENUM_AB3", - "CONTACTS_PROPERTIES_42D_HS_OBJECT_ID", - "CONTACTS_PROPERTIES_42D_HS_OBJECT_ID_AB1", - "CONTACTS_PROPERTIES_42D_HS_OBJECT_ID_AB2", - "CONTACTS_PROPERTIES_42D_HS_OBJECT_ID_AB3", - "CONTACTS_PROPERTIES_43A_LIFECYCLESTAGE", - "CONTACTS_PROPERTIES_43A_LIFECYCLESTAGE_AB1", - "CONTACTS_PROPERTIES_43A_LIFECYCLESTAGE_AB2", - "CONTACTS_PROPERTIES_43A_LIFECYCLESTAGE_AB3", - "CONTACTS_PROPERTIES_454_FIRST_CONVERSION_DATE", - "CONTACTS_PROPERTIES_454_FIRST_CONVERSION_DATE_AB1", - "CONTACTS_PROPERTIES_454_FIRST_CONVERSION_DATE_AB2", - "CONTACTS_PROPERTIES_454_FIRST_CONVERSION_DATE_AB3", - "CONTACTS_PROPERTIES_45D_HS_ANALYTICS_FIRST_URL", - "CONTACTS_PROPERTIES_45D_HS_ANALYTICS_FIRST_URL_AB1", - "CONTACTS_PROPERTIES_45D_HS_ANALYTICS_FIRST_URL_AB2", - "CONTACTS_PROPERTIES_45D_HS_ANALYTICS_FIRST_URL_AB3", - "CONTACTS_PROPERTIES_467_HS_ANALYTICS_LAST_VISIT_TIMESTAMP", - "CONTACTS_PROPERTIES_467_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB1", - "CONTACTS_PROPERTIES_467_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB2", - "CONTACTS_PROPERTIES_467_HS_ANALYTICS_LAST_VISIT_TIMESTAMP_AB3", - "CONTACTS_PROPERTIES_472_HS_TIME_TO_FIRST_ENGAGEMENT", - "CONTACTS_PROPERTIES_472_HS_TIME_TO_FIRST_ENGAGEMENT_AB1", - "CONTACTS_PROPERTIES_472_HS_TIME_TO_FIRST_ENGAGEMENT_AB2", - "CONTACTS_PROPERTIES_472_HS_TIME_TO_FIRST_ENGAGEMENT_AB3", - "CONTACTS_PROPERTIES_4E6_NUMEMPLOYEES", - "CONTACTS_PROPERTIES_4E6_NUMEMPLOYEES_AB1", - "CONTACTS_PROPERTIES_4E6_NUMEMPLOYEES_AB2", - "CONTACTS_PROPERTIES_4E6_NUMEMPLOYEES_AB3", - "CONTACTS_PROPERTIES_562_HS_EMAIL_FIRST_SEND_DATE", - "CONTACTS_PROPERTIES_562_HS_EMAIL_FIRST_SEND_DATE_AB1", - "CONTACTS_PROPERTIES_562_HS_EMAIL_FIRST_SEND_DATE_AB2", - "CONTACTS_PROPERTIES_562_HS_EMAIL_FIRST_SEND_DATE_AB3", - "CONTACTS_PROPERTIES_56F_FIRST_CONVERSION_EVENT_NAME", - "CONTACTS_PROPERTIES_56F_FIRST_CONVERSION_EVENT_NAME_AB1", - "CONTACTS_PROPERTIES_56F_FIRST_CONVERSION_EVENT_NAME_AB2", - "CONTACTS_PROPERTIES_56F_FIRST_CONVERSION_EVENT_NAME_AB3", - "CONTACTS_PROPERTIES_58B_HS_GOOGLE_CLICK_ID", - "CONTACTS_PROPERTIES_58B_HS_GOOGLE_CLICK_ID_AB1", - "CONTACTS_PROPERTIES_58B_HS_GOOGLE_CLICK_ID_AB2", - "CONTACTS_PROPERTIES_58B_HS_GOOGLE_CLICK_ID_AB3", - "CONTACTS_PROPERTIES_59F_HS_LASTMODIFIEDDATE", - "CONTACTS_PROPERTIES_59F_HS_LASTMODIFIEDDATE_AB1", - "CONTACTS_PROPERTIES_59F_HS_LASTMODIFIEDDATE_AB2", - "CONTACTS_PROPERTIES_59F_HS_LASTMODIFIEDDATE_AB3", - "CONTACTS_PROPERTIES_5AC_HS_CALCULATED_PHONE_NUMBER", - "CONTACTS_PROPERTIES_5AC_HS_CALCULATED_PHONE_NUMBER_AB1", - "CONTACTS_PROPERTIES_5AC_HS_CALCULATED_PHONE_NUMBER_AB2", - "CONTACTS_PROPERTIES_5AC_HS_CALCULATED_PHONE_NUMBER_AB3", - "CONTACTS_PROPERTIES_5B2_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN", - "CONTACTS_PROPERTIES_5B2_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB1", - "CONTACTS_PROPERTIES_5B2_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB2", - "CONTACTS_PROPERTIES_5B2_HS_ANALYTICS_LAST_TOUCH_CONVERTING_CAMPAIGN_AB3", - "CONTACTS_PROPERTIES_5C3_ENGAGEMENTS_LAST_MEETING_BOOKED", - "CONTACTS_PROPERTIES_5C3_ENGAGEMENTS_LAST_MEETING_BOOKED_AB1", - "CONTACTS_PROPERTIES_5C3_ENGAGEMENTS_LAST_MEETING_BOOKED_AB2", - "CONTACTS_PROPERTIES_5C3_ENGAGEMENTS_LAST_MEETING_BOOKED_AB3", - "CONTACTS_PROPERTIES_5CC_CITY", - "CONTACTS_PROPERTIES_5CC_CITY_AB1", - "CONTACTS_PROPERTIES_5CC_CITY_AB2", - "CONTACTS_PROPERTIES_5CC_CITY_AB3", - "CONTACTS_PROPERTIES_5CE_NOTES_LAST_CONTACTED", - "CONTACTS_PROPERTIES_5CE_NOTES_LAST_CONTACTED_AB1", - "CONTACTS_PROPERTIES_5CE_NOTES_LAST_CONTACTED_AB2", - "CONTACTS_PROPERTIES_5CE_NOTES_LAST_CONTACTED_AB3", - "CONTACTS_PROPERTIES_5E0_HS_LEGAL_BASIS", - "CONTACTS_PROPERTIES_5E0_HS_LEGAL_BASIS_AB1", - "CONTACTS_PROPERTIES_5E0_HS_LEGAL_BASIS_AB2", - "CONTACTS_PROPERTIES_5E0_HS_LEGAL_BASIS_AB3", - "CONTACTS_PROPERTIES_5E2_HS_CALCULATED_PHONE_NUMBER_AREA_CODE", - "CONTACTS_PROPERTIES_5E2_HS_CALCULATED_PHONE_NUMBER_AREA_CODE_AB1", - "CONTACTS_PROPERTIES_5E2_HS_CALCULATED_PHONE_NUMBER_AREA_CODE_AB2", - "CONTACTS_PROPERTIES_5E2_HS_CALCULATED_PHONE_NUMBER_AREA_CODE_AB3", - "CONTACTS_PROPERTIES_5FB_RECENT_DEAL_AMOUNT", - "CONTACTS_PROPERTIES_5FB_RECENT_DEAL_AMOUNT_AB1", - "CONTACTS_PROPERTIES_5FB_RECENT_DEAL_AMOUNT_AB2", - "CONTACTS_PROPERTIES_5FB_RECENT_DEAL_AMOUNT_AB3", - "CONTACTS_PROPERTIES_5FD_HS_SALES_EMAIL_LAST_REPLIED", - "CONTACTS_PROPERTIES_5FD_HS_SALES_EMAIL_LAST_REPLIED_AB1", - "CONTACTS_PROPERTIES_5FD_HS_SALES_EMAIL_LAST_REPLIED_AB2", - "CONTACTS_PROPERTIES_5FD_HS_SALES_EMAIL_LAST_REPLIED_AB3", - "CONTACTS_PROPERTIES_60C_HS_CREATED_BY_USER_ID", - "CONTACTS_PROPERTIES_60C_HS_CREATED_BY_USER_ID_AB1", - "CONTACTS_PROPERTIES_60C_HS_CREATED_BY_USER_ID_AB2", - "CONTACTS_PROPERTIES_60C_HS_CREATED_BY_USER_ID_AB3", - "CONTACTS_PROPERTIES_619_HS_SA_FIRST_ENGAGEMENT_OBJECT_TYPE", - "CONTACTS_PROPERTIES_619_HS_SA_FIRST_ENGAGEMENT_OBJECT_TYPE_AB1", - "CONTACTS_PROPERTIES_619_HS_SA_FIRST_ENGAGEMENT_OBJECT_TYPE_AB2", - "CONTACTS_PROPERTIES_619_HS_SA_FIRST_ENGAGEMENT_OBJECT_TYPE_AB3", - "CONTACTS_PROPERTIES_621_HS_CONTENT_MEMBERSHIP_STATUS", - "CONTACTS_PROPERTIES_621_HS_CONTENT_MEMBERSHIP_STATUS_AB1", - "CONTACTS_PROPERTIES_621_HS_CONTENT_MEMBERSHIP_STATUS_AB2", - "CONTACTS_PROPERTIES_621_HS_CONTENT_MEMBERSHIP_STATUS_AB3", - "CONTACTS_PROPERTIES_630_STATE", - "CONTACTS_PROPERTIES_630_STATE_AB1", - "CONTACTS_PROPERTIES_630_STATE_AB2", - "CONTACTS_PROPERTIES_630_STATE_AB3", - "CONTACTS_PROPERTIES_632_HS_CONTENT_MEMBERSHIP_REGISTRATION_DOMAIN_SENT_TO", - "CONTACTS_PROPERTIES_632_HS_CONTENT_MEMBERSHIP_REGISTRATION_DOMAIN_SENT_TO_AB1", - "CONTACTS_PROPERTIES_632_HS_CONTENT_MEMBERSHIP_REGISTRATION_DOMAIN_SENT_TO_AB2", - "CONTACTS_PROPERTIES_632_HS_CONTENT_MEMBERSHIP_REGISTRATION_DOMAIN_SENT_TO_AB3", - "CONTACTS_PROPERTIES_653_ANNUALREVENUE", - "CONTACTS_PROPERTIES_653_ANNUALREVENUE_AB1", - "CONTACTS_PROPERTIES_653_ANNUALREVENUE_AB2", - "CONTACTS_PROPERTIES_653_ANNUALREVENUE_AB3", - "CONTACTS_PROPERTIES_716_HS_SA_FIRST_ENGAGEMENT_DESCR", - "CONTACTS_PROPERTIES_716_HS_SA_FIRST_ENGAGEMENT_DESCR_AB1", - "CONTACTS_PROPERTIES_716_HS_SA_FIRST_ENGAGEMENT_DESCR_AB2", - "CONTACTS_PROPERTIES_716_HS_SA_FIRST_ENGAGEMENT_DESCR_AB3", - "CONTACTS_PROPERTIES_732_HUBSPOT_OWNER_ASSIGNEDDATE", - "CONTACTS_PROPERTIES_732_HUBSPOT_OWNER_ASSIGNEDDATE_AB1", - "CONTACTS_PROPERTIES_732_HUBSPOT_OWNER_ASSIGNEDDATE_AB2", - "CONTACTS_PROPERTIES_732_HUBSPOT_OWNER_ASSIGNEDDATE_AB3", - "CONTACTS_PROPERTIES_737_FIRST_DEAL_CREATED_DATE", - "CONTACTS_PROPERTIES_737_FIRST_DEAL_CREATED_DATE_AB1", - "CONTACTS_PROPERTIES_737_FIRST_DEAL_CREATED_DATE_AB2", - "CONTACTS_PROPERTIES_737_FIRST_DEAL_CREATED_DATE_AB3", - "CONTACTS_PROPERTIES_753_HS_ANALYTICS_SOURCE_DATA_1", - "CONTACTS_PROPERTIES_753_HS_ANALYTICS_SOURCE_DATA_1_AB1", - "CONTACTS_PROPERTIES_753_HS_ANALYTICS_SOURCE_DATA_1_AB2", - "CONTACTS_PROPERTIES_753_HS_ANALYTICS_SOURCE_DATA_1_AB3", - "CONTACTS_PROPERTIES_774_CLOSEDATE", - "CONTACTS_PROPERTIES_774_CLOSEDATE_AB1", - "CONTACTS_PROPERTIES_774_CLOSEDATE_AB2", - "CONTACTS_PROPERTIES_774_CLOSEDATE_AB3", - "CONTACTS_PROPERTIES_777_HS_FACEBOOK_CLICK_ID", - "CONTACTS_PROPERTIES_777_HS_FACEBOOK_CLICK_ID_AB1", - "CONTACTS_PROPERTIES_777_HS_FACEBOOK_CLICK_ID_AB2", - "CONTACTS_PROPERTIES_777_HS_FACEBOOK_CLICK_ID_AB3", - "CONTACTS_PROPERTIES_77D_LASTNAME", - "CONTACTS_PROPERTIES_77D_LASTNAME_AB1", - "CONTACTS_PROPERTIES_77D_LASTNAME_AB2", - "CONTACTS_PROPERTIES_77D_LASTNAME_AB3", - "CONTACTS_PROPERTIES_7B1_HS_ANALYTICS_NUM_PAGE_VIEWS", - "CONTACTS_PROPERTIES_7B1_HS_ANALYTICS_NUM_PAGE_VIEWS_AB1", - "CONTACTS_PROPERTIES_7B1_HS_ANALYTICS_NUM_PAGE_VIEWS_AB2", - "CONTACTS_PROPERTIES_7B1_HS_ANALYTICS_NUM_PAGE_VIEWS_AB3", - "CONTACTS_PROPERTIES_7D5_HS_SEARCHABLE_CALCULATED_MOBILE_NUMBER", - "CONTACTS_PROPERTIES_7D5_HS_SEARCHABLE_CALCULATED_MOBILE_NUMBER_AB1", - "CONTACTS_PROPERTIES_7D5_HS_SEARCHABLE_CALCULATED_MOBILE_NUMBER_AB2", - "CONTACTS_PROPERTIES_7D5_HS_SEARCHABLE_CALCULATED_MOBILE_NUMBER_AB3", - "CONTACTS_PROPERTIES_800_HUBSPOT_OWNER_ID", - "CONTACTS_PROPERTIES_800_HUBSPOT_OWNER_ID_AB1", - "CONTACTS_PROPERTIES_800_HUBSPOT_OWNER_ID_AB2", - "CONTACTS_PROPERTIES_800_HUBSPOT_OWNER_ID_AB3", - "CONTACTS_PROPERTIES_803_HS_LIFECYCLESTAGE_SALESQUALIFIEDLEAD_DATE", - "CONTACTS_PROPERTIES_803_HS_LIFECYCLESTAGE_SALESQUALIFIEDLEAD_DATE_AB1", - "CONTACTS_PROPERTIES_803_HS_LIFECYCLESTAGE_SALESQUALIFIEDLEAD_DATE_AB2", - "CONTACTS_PROPERTIES_803_HS_LIFECYCLESTAGE_SALESQUALIFIEDLEAD_DATE_AB3", - "CONTACTS_PROPERTIES_82A_HS_EMAIL_LAST_EMAIL_NAME", - "CONTACTS_PROPERTIES_82A_HS_EMAIL_LAST_EMAIL_NAME_AB1", - "CONTACTS_PROPERTIES_82A_HS_EMAIL_LAST_EMAIL_NAME_AB2", - "CONTACTS_PROPERTIES_82A_HS_EMAIL_LAST_EMAIL_NAME_AB3", - "CONTACTS_PROPERTIES_83F_HS_ALL_CONTACT_VIDS", - "CONTACTS_PROPERTIES_83F_HS_ALL_CONTACT_VIDS_AB1", - "CONTACTS_PROPERTIES_83F_HS_ALL_CONTACT_VIDS_AB2", - "CONTACTS_PROPERTIES_83F_HS_ALL_CONTACT_VIDS_AB3", - "CONTACTS_PROPERTIES_84E_SCHOOL", - "CONTACTS_PROPERTIES_84E_SCHOOL_AB1", - "CONTACTS_PROPERTIES_84E_SCHOOL_AB2", - "CONTACTS_PROPERTIES_84E_SCHOOL_AB3", - "CONTACTS_PROPERTIES_86E_HS_FACEBOOK_AD_CLICKED", - "CONTACTS_PROPERTIES_86E_HS_FACEBOOK_AD_CLICKED_AB1", - "CONTACTS_PROPERTIES_86E_HS_FACEBOOK_AD_CLICKED_AB2", - "CONTACTS_PROPERTIES_86E_HS_FACEBOOK_AD_CLICKED_AB3", - "CONTACTS_PROPERTIES_886_HS_BUYING_ROLE", - "CONTACTS_PROPERTIES_886_HS_BUYING_ROLE_AB1", - "CONTACTS_PROPERTIES_886_HS_BUYING_ROLE_AB2", - "CONTACTS_PROPERTIES_886_HS_BUYING_ROLE_AB3", - "CONTACTS_PROPERTIES_8EC_WEBSITE", - "CONTACTS_PROPERTIES_8EC_WEBSITE_AB1", - "CONTACTS_PROPERTIES_8EC_WEBSITE_AB2", - "CONTACTS_PROPERTIES_8EC_WEBSITE_AB3", - "CONTACTS_PROPERTIES_901_HS_ANALYTICS_SOURCE", - "CONTACTS_PROPERTIES_901_HS_ANALYTICS_SOURCE_AB1", - "CONTACTS_PROPERTIES_901_HS_ANALYTICS_SOURCE_AB2", - "CONTACTS_PROPERTIES_901_HS_ANALYTICS_SOURCE_AB3", - "CONTACTS_PROPERTIES_90D_HS_EMAIL_OPTOUT", - "CONTACTS_PROPERTIES_90D_HS_EMAIL_OPTOUT_AB1", - "CONTACTS_PROPERTIES_90D_HS_EMAIL_OPTOUT_AB2", - "CONTACTS_PROPERTIES_90D_HS_EMAIL_OPTOUT_AB3", - "CONTACTS_PROPERTIES_915_HS_EMAIL_FIRST_OPEN_DATE", - "CONTACTS_PROPERTIES_915_HS_EMAIL_FIRST_OPEN_DATE_AB1", - "CONTACTS_PROPERTIES_915_HS_EMAIL_FIRST_OPEN_DATE_AB2", - "CONTACTS_PROPERTIES_915_HS_EMAIL_FIRST_OPEN_DATE_AB3", - "CONTACTS_PROPERTIES_91C_GENDER", - "CONTACTS_PROPERTIES_91C_GENDER_AB1", - "CONTACTS_PROPERTIES_91C_GENDER_AB2", - "CONTACTS_PROPERTIES_91C_GENDER_AB3", - "CONTACTS_PROPERTIES_927_HS_LEAD_STATUS", - "CONTACTS_PROPERTIES_927_HS_LEAD_STATUS_AB1", - "CONTACTS_PROPERTIES_927_HS_LEAD_STATUS_AB2", - "CONTACTS_PROPERTIES_927_HS_LEAD_STATUS_AB3", - "CONTACTS_PROPERTIES_933_HS_SEQUENCES_IS_ENROLLED", - "CONTACTS_PROPERTIES_933_HS_SEQUENCES_IS_ENROLLED_AB1", - "CONTACTS_PROPERTIES_933_HS_SEQUENCES_IS_ENROLLED_AB2", - "CONTACTS_PROPERTIES_933_HS_SEQUENCES_IS_ENROLLED_AB3", - "CONTACTS_PROPERTIES_943_GRADUATION_DATE", - "CONTACTS_PROPERTIES_943_GRADUATION_DATE_AB1", - "CONTACTS_PROPERTIES_943_GRADUATION_DATE_AB2", - "CONTACTS_PROPERTIES_943_GRADUATION_DATE_AB3", - "CONTACTS_PROPERTIES_94D_COMPANY", - "CONTACTS_PROPERTIES_94D_COMPANY_AB1", - "CONTACTS_PROPERTIES_94D_COMPANY_AB2", - "CONTACTS_PROPERTIES_94D_COMPANY_AB3", - "CONTACTS_PROPERTIES_96D_HS_CALCULATED_MOBILE_NUMBER", - "CONTACTS_PROPERTIES_96D_HS_CALCULATED_MOBILE_NUMBER_AB1", - "CONTACTS_PROPERTIES_96D_HS_CALCULATED_MOBILE_NUMBER_AB2", - "CONTACTS_PROPERTIES_96D_HS_CALCULATED_MOBILE_NUMBER_AB3", - "CONTACTS_PROPERTIES_97B_HS_ANALYTICS_SOURCE_DATA_2", - "CONTACTS_PROPERTIES_97B_HS_ANALYTICS_SOURCE_DATA_2_AB1", - "CONTACTS_PROPERTIES_97B_HS_ANALYTICS_SOURCE_DATA_2_AB2", - "CONTACTS_PROPERTIES_97B_HS_ANALYTICS_SOURCE_DATA_2_AB3", - "CONTACTS_PROPERTIES_988_HS_EMAIL_BAD_ADDRESS", - "CONTACTS_PROPERTIES_988_HS_EMAIL_BAD_ADDRESS_AB1", - "CONTACTS_PROPERTIES_988_HS_EMAIL_BAD_ADDRESS_AB2", - "CONTACTS_PROPERTIES_988_HS_EMAIL_BAD_ADDRESS_AB3", - "CONTACTS_PROPERTIES_999_HS_LIFECYCLESTAGE_MARKETINGQUALIFIEDLEAD_DATE", - "CONTACTS_PROPERTIES_999_HS_LIFECYCLESTAGE_MARKETINGQUALIFIEDLEAD_DATE_AB1", - "CONTACTS_PROPERTIES_999_HS_LIFECYCLESTAGE_MARKETINGQUALIFIEDLEAD_DATE_AB2", - "CONTACTS_PROPERTIES_999_HS_LIFECYCLESTAGE_MARKETINGQUALIFIEDLEAD_DATE_AB3", - "CONTACTS_PROPERTIES_999_HS_LIFECYCLESTAGE_OPPORTUNITY_DATE", - "CONTACTS_PROPERTIES_999_HS_LIFECYCLESTAGE_OPPORTUNITY_DATE_AB1", - "CONTACTS_PROPERTIES_999_HS_LIFECYCLESTAGE_OPPORTUNITY_DATE_AB2", - "CONTACTS_PROPERTIES_999_HS_LIFECYCLESTAGE_OPPORTUNITY_DATE_AB3", - "CONTACTS_PROPERTIES_9A3_HS_SALES_EMAIL_LAST_CLICKED", - "CONTACTS_PROPERTIES_9A3_HS_SALES_EMAIL_LAST_CLICKED_AB1", - "CONTACTS_PROPERTIES_9A3_HS_SALES_EMAIL_LAST_CLICKED_AB2", - "CONTACTS_PROPERTIES_9A3_HS_SALES_EMAIL_LAST_CLICKED_AB3", - "CONTACTS_PROPERTIES_9A4_HS_CALCULATED_PHONE_NUMBER_COUNTRY_CODE", - "CONTACTS_PROPERTIES_9A4_HS_CALCULATED_PHONE_NUMBER_COUNTRY_CODE_AB1", - "CONTACTS_PROPERTIES_9A4_HS_CALCULATED_PHONE_NUMBER_COUNTRY_CODE_AB2", - "CONTACTS_PROPERTIES_9A4_HS_CALCULATED_PHONE_NUMBER_COUNTRY_CODE_AB3", - "CONTACTS_PROPERTIES_9A4_HS_LANGUAGE", - "CONTACTS_PROPERTIES_9A4_HS_LANGUAGE_AB1", - "CONTACTS_PROPERTIES_9A4_HS_LANGUAGE_AB2", - "CONTACTS_PROPERTIES_9A4_HS_LANGUAGE_AB3", - "CONTACTS_PROPERTIES_9A4_MILITARY_STATUS", - "CONTACTS_PROPERTIES_9A4_MILITARY_STATUS_AB1", - "CONTACTS_PROPERTIES_9A4_MILITARY_STATUS_AB2", - "CONTACTS_PROPERTIES_9A4_MILITARY_STATUS_AB3", - "CONTACTS_PROPERTIES_9B2_HS_FIRST_ENGAGEMENT_OBJECT_ID", - "CONTACTS_PROPERTIES_9B2_HS_FIRST_ENGAGEMENT_OBJECT_ID_AB1", - "CONTACTS_PROPERTIES_9B2_HS_FIRST_ENGAGEMENT_OBJECT_ID_AB2", - "CONTACTS_PROPERTIES_9B2_HS_FIRST_ENGAGEMENT_OBJECT_ID_AB3", - "CONTACTS_PROPERTIES_9B5_NUM_CONTACTED_NOTES", - "CONTACTS_PROPERTIES_9B5_NUM_CONTACTED_NOTES_AB1", - "CONTACTS_PROPERTIES_9B5_NUM_CONTACTED_NOTES_AB2", - "CONTACTS_PROPERTIES_9B5_NUM_CONTACTED_NOTES_AB3", - "CONTACTS_PROPERTIES_9C5_HS_ADDITIONAL_EMAILS", - "CONTACTS_PROPERTIES_9C5_HS_ADDITIONAL_EMAILS_AB1", - "CONTACTS_PROPERTIES_9C5_HS_ADDITIONAL_EMAILS_AB2", - "CONTACTS_PROPERTIES_9C5_HS_ADDITIONAL_EMAILS_AB3", - "CONTACTS_PROPERTIES_9E2_IP_CITY", - "CONTACTS_PROPERTIES_9E2_IP_CITY_AB1", - "CONTACTS_PROPERTIES_9E2_IP_CITY_AB2", - "CONTACTS_PROPERTIES_9E2_IP_CITY_AB3", - "CONTACTS_PROPERTIES_9EA_NUM_NOTES", - "CONTACTS_PROPERTIES_9EA_NUM_NOTES_AB1", - "CONTACTS_PROPERTIES_9EA_NUM_NOTES_AB2", - "CONTACTS_PROPERTIES_9EA_NUM_NOTES_AB3", - "CONTACTS_PROPERTIES_9FB_HS_LIFECYCLESTAGE_CUSTOMER_DATE", - "CONTACTS_PROPERTIES_9FB_HS_LIFECYCLESTAGE_CUSTOMER_DATE_AB1", - "CONTACTS_PROPERTIES_9FB_HS_LIFECYCLESTAGE_CUSTOMER_DATE_AB2", - "CONTACTS_PROPERTIES_9FB_HS_LIFECYCLESTAGE_CUSTOMER_DATE_AB3", - "CONTACTS_PROPERTIES_9FC_JOB_FUNCTION", - "CONTACTS_PROPERTIES_9FC_JOB_FUNCTION_AB1", - "CONTACTS_PROPERTIES_9FC_JOB_FUNCTION_AB2", - "CONTACTS_PROPERTIES_9FC_JOB_FUNCTION_AB3", - "CONTACTS_PROPERTIES_A22_HS_IS_UNWORKED", - "CONTACTS_PROPERTIES_A22_HS_IS_UNWORKED_AB1", - "CONTACTS_PROPERTIES_A22_HS_IS_UNWORKED_AB2", - "CONTACTS_PROPERTIES_A22_HS_IS_UNWORKED_AB3", - "CONTACTS_PROPERTIES_A4E_RECENT_CONVERSION_DATE", - "CONTACTS_PROPERTIES_A4E_RECENT_CONVERSION_DATE_AB1", - "CONTACTS_PROPERTIES_A4E_RECENT_CONVERSION_DATE_AB2", - "CONTACTS_PROPERTIES_A4E_RECENT_CONVERSION_DATE_AB3", - "CONTACTS_PROPERTIES_A5B_HS_EMAIL_DOMAIN", - "CONTACTS_PROPERTIES_A5B_HS_EMAIL_DOMAIN_AB1", - "CONTACTS_PROPERTIES_A5B_HS_EMAIL_DOMAIN_AB2", - "CONTACTS_PROPERTIES_A5B_HS_EMAIL_DOMAIN_AB3", - "CONTACTS_PROPERTIES_A62_FIELD_OF_STUDY", - "CONTACTS_PROPERTIES_A62_FIELD_OF_STUDY_AB1", - "CONTACTS_PROPERTIES_A62_FIELD_OF_STUDY_AB2", - "CONTACTS_PROPERTIES_A62_FIELD_OF_STUDY_AB3", - "CONTACTS_PROPERTIES_A62_NUM_ASSOCIATED_DEALS", - "CONTACTS_PROPERTIES_A62_NUM_ASSOCIATED_DEALS_AB1", - "CONTACTS_PROPERTIES_A62_NUM_ASSOCIATED_DEALS_AB2", - "CONTACTS_PROPERTIES_A62_NUM_ASSOCIATED_DEALS_AB3", - "CONTACTS_PROPERTIES_A76_HS_EMAILCONFIRMATIONSTATUS", - "CONTACTS_PROPERTIES_A76_HS_EMAILCONFIRMATIONSTATUS_AB1", - "CONTACTS_PROPERTIES_A76_HS_EMAILCONFIRMATIONSTATUS_AB2", - "CONTACTS_PROPERTIES_A76_HS_EMAILCONFIRMATIONSTATUS_AB3", - "CONTACTS_PROPERTIES_A7D_HS_USER_IDS_OF_ALL_OWNERS", - "CONTACTS_PROPERTIES_A7D_HS_USER_IDS_OF_ALL_OWNERS_AB1", - "CONTACTS_PROPERTIES_A7D_HS_USER_IDS_OF_ALL_OWNERS_AB2", - "CONTACTS_PROPERTIES_A7D_HS_USER_IDS_OF_ALL_OWNERS_AB3", - "CONTACTS_PROPERTIES_A8A_HS_AVATAR_FILEMANAGER_KEY", - "CONTACTS_PROPERTIES_A8A_HS_AVATAR_FILEMANAGER_KEY_AB1", - "CONTACTS_PROPERTIES_A8A_HS_AVATAR_FILEMANAGER_KEY_AB2", - "CONTACTS_PROPERTIES_A8A_HS_AVATAR_FILEMANAGER_KEY_AB3", - "CONTACTS_PROPERTIES_AA1_IP_COUNTRY_CODE", - "CONTACTS_PROPERTIES_AA1_IP_COUNTRY_CODE_AB1", - "CONTACTS_PROPERTIES_AA1_IP_COUNTRY_CODE_AB2", - "CONTACTS_PROPERTIES_AA1_IP_COUNTRY_CODE_AB3", - "CONTACTS_PROPERTIES_AD3_HS_MERGED_OBJECT_IDS", - "CONTACTS_PROPERTIES_AD3_HS_MERGED_OBJECT_IDS_AB1", - "CONTACTS_PROPERTIES_AD3_HS_MERGED_OBJECT_IDS_AB2", - "CONTACTS_PROPERTIES_AD3_HS_MERGED_OBJECT_IDS_AB3", - "CONTACTS_PROPERTIES_AED_WEBINAREVENTLASTUPDATED", - "CONTACTS_PROPERTIES_AED_WEBINAREVENTLASTUPDATED_AB1", - "CONTACTS_PROPERTIES_AED_WEBINAREVENTLASTUPDATED_AB2", - "CONTACTS_PROPERTIES_AED_WEBINAREVENTLASTUPDATED_AB3", - "CONTACTS_PROPERTIES_AF0_HS_CALCULATED_PHONE_NUMBER_REGION_CODE", - "CONTACTS_PROPERTIES_AF0_HS_CALCULATED_PHONE_NUMBER_REGION_CODE_AB1", - "CONTACTS_PROPERTIES_AF0_HS_CALCULATED_PHONE_NUMBER_REGION_CODE_AB2", - "CONTACTS_PROPERTIES_AF0_HS_CALCULATED_PHONE_NUMBER_REGION_CODE_AB3", - "CONTACTS_PROPERTIES_B08_MESSAGE", - "CONTACTS_PROPERTIES_B08_MESSAGE_AB1", - "CONTACTS_PROPERTIES_B08_MESSAGE_AB2", - "CONTACTS_PROPERTIES_B08_MESSAGE_AB3", - "CONTACTS_PROPERTIES_B36_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE", - "CONTACTS_PROPERTIES_B36_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB1", - "CONTACTS_PROPERTIES_B36_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB2", - "CONTACTS_PROPERTIES_B36_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB3", - "CONTACTS_PROPERTIES_B36_HS_EMAIL_HARD_BOUNCE_REASON", - "CONTACTS_PROPERTIES_B36_HS_EMAIL_HARD_BOUNCE_REASON_AB1", - "CONTACTS_PROPERTIES_B36_HS_EMAIL_HARD_BOUNCE_REASON_AB2", - "CONTACTS_PROPERTIES_B36_HS_EMAIL_HARD_BOUNCE_REASON_AB3", - "CONTACTS_PROPERTIES_B37_HS_ALL_ACCESSIBLE_TEAM_IDS", - "CONTACTS_PROPERTIES_B37_HS_ALL_ACCESSIBLE_TEAM_IDS_AB1", - "CONTACTS_PROPERTIES_B37_HS_ALL_ACCESSIBLE_TEAM_IDS_AB2", - "CONTACTS_PROPERTIES_B37_HS_ALL_ACCESSIBLE_TEAM_IDS_AB3", - "CONTACTS_PROPERTIES_B59_HS_IP_TIMEZONE", - "CONTACTS_PROPERTIES_B59_HS_IP_TIMEZONE_AB1", - "CONTACTS_PROPERTIES_B59_HS_IP_TIMEZONE_AB2", - "CONTACTS_PROPERTIES_B59_HS_IP_TIMEZONE_AB3", - "CONTACTS_PROPERTIES_BA9_HS_CONTENT_MEMBERSHIP_NOTES", - "CONTACTS_PROPERTIES_BA9_HS_CONTENT_MEMBERSHIP_NOTES_AB1", - "CONTACTS_PROPERTIES_BA9_HS_CONTENT_MEMBERSHIP_NOTES_AB2", - "CONTACTS_PROPERTIES_BA9_HS_CONTENT_MEMBERSHIP_NOTES_AB3", - "CONTACTS_PROPERTIES_BBB_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP", - "CONTACTS_PROPERTIES_BBB_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB1", - "CONTACTS_PROPERTIES_BBB_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB2", - "CONTACTS_PROPERTIES_BBB_HS_ANALYTICS_FIRST_VISIT_TIMESTAMP_AB3", - "CONTACTS_PROPERTIES_C11_JOBTITLE", - "CONTACTS_PROPERTIES_C11_JOBTITLE_AB1", - "CONTACTS_PROPERTIES_C11_JOBTITLE_AB2", - "CONTACTS_PROPERTIES_C11_JOBTITLE_AB3", - "CONTACTS_PROPERTIES_C2B_HS_EMAIL_LAST_OPEN_DATE", - "CONTACTS_PROPERTIES_C2B_HS_EMAIL_LAST_OPEN_DATE_AB1", - "CONTACTS_PROPERTIES_C2B_HS_EMAIL_LAST_OPEN_DATE_AB2", - "CONTACTS_PROPERTIES_C2B_HS_EMAIL_LAST_OPEN_DATE_AB3", - "CONTACTS_PROPERTIES_C2B_HS_LAST_SALES_ACTIVITY_DATE", - "CONTACTS_PROPERTIES_C2B_HS_LAST_SALES_ACTIVITY_DATE_AB1", - "CONTACTS_PROPERTIES_C2B_HS_LAST_SALES_ACTIVITY_DATE_AB2", - "CONTACTS_PROPERTIES_C2B_HS_LAST_SALES_ACTIVITY_DATE_AB3", - "CONTACTS_PROPERTIES_C3E_HS_EMAIL_CUSTOMER_QUARANTINED_REASON", - "CONTACTS_PROPERTIES_C3E_HS_EMAIL_CUSTOMER_QUARANTINED_REASON_AB1", - "CONTACTS_PROPERTIES_C3E_HS_EMAIL_CUSTOMER_QUARANTINED_REASON_AB2", - "CONTACTS_PROPERTIES_C3E_HS_EMAIL_CUSTOMER_QUARANTINED_REASON_AB3", - "CONTACTS_PROPERTIES_C5A_HS_CALCULATED_FORM_SUBMISSIONS", - "CONTACTS_PROPERTIES_C5A_HS_CALCULATED_FORM_SUBMISSIONS_AB1", - "CONTACTS_PROPERTIES_C5A_HS_CALCULATED_FORM_SUBMISSIONS_AB2", - "CONTACTS_PROPERTIES_C5A_HS_CALCULATED_FORM_SUBMISSIONS_AB3", - "CONTACTS_PROPERTIES_C8F_HS_EMAIL_OPTOUT_10798197", - "CONTACTS_PROPERTIES_C8F_HS_EMAIL_OPTOUT_10798197_AB1", - "CONTACTS_PROPERTIES_C8F_HS_EMAIL_OPTOUT_10798197_AB2", - "CONTACTS_PROPERTIES_C8F_HS_EMAIL_OPTOUT_10798197_AB3", - "CONTACTS_PROPERTIES_C97_HS_EMAIL_OPEN", - "CONTACTS_PROPERTIES_C97_HS_EMAIL_OPEN_AB1", - "CONTACTS_PROPERTIES_C97_HS_EMAIL_OPEN_AB2", - "CONTACTS_PROPERTIES_C97_HS_EMAIL_OPEN_AB3", - "CONTACTS_PROPERTIES_CAF_HS_ANALYTICS_LAST_TIMESTAMP", - "CONTACTS_PROPERTIES_CAF_HS_ANALYTICS_LAST_TIMESTAMP_AB1", - "CONTACTS_PROPERTIES_CAF_HS_ANALYTICS_LAST_TIMESTAMP_AB2", - "CONTACTS_PROPERTIES_CAF_HS_ANALYTICS_LAST_TIMESTAMP_AB3", - "CONTACTS_PROPERTIES_CAF_HS_EMAIL_CLICK", - "CONTACTS_PROPERTIES_CAF_HS_EMAIL_CLICK_AB1", - "CONTACTS_PROPERTIES_CAF_HS_EMAIL_CLICK_AB2", - "CONTACTS_PROPERTIES_CAF_HS_EMAIL_CLICK_AB3", - "CONTACTS_PROPERTIES_CB6_HS_UPDATED_BY_USER_ID", - "CONTACTS_PROPERTIES_CB6_HS_UPDATED_BY_USER_ID_AB1", - "CONTACTS_PROPERTIES_CB6_HS_UPDATED_BY_USER_ID_AB2", - "CONTACTS_PROPERTIES_CB6_HS_UPDATED_BY_USER_ID_AB3", - "CONTACTS_PROPERTIES_CCB_HS_TESTPURGE", - "CONTACTS_PROPERTIES_CCB_HS_TESTPURGE_AB1", - "CONTACTS_PROPERTIES_CCB_HS_TESTPURGE_AB2", - "CONTACTS_PROPERTIES_CCB_HS_TESTPURGE_AB3", - "CONTACTS_PROPERTIES_CD4_HS_LATEST_MEETING_ACTIVITY", - "CONTACTS_PROPERTIES_CD4_HS_LATEST_MEETING_ACTIVITY_AB1", - "CONTACTS_PROPERTIES_CD4_HS_LATEST_MEETING_ACTIVITY_AB2", - "CONTACTS_PROPERTIES_CD4_HS_LATEST_MEETING_ACTIVITY_AB3", - "CONTACTS_PROPERTIES_CDE_HS_ANALYTICS_NUM_EVENT_COMPLETIONS", - "CONTACTS_PROPERTIES_CDE_HS_ANALYTICS_NUM_EVENT_COMPLETIONS_AB1", - "CONTACTS_PROPERTIES_CDE_HS_ANALYTICS_NUM_EVENT_COMPLETIONS_AB2", - "CONTACTS_PROPERTIES_CDE_HS_ANALYTICS_NUM_EVENT_COMPLETIONS_AB3", - "CONTACTS_PROPERTIES_D24_HS_CREATEDATE", - "CONTACTS_PROPERTIES_D24_HS_CREATEDATE_AB1", - "CONTACTS_PROPERTIES_D24_HS_CREATEDATE_AB2", - "CONTACTS_PROPERTIES_D24_HS_CREATEDATE_AB3", - "CONTACTS_PROPERTIES_D29_FAX", - "CONTACTS_PROPERTIES_D29_FAX_AB1", - "CONTACTS_PROPERTIES_D29_FAX_AB2", - "CONTACTS_PROPERTIES_D29_FAX_AB3", - "CONTACTS_PROPERTIES_D32_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN", - "CONTACTS_PROPERTIES_D32_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB1", - "CONTACTS_PROPERTIES_D32_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB2", - "CONTACTS_PROPERTIES_D32_HS_ANALYTICS_FIRST_TOUCH_CONVERTING_CAMPAIGN_AB3", - "CONTACTS_PROPERTIES_D37_HUBSPOT_TEAM_ID", - "CONTACTS_PROPERTIES_D37_HUBSPOT_TEAM_ID_AB1", - "CONTACTS_PROPERTIES_D37_HUBSPOT_TEAM_ID_AB2", - "CONTACTS_PROPERTIES_D37_HUBSPOT_TEAM_ID_AB3", - "CONTACTS_PROPERTIES_D40_ZIP", - "CONTACTS_PROPERTIES_D40_ZIP_AB1", - "CONTACTS_PROPERTIES_D40_ZIP_AB2", - "CONTACTS_PROPERTIES_D40_ZIP_AB3", - "CONTACTS_PROPERTIES_D8F_EMAIL", - "CONTACTS_PROPERTIES_D8F_EMAIL_AB1", - "CONTACTS_PROPERTIES_D8F_EMAIL_AB2", - "CONTACTS_PROPERTIES_D8F_EMAIL_AB3", - "CONTACTS_PROPERTIES_D9F_HS_EMAIL_IS_INELIGIBLE", - "CONTACTS_PROPERTIES_D9F_HS_EMAIL_IS_INELIGIBLE_AB1", - "CONTACTS_PROPERTIES_D9F_HS_EMAIL_IS_INELIGIBLE_AB2", - "CONTACTS_PROPERTIES_D9F_HS_EMAIL_IS_INELIGIBLE_AB3", - "CONTACTS_PROPERTIES_DA2_HS_CALCULATED_MERGED_VIDS", - "CONTACTS_PROPERTIES_DA2_HS_CALCULATED_MERGED_VIDS_AB1", - "CONTACTS_PROPERTIES_DA2_HS_CALCULATED_MERGED_VIDS_AB2", - "CONTACTS_PROPERTIES_DA2_HS_CALCULATED_MERGED_VIDS_AB3", - "CONTACTS_PROPERTIES_DC9_IP_ZIPCODE", - "CONTACTS_PROPERTIES_DC9_IP_ZIPCODE_AB1", - "CONTACTS_PROPERTIES_DC9_IP_ZIPCODE_AB2", - "CONTACTS_PROPERTIES_DC9_IP_ZIPCODE_AB3", - "CONTACTS_PROPERTIES_DE6_RECENT_DEAL_CLOSE_DATE", - "CONTACTS_PROPERTIES_DE6_RECENT_DEAL_CLOSE_DATE_AB1", - "CONTACTS_PROPERTIES_DE6_RECENT_DEAL_CLOSE_DATE_AB2", - "CONTACTS_PROPERTIES_DE6_RECENT_DEAL_CLOSE_DATE_AB3", - "CONTACTS_PROPERTIES_E05_HS_ANALYTICS_NUM_VISITS", - "CONTACTS_PROPERTIES_E05_HS_ANALYTICS_NUM_VISITS_AB1", - "CONTACTS_PROPERTIES_E05_HS_ANALYTICS_NUM_VISITS_AB2", - "CONTACTS_PROPERTIES_E05_HS_ANALYTICS_NUM_VISITS_AB3", - "CONTACTS_PROPERTIES_E2D_LASTMODIFIEDDATE", - "CONTACTS_PROPERTIES_E2D_LASTMODIFIEDDATE_AB1", - "CONTACTS_PROPERTIES_E2D_LASTMODIFIEDDATE_AB2", - "CONTACTS_PROPERTIES_E2D_LASTMODIFIEDDATE_AB3", - "CONTACTS_PROPERTIES_E31_TWITTERHANDLE", - "CONTACTS_PROPERTIES_E31_TWITTERHANDLE_AB1", - "CONTACTS_PROPERTIES_E31_TWITTERHANDLE_AB2", - "CONTACTS_PROPERTIES_E31_TWITTERHANDLE_AB3", - "CONTACTS_PROPERTIES_E4E_HS_EMAIL_LAST_CLICK_DATE", - "CONTACTS_PROPERTIES_E4E_HS_EMAIL_LAST_CLICK_DATE_AB1", - "CONTACTS_PROPERTIES_E4E_HS_EMAIL_LAST_CLICK_DATE_AB2", - "CONTACTS_PROPERTIES_E4E_HS_EMAIL_LAST_CLICK_DATE_AB3", - "CONTACTS_PROPERTIES_E7F_HS_EMAIL_DELIVERED", - "CONTACTS_PROPERTIES_E7F_HS_EMAIL_DELIVERED_AB1", - "CONTACTS_PROPERTIES_E7F_HS_EMAIL_DELIVERED_AB2", - "CONTACTS_PROPERTIES_E7F_HS_EMAIL_DELIVERED_AB3", - "CONTACTS_PROPERTIES_E87_IP_LATLON", - "CONTACTS_PROPERTIES_E87_IP_LATLON_AB1", - "CONTACTS_PROPERTIES_E87_IP_LATLON_AB2", - "CONTACTS_PROPERTIES_E87_IP_LATLON_AB3", - "CONTACTS_PROPERTIES_E88_HS_CREATED_BY_CONVERSATIONS", - "CONTACTS_PROPERTIES_E88_HS_CREATED_BY_CONVERSATIONS_AB1", - "CONTACTS_PROPERTIES_E88_HS_CREATED_BY_CONVERSATIONS_AB2", - "CONTACTS_PROPERTIES_E88_HS_CREATED_BY_CONVERSATIONS_AB3", - "CONTACTS_PROPERTIES_EF9_START_DATE", - "CONTACTS_PROPERTIES_EF9_START_DATE_AB1", - "CONTACTS_PROPERTIES_EF9_START_DATE_AB2", - "CONTACTS_PROPERTIES_EF9_START_DATE_AB3", - "CONTACTS_PROPERTIES_F00_HS_PERSONA", - "CONTACTS_PROPERTIES_F00_HS_PERSONA_AB1", - "CONTACTS_PROPERTIES_F00_HS_PERSONA_AB2", - "CONTACTS_PROPERTIES_F00_HS_PERSONA_AB3", - "CONTACTS_PROPERTIES_F34_NUM_CONVERSION_EVENTS", - "CONTACTS_PROPERTIES_F34_NUM_CONVERSION_EVENTS_AB1", - "CONTACTS_PROPERTIES_F34_NUM_CONVERSION_EVENTS_AB2", - "CONTACTS_PROPERTIES_F34_NUM_CONVERSION_EVENTS_AB3", - "CONTACTS_PROPERTIES_F39_ADDRESS", - "CONTACTS_PROPERTIES_F39_ADDRESS_AB1", - "CONTACTS_PROPERTIES_F39_ADDRESS_AB2", - "CONTACTS_PROPERTIES_F39_ADDRESS_AB3", - "CONTACTS_PROPERTIES_F3B_DEGREE", - "CONTACTS_PROPERTIES_F3B_DEGREE_AB1", - "CONTACTS_PROPERTIES_F3B_DEGREE_AB2", - "CONTACTS_PROPERTIES_F3B_DEGREE_AB3", - "CONTACTS_PROPERTIES_F48_HS_COUNT_IS_UNWORKED", - "CONTACTS_PROPERTIES_F48_HS_COUNT_IS_UNWORKED_AB1", - "CONTACTS_PROPERTIES_F48_HS_COUNT_IS_UNWORKED_AB2", - "CONTACTS_PROPERTIES_F48_HS_COUNT_IS_UNWORKED_AB3", - "CONTACTS_PROPERTIES_F4C_HS_ALL_TEAM_IDS", - "CONTACTS_PROPERTIES_F4C_HS_ALL_TEAM_IDS_AB1", - "CONTACTS_PROPERTIES_F4C_HS_ALL_TEAM_IDS_AB2", - "CONTACTS_PROPERTIES_F4C_HS_ALL_TEAM_IDS_AB3", - "CONTACTS_PROPERTIES_F82_HS_SALES_EMAIL_LAST_OPENED", - "CONTACTS_PROPERTIES_F82_HS_SALES_EMAIL_LAST_OPENED_AB1", - "CONTACTS_PROPERTIES_F82_HS_SALES_EMAIL_LAST_OPENED_AB2", - "CONTACTS_PROPERTIES_F82_HS_SALES_EMAIL_LAST_OPENED_AB3", - "CONTACTS_PROPERTIES_FA8_HS_SEARCHABLE_CALCULATED_PHONE_NUMBER", - "CONTACTS_PROPERTIES_FA8_HS_SEARCHABLE_CALCULATED_PHONE_NUMBER_AB1", - "CONTACTS_PROPERTIES_FA8_HS_SEARCHABLE_CALCULATED_PHONE_NUMBER_AB2", - "CONTACTS_PROPERTIES_FA8_HS_SEARCHABLE_CALCULATED_PHONE_NUMBER_AB3", - "CONTACTS_PROPERTIES_FAF_HS_LIFECYCLESTAGE_SUBSCRIBER_DATE", - "CONTACTS_PROPERTIES_FAF_HS_LIFECYCLESTAGE_SUBSCRIBER_DATE_AB1", - "CONTACTS_PROPERTIES_FAF_HS_LIFECYCLESTAGE_SUBSCRIBER_DATE_AB2", - "CONTACTS_PROPERTIES_FAF_HS_LIFECYCLESTAGE_SUBSCRIBER_DATE_AB3", - "CONTACTS_PROPERTIES_FD0_IP_COUNTRY", - "CONTACTS_PROPERTIES_FD0_IP_COUNTRY_AB1", - "CONTACTS_PROPERTIES_FD0_IP_COUNTRY_AB2", - "CONTACTS_PROPERTIES_FD0_IP_COUNTRY_AB3", - "CONTACTS_PROPERTIES_FF4_HS_COUNT_IS_WORKED", - "CONTACTS_PROPERTIES_FF4_HS_COUNT_IS_WORKED_AB1", - "CONTACTS_PROPERTIES_FF4_HS_COUNT_IS_WORKED_AB2", - "CONTACTS_PROPERTIES_FF4_HS_COUNT_IS_WORKED_AB3", - "CONTACTS_PROPERTIES_FF7_HS_CONTENT_MEMBERSHIP_REGISTERED_AT", - "CONTACTS_PROPERTIES_FF7_HS_CONTENT_MEMBERSHIP_REGISTERED_AT_AB1", - "CONTACTS_PROPERTIES_FF7_HS_CONTENT_MEMBERSHIP_REGISTERED_AT_AB2", - "CONTACTS_PROPERTIES_FF7_HS_CONTENT_MEMBERSHIP_REGISTERED_AT_AB3", - "CONTACTS_PROPERTIES_FFF_COUNTRY", - "CONTACTS_PROPERTIES_FFF_COUNTRY_AB1", - "CONTACTS_PROPERTIES_FFF_COUNTRY_AB2", - "CONTACTS_PROPERTIES_FFF_COUNTRY_AB3", - "CONTACT_LISTS_4C6_METADATA", - "CONTACT_LISTS_4C6_METADATA_AB1", - "CONTACT_LISTS_4C6_METADATA_AB2", - "CONTACT_LISTS_4C6_METADATA_AB3", - "CONTACT_LISTS_A20_FILTERS", - "CONTACT_LISTS_A20_FILTERS_AB1", - "CONTACT_LISTS_A20_FILTERS_AB2", - "CONTACT_LISTS_A20_FILTERS_AB3", - "DEALS_070_PROPERTIES", - "DEALS_070_PROPERTIES_AB1", - "DEALS_070_PROPERTIES_AB2", - "DEALS_070_PROPERTIES_AB3", - "DEALS_0BF_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM", - "DEALS_0BF_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB1", - "DEALS_0BF_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB2", - "DEALS_0BF_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB3", - "DEALS_0D6_PROPERTY_HS_USER_IDS_OF_ALL_OWNERS", - "DEALS_0D6_PROPERTY_HS_USER_IDS_OF_ALL_OWNERS_AB1", - "DEALS_0D6_PROPERTY_HS_USER_IDS_OF_ALL_OWNERS_AB2", - "DEALS_0D6_PROPERTY_HS_USER_IDS_OF_ALL_OWNERS_AB3", - "DEALS_0DC_PROPERTY_HS_DATE_ENTERED_CLOSEDWON", - "DEALS_0DC_PROPERTY_HS_DATE_ENTERED_CLOSEDWON_AB1", - "DEALS_0DC_PROPERTY_HS_DATE_ENTERED_CLOSEDWON_AB2", - "DEALS_0DC_PROPERTY_HS_DATE_ENTERED_CLOSEDWON_AB3", - "DEALS_0E7_PROPERTY_HS_ALL_OWNER_IDS", - "DEALS_0E7_PROPERTY_HS_ALL_OWNER_IDS_AB1", - "DEALS_0E7_PROPERTY_HS_ALL_OWNER_IDS_AB2", - "DEALS_0E7_PROPERTY_HS_ALL_OWNER_IDS_AB3", - "DEALS_139_PROPERTY_NOTES_NEXT_ACTIVITY_DATE", - "DEALS_139_PROPERTY_NOTES_NEXT_ACTIVITY_DATE_AB1", - "DEALS_139_PROPERTY_NOTES_NEXT_ACTIVITY_DATE_AB2", - "DEALS_139_PROPERTY_NOTES_NEXT_ACTIVITY_DATE_AB3", - "DEALS_141_PROPERTY_HS_PREDICTED_AMOUNT_IN_HOME_CURRENCY", - "DEALS_141_PROPERTY_HS_PREDICTED_AMOUNT_IN_HOME_CURRENCY_AB1", - "DEALS_141_PROPERTY_HS_PREDICTED_AMOUNT_IN_HOME_CURRENCY_AB2", - "DEALS_141_PROPERTY_HS_PREDICTED_AMOUNT_IN_HOME_CURRENCY_AB3", - "DEALS_16B_PROPERTY_NUM_ASSOCIATED_CONTACTS", - "DEALS_16B_PROPERTY_NUM_ASSOCIATED_CONTACTS_AB1", - "DEALS_16B_PROPERTY_NUM_ASSOCIATED_CONTACTS_AB2", - "DEALS_16B_PROPERTY_NUM_ASSOCIATED_CONTACTS_AB3", - "DEALS_19C_PROPERTY_HS_TIME_IN_CONTRACTSENT", - "DEALS_19C_PROPERTY_HS_TIME_IN_CONTRACTSENT_AB1", - "DEALS_19C_PROPERTY_HS_TIME_IN_CONTRACTSENT_AB2", - "DEALS_19C_PROPERTY_HS_TIME_IN_CONTRACTSENT_AB3", - "DEALS_1F2_PROPERTY_HS_DATE_ENTERED_9567449", - "DEALS_1F2_PROPERTY_HS_DATE_ENTERED_9567449_AB1", - "DEALS_1F2_PROPERTY_HS_DATE_ENTERED_9567449_AB2", - "DEALS_1F2_PROPERTY_HS_DATE_ENTERED_9567449_AB3", - "DEALS_205_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1", - "DEALS_205_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_AB1", - "DEALS_205_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_AB2", - "DEALS_205_PROPERTY_HS_ANALYTICS_SOURCE_DATA_1_AB3", - "DEALS_212_PROPERTY_HS_TIME_IN_9567448", - "DEALS_212_PROPERTY_HS_TIME_IN_9567448_AB1", - "DEALS_212_PROPERTY_HS_TIME_IN_9567448_AB2", - "DEALS_212_PROPERTY_HS_TIME_IN_9567448_AB3", - "DEALS_241_PROPERTY_HS_SALES_EMAIL_LAST_REPLIED", - "DEALS_241_PROPERTY_HS_SALES_EMAIL_LAST_REPLIED_AB1", - "DEALS_241_PROPERTY_HS_SALES_EMAIL_LAST_REPLIED_AB2", - "DEALS_241_PROPERTY_HS_SALES_EMAIL_LAST_REPLIED_AB3", - "DEALS_26A_PROPERTY_HS_DATE_EXITED_QUALIFIEDTOBUY", - "DEALS_26A_PROPERTY_HS_DATE_EXITED_QUALIFIEDTOBUY_AB1", - "DEALS_26A_PROPERTY_HS_DATE_EXITED_QUALIFIEDTOBUY_AB2", - "DEALS_26A_PROPERTY_HS_DATE_EXITED_QUALIFIEDTOBUY_AB3", - "DEALS_298_PROPERTY_HS_LASTMODIFIEDDATE", - "DEALS_298_PROPERTY_HS_LASTMODIFIEDDATE_AB1", - "DEALS_298_PROPERTY_HS_LASTMODIFIEDDATE_AB2", - "DEALS_298_PROPERTY_HS_LASTMODIFIEDDATE_AB3", - "DEALS_2B5_PROPERTY_HS_DATE_EXITED_9567448", - "DEALS_2B5_PROPERTY_HS_DATE_EXITED_9567448_AB1", - "DEALS_2B5_PROPERTY_HS_DATE_EXITED_9567448_AB2", - "DEALS_2B5_PROPERTY_HS_DATE_EXITED_9567448_AB3", - "DEALS_2C9_PROPERTY_HS_LATEST_MEETING_ACTIVITY", - "DEALS_2C9_PROPERTY_HS_LATEST_MEETING_ACTIVITY_AB1", - "DEALS_2C9_PROPERTY_HS_LATEST_MEETING_ACTIVITY_AB2", - "DEALS_2C9_PROPERTY_HS_LATEST_MEETING_ACTIVITY_AB3", - "DEALS_2DE_PROPERTY_HS_TIME_IN_PRESENTATIONSCHEDULED", - "DEALS_2DE_PROPERTY_HS_TIME_IN_PRESENTATIONSCHEDULED_AB1", - "DEALS_2DE_PROPERTY_HS_TIME_IN_PRESENTATIONSCHEDULED_AB2", - "DEALS_2DE_PROPERTY_HS_TIME_IN_PRESENTATIONSCHEDULED_AB3", - "DEALS_2EA_PROPERTY_HS_TIME_IN_CLOSEDWON", - "DEALS_2EA_PROPERTY_HS_TIME_IN_CLOSEDWON_AB1", - "DEALS_2EA_PROPERTY_HS_TIME_IN_CLOSEDWON_AB2", - "DEALS_2EA_PROPERTY_HS_TIME_IN_CLOSEDWON_AB3", - "DEALS_326_PROPERTY_NOTES_LAST_UPDATED", - "DEALS_326_PROPERTY_NOTES_LAST_UPDATED_AB1", - "DEALS_326_PROPERTY_NOTES_LAST_UPDATED_AB2", - "DEALS_326_PROPERTY_NOTES_LAST_UPDATED_AB3", - "DEALS_33F_PROPERTY_HS_PROJECTED_AMOUNT", - "DEALS_33F_PROPERTY_HS_PROJECTED_AMOUNT_AB1", - "DEALS_33F_PROPERTY_HS_PROJECTED_AMOUNT_AB2", - "DEALS_33F_PROPERTY_HS_PROJECTED_AMOUNT_AB3", - "DEALS_348_PROPERTY_AMOUNT", - "DEALS_348_PROPERTY_AMOUNT_AB1", - "DEALS_348_PROPERTY_AMOUNT_AB2", - "DEALS_348_PROPERTY_AMOUNT_AB3", - "DEALS_34E_PROPERTY_HS_TCV", - "DEALS_34E_PROPERTY_HS_TCV_AB1", - "DEALS_34E_PROPERTY_HS_TCV_AB2", - "DEALS_34E_PROPERTY_HS_TCV_AB3", - "DEALS_3CE_PROPERTY_HS_TIME_IN_9567449", - "DEALS_3CE_PROPERTY_HS_TIME_IN_9567449_AB1", - "DEALS_3CE_PROPERTY_HS_TIME_IN_9567449_AB2", - "DEALS_3CE_PROPERTY_HS_TIME_IN_9567449_AB3", - "DEALS_3D9_PROPERTY_HS_LIKELIHOOD_TO_CLOSE", - "DEALS_3D9_PROPERTY_HS_LIKELIHOOD_TO_CLOSE_AB1", - "DEALS_3D9_PROPERTY_HS_LIKELIHOOD_TO_CLOSE_AB2", - "DEALS_3D9_PROPERTY_HS_LIKELIHOOD_TO_CLOSE_AB3", - "DEALS_40E_PROPERTY_HS_CLOSED_AMOUNT_IN_HOME_CURRENCY", - "DEALS_40E_PROPERTY_HS_CLOSED_AMOUNT_IN_HOME_CURRENCY_AB1", - "DEALS_40E_PROPERTY_HS_CLOSED_AMOUNT_IN_HOME_CURRENCY_AB2", - "DEALS_40E_PROPERTY_HS_CLOSED_AMOUNT_IN_HOME_CURRENCY_AB3", - "DEALS_41D_PROPERTY_DEALTYPE", - "DEALS_41D_PROPERTY_DEALTYPE_AB1", - "DEALS_41D_PROPERTY_DEALTYPE_AB2", - "DEALS_41D_PROPERTY_DEALTYPE_AB3", - "DEALS_43C_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_PERIOD", - "DEALS_43C_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_PERIOD_AB1", - "DEALS_43C_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_PERIOD_AB2", - "DEALS_43C_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_PERIOD_AB3", - "DEALS_477_PROPERTY_CLOSED_WON_REASON", - "DEALS_477_PROPERTY_CLOSED_WON_REASON_AB1", - "DEALS_477_PROPERTY_CLOSED_WON_REASON_AB2", - "DEALS_477_PROPERTY_CLOSED_WON_REASON_AB3", - "DEALS_4F5_PROPERTIES_VERSIONS", - "DEALS_4F5_PROPERTIES_VERSIONS_AB1", - "DEALS_4F5_PROPERTIES_VERSIONS_AB2", - "DEALS_4F5_PROPERTIES_VERSIONS_AB3", - "DEALS_4F5_PROPERTY_CLOSED_LOST_REASON", - "DEALS_4F5_PROPERTY_CLOSED_LOST_REASON_AB1", - "DEALS_4F5_PROPERTY_CLOSED_LOST_REASON_AB2", - "DEALS_4F5_PROPERTY_CLOSED_LOST_REASON_AB3", - "DEALS_52D_PROPERTY_HS_IS_CLOSED", - "DEALS_52D_PROPERTY_HS_IS_CLOSED_AB1", - "DEALS_52D_PROPERTY_HS_IS_CLOSED_AB2", - "DEALS_52D_PROPERTY_HS_IS_CLOSED_AB3", - "DEALS_53D_PROPERTY_HS_ALL_TEAM_IDS", - "DEALS_53D_PROPERTY_HS_ALL_TEAM_IDS_AB1", - "DEALS_53D_PROPERTY_HS_ALL_TEAM_IDS_AB2", - "DEALS_53D_PROPERTY_HS_ALL_TEAM_IDS_AB3", - "DEALS_555_PROPERTY_HS_TIME_IN_DECISIONMAKERBOUGHTIN", - "DEALS_555_PROPERTY_HS_TIME_IN_DECISIONMAKERBOUGHTIN_AB1", - "DEALS_555_PROPERTY_HS_TIME_IN_DECISIONMAKERBOUGHTIN_AB2", - "DEALS_555_PROPERTY_HS_TIME_IN_DECISIONMAKERBOUGHTIN_AB3", - "DEALS_569_PROPERTY_HS_MANUAL_FORECAST_CATEGORY", - "DEALS_569_PROPERTY_HS_MANUAL_FORECAST_CATEGORY_AB1", - "DEALS_569_PROPERTY_HS_MANUAL_FORECAST_CATEGORY_AB2", - "DEALS_569_PROPERTY_HS_MANUAL_FORECAST_CATEGORY_AB3", - "DEALS_591_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2", - "DEALS_591_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_AB1", - "DEALS_591_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_AB2", - "DEALS_591_PROPERTY_HS_ANALYTICS_SOURCE_DATA_2_AB3", - "DEALS_59D_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_START_DATE", - "DEALS_59D_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_START_DATE_AB1", - "DEALS_59D_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_START_DATE_AB2", - "DEALS_59D_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_START_DATE_AB3", - "DEALS_5F7_PROPERTY_HS_NEXT_STEP", - "DEALS_5F7_PROPERTY_HS_NEXT_STEP_AB1", - "DEALS_5F7_PROPERTY_HS_NEXT_STEP_AB2", - "DEALS_5F7_PROPERTY_HS_NEXT_STEP_AB3", - "DEALS_60F_PROPERTY_HS_DATE_EXITED_CONTRACTSENT", - "DEALS_60F_PROPERTY_HS_DATE_EXITED_CONTRACTSENT_AB1", - "DEALS_60F_PROPERTY_HS_DATE_EXITED_CONTRACTSENT_AB2", - "DEALS_60F_PROPERTY_HS_DATE_EXITED_CONTRACTSENT_AB3", - "DEALS_62B_PROPERTY_AMOUNT_IN_HOME_CURRENCY", - "DEALS_62B_PROPERTY_AMOUNT_IN_HOME_CURRENCY_AB1", - "DEALS_62B_PROPERTY_AMOUNT_IN_HOME_CURRENCY_AB2", - "DEALS_62B_PROPERTY_AMOUNT_IN_HOME_CURRENCY_AB3", - "DEALS_650_PROPERTY_HS_DATE_ENTERED_QUALIFIEDTOBUY", - "DEALS_650_PROPERTY_HS_DATE_ENTERED_QUALIFIEDTOBUY_AB1", - "DEALS_650_PROPERTY_HS_DATE_ENTERED_QUALIFIEDTOBUY_AB2", - "DEALS_650_PROPERTY_HS_DATE_ENTERED_QUALIFIEDTOBUY_AB3", - "DEALS_6BE_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE", - "DEALS_6BE_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB1", - "DEALS_6BE_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB2", - "DEALS_6BE_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB3", - "DEALS_6FA_PROPERTY_HS_DATE_EXITED_PRESENTATIONSCHEDULED", - "DEALS_6FA_PROPERTY_HS_DATE_EXITED_PRESENTATIONSCHEDULED_AB1", - "DEALS_6FA_PROPERTY_HS_DATE_EXITED_PRESENTATIONSCHEDULED_AB2", - "DEALS_6FA_PROPERTY_HS_DATE_EXITED_PRESENTATIONSCHEDULED_AB3", - "DEALS_708_PROPERTY_HS_DATE_ENTERED_CUSTOMCLOSEDWONSTAGE", - "DEALS_708_PROPERTY_HS_DATE_ENTERED_CUSTOMCLOSEDWONSTAGE_AB1", - "DEALS_708_PROPERTY_HS_DATE_ENTERED_CUSTOMCLOSEDWONSTAGE_AB2", - "DEALS_708_PROPERTY_HS_DATE_ENTERED_CUSTOMCLOSEDWONSTAGE_AB3", - "DEALS_712_PROPERTY_HS_FORECAST_PROBABILITY", - "DEALS_712_PROPERTY_HS_FORECAST_PROBABILITY_AB1", - "DEALS_712_PROPERTY_HS_FORECAST_PROBABILITY_AB2", - "DEALS_712_PROPERTY_HS_FORECAST_PROBABILITY_AB3", - "DEALS_72E_PROPERTY_NUM_CONTACTED_NOTES", - "DEALS_72E_PROPERTY_NUM_CONTACTED_NOTES_AB1", - "DEALS_72E_PROPERTY_NUM_CONTACTED_NOTES_AB2", - "DEALS_72E_PROPERTY_NUM_CONTACTED_NOTES_AB3", - "DEALS_73D_PROPERTY_HS_MERGED_OBJECT_IDS", - "DEALS_73D_PROPERTY_HS_MERGED_OBJECT_IDS_AB1", - "DEALS_73D_PROPERTY_HS_MERGED_OBJECT_IDS_AB2", - "DEALS_73D_PROPERTY_HS_MERGED_OBJECT_IDS_AB3", - "DEALS_74E_PROPERTY_HUBSPOT_TEAM_ID", - "DEALS_74E_PROPERTY_HUBSPOT_TEAM_ID_AB1", - "DEALS_74E_PROPERTY_HUBSPOT_TEAM_ID_AB2", - "DEALS_74E_PROPERTY_HUBSPOT_TEAM_ID_AB3", - "DEALS_75E_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_START_DATE_ENABLED", - "DEALS_75E_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_START_DATE_ENABLED_AB1", - "DEALS_75E_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_START_DATE_ENABLED_AB2", - "DEALS_75E_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_START_DATE_ENABLED_AB3", - "DEALS_767_PROPERTY_HS_DEAL_AMOUNT_CALCULATION_PREFERENCE", - "DEALS_767_PROPERTY_HS_DEAL_AMOUNT_CALCULATION_PREFERENCE_AB1", - "DEALS_767_PROPERTY_HS_DEAL_AMOUNT_CALCULATION_PREFERENCE_AB2", - "DEALS_767_PROPERTY_HS_DEAL_AMOUNT_CALCULATION_PREFERENCE_AB3", - "DEALS_787_ASSOCIATIONS", - "DEALS_787_ASSOCIATIONS_AB1", - "DEALS_787_ASSOCIATIONS_AB2", - "DEALS_787_ASSOCIATIONS_AB3", - "DEALS_7AC_PROPERTY_HS_DATE_EXITED_CLOSEDLOST", - "DEALS_7AC_PROPERTY_HS_DATE_EXITED_CLOSEDLOST_AB1", - "DEALS_7AC_PROPERTY_HS_DATE_EXITED_CLOSEDLOST_AB2", - "DEALS_7AC_PROPERTY_HS_DATE_EXITED_CLOSEDLOST_AB3", - "DEALS_830_PROPERTY_DESCRIPTION", - "DEALS_830_PROPERTY_DESCRIPTION_AB1", - "DEALS_830_PROPERTY_DESCRIPTION_AB2", - "DEALS_830_PROPERTY_DESCRIPTION_AB3", - "DEALS_855_PROPERTY_HS_CREATEDATE", - "DEALS_855_PROPERTY_HS_CREATEDATE_AB1", - "DEALS_855_PROPERTY_HS_CREATEDATE_AB2", - "DEALS_855_PROPERTY_HS_CREATEDATE_AB3", - "DEALS_896_PROPERTY_HS_DATE_ENTERED_CLOSEDLOST", - "DEALS_896_PROPERTY_HS_DATE_ENTERED_CLOSEDLOST_AB1", - "DEALS_896_PROPERTY_HS_DATE_ENTERED_CLOSEDLOST_AB2", - "DEALS_896_PROPERTY_HS_DATE_ENTERED_CLOSEDLOST_AB3", - "DEALS_897_PROPERTY_CREATEDATE", - "DEALS_897_PROPERTY_CREATEDATE_AB1", - "DEALS_897_PROPERTY_CREATEDATE_AB2", - "DEALS_897_PROPERTY_CREATEDATE_AB3", - "DEALS_89D_PROPERTY_HS_DATE_EXITED_CLOSEDWON", - "DEALS_89D_PROPERTY_HS_DATE_EXITED_CLOSEDWON_AB1", - "DEALS_89D_PROPERTY_HS_DATE_EXITED_CLOSEDWON_AB2", - "DEALS_89D_PROPERTY_HS_DATE_EXITED_CLOSEDWON_AB3", - "DEALS_8AC_PROPERTY_HS_CLOSED_AMOUNT", - "DEALS_8AC_PROPERTY_HS_CLOSED_AMOUNT_AB1", - "DEALS_8AC_PROPERTY_HS_CLOSED_AMOUNT_AB2", - "DEALS_8AC_PROPERTY_HS_CLOSED_AMOUNT_AB3", - "DEALS_8B6_PROPERTY_HS_TIME_IN_APPOINTMENTSCHEDULED", - "DEALS_8B6_PROPERTY_HS_TIME_IN_APPOINTMENTSCHEDULED_AB1", - "DEALS_8B6_PROPERTY_HS_TIME_IN_APPOINTMENTSCHEDULED_AB2", - "DEALS_8B6_PROPERTY_HS_TIME_IN_APPOINTMENTSCHEDULED_AB3", - "DEALS_8FF_PROPERTY_HS_MRR", - "DEALS_8FF_PROPERTY_HS_MRR_AB1", - "DEALS_8FF_PROPERTY_HS_MRR_AB2", - "DEALS_8FF_PROPERTY_HS_MRR_AB3", - "DEALS_95E_PROPERTY_HS_TIME_IN_CLOSEDLOST", - "DEALS_95E_PROPERTY_HS_TIME_IN_CLOSEDLOST_AB1", - "DEALS_95E_PROPERTY_HS_TIME_IN_CLOSEDLOST_AB2", - "DEALS_95E_PROPERTY_HS_TIME_IN_CLOSEDLOST_AB3", - "DEALS_98E_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN", - "DEALS_98E_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB1", - "DEALS_98E_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB2", - "DEALS_98E_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB3", - "DEALS_9A9_PROPERTY_HS_DATE_ENTERED_CONTRACTSENT", - "DEALS_9A9_PROPERTY_HS_DATE_ENTERED_CONTRACTSENT_AB1", - "DEALS_9A9_PROPERTY_HS_DATE_ENTERED_CONTRACTSENT_AB2", - "DEALS_9A9_PROPERTY_HS_DATE_ENTERED_CONTRACTSENT_AB3", - "DEALS_9B8_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_DISCOUNT_PERCENTAGE", - "DEALS_9B8_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_DISCOUNT_PERCENTAGE_AB1", - "DEALS_9B8_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_DISCOUNT_PERCENTAGE_AB2", - "DEALS_9B8_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_DISCOUNT_PERCENTAGE_AB3", - "DEALS_9C4_PROPERTY_DAYS_TO_CLOSE", - "DEALS_9C4_PROPERTY_DAYS_TO_CLOSE_AB1", - "DEALS_9C4_PROPERTY_DAYS_TO_CLOSE_AB2", - "DEALS_9C4_PROPERTY_DAYS_TO_CLOSE_AB3", - "DEALS_9CF_PROPERTY_HS_CREATED_BY_USER_ID", - "DEALS_9CF_PROPERTY_HS_CREATED_BY_USER_ID_AB1", - "DEALS_9CF_PROPERTY_HS_CREATED_BY_USER_ID_AB2", - "DEALS_9CF_PROPERTY_HS_CREATED_BY_USER_ID_AB3", - "DEALS_9E5_PROPERTY_HS_PREDICTED_AMOUNT", - "DEALS_9E5_PROPERTY_HS_PREDICTED_AMOUNT_AB1", - "DEALS_9E5_PROPERTY_HS_PREDICTED_AMOUNT_AB2", - "DEALS_9E5_PROPERTY_HS_PREDICTED_AMOUNT_AB3", - "DEALS_A61_PROPERTY_HS_UPDATED_BY_USER_ID", - "DEALS_A61_PROPERTY_HS_UPDATED_BY_USER_ID_AB1", - "DEALS_A61_PROPERTY_HS_UPDATED_BY_USER_ID_AB2", - "DEALS_A61_PROPERTY_HS_UPDATED_BY_USER_ID_AB3", - "DEALS_A72_PROPERTY_HS_TIME_IN_QUALIFIEDTOBUY", - "DEALS_A72_PROPERTY_HS_TIME_IN_QUALIFIEDTOBUY_AB1", - "DEALS_A72_PROPERTY_HS_TIME_IN_QUALIFIEDTOBUY_AB2", - "DEALS_A72_PROPERTY_HS_TIME_IN_QUALIFIEDTOBUY_AB3", - "DEALS_ABE_PROPERTY_HS_PROJECTED_AMOUNT_IN_HOME_CURRENCY", - "DEALS_ABE_PROPERTY_HS_PROJECTED_AMOUNT_IN_HOME_CURRENCY_AB1", - "DEALS_ABE_PROPERTY_HS_PROJECTED_AMOUNT_IN_HOME_CURRENCY_AB2", - "DEALS_ABE_PROPERTY_HS_PROJECTED_AMOUNT_IN_HOME_CURRENCY_AB3", - "DEALS_B3E_PROPERTY_CLOSEDATE", - "DEALS_B3E_PROPERTY_CLOSEDATE_AB1", - "DEALS_B3E_PROPERTY_CLOSEDATE_AB2", - "DEALS_B3E_PROPERTY_CLOSEDATE_AB3", - "DEALS_B50_PROPERTY_HS_ARR", - "DEALS_B50_PROPERTY_HS_ARR_AB1", - "DEALS_B50_PROPERTY_HS_ARR_AB2", - "DEALS_B50_PROPERTY_HS_ARR_AB3", - "DEALS_B60_PROPERTY_HS_DATE_EXITED_APPOINTMENTSCHEDULED", - "DEALS_B60_PROPERTY_HS_DATE_EXITED_APPOINTMENTSCHEDULED_AB1", - "DEALS_B60_PROPERTY_HS_DATE_EXITED_APPOINTMENTSCHEDULED_AB2", - "DEALS_B60_PROPERTY_HS_DATE_EXITED_APPOINTMENTSCHEDULED_AB3", - "DEALS_B88_PROPERTY_HS_DATE_EXITED_9567449", - "DEALS_B88_PROPERTY_HS_DATE_EXITED_9567449_AB1", - "DEALS_B88_PROPERTY_HS_DATE_EXITED_9567449_AB2", - "DEALS_B88_PROPERTY_HS_DATE_EXITED_9567449_AB3", - "DEALS_B9D_PROPERTY_HS_DATE_EXITED_DECISIONMAKERBOUGHTIN", - "DEALS_B9D_PROPERTY_HS_DATE_EXITED_DECISIONMAKERBOUGHTIN_AB1", - "DEALS_B9D_PROPERTY_HS_DATE_EXITED_DECISIONMAKERBOUGHTIN_AB2", - "DEALS_B9D_PROPERTY_HS_DATE_EXITED_DECISIONMAKERBOUGHTIN_AB3", - "DEALS_BA8_PROPERTY_HS_OBJECT_ID", - "DEALS_BA8_PROPERTY_HS_OBJECT_ID_AB1", - "DEALS_BA8_PROPERTY_HS_OBJECT_ID_AB2", - "DEALS_BA8_PROPERTY_HS_OBJECT_ID_AB3", - "DEALS_BBD_PROPERTY_HS_DATE_ENTERED_9567448", - "DEALS_BBD_PROPERTY_HS_DATE_ENTERED_9567448_AB1", - "DEALS_BBD_PROPERTY_HS_DATE_ENTERED_9567448_AB2", - "DEALS_BBD_PROPERTY_HS_DATE_ENTERED_9567448_AB3", - "DEALS_BE6_PROPERTY_NUM_NOTES", - "DEALS_BE6_PROPERTY_NUM_NOTES_AB1", - "DEALS_BE6_PROPERTY_NUM_NOTES_AB2", - "DEALS_BE6_PROPERTY_NUM_NOTES_AB3", - "DEALS_C0D_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED", - "DEALS_C0D_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_AB1", - "DEALS_C0D_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_AB2", - "DEALS_C0D_PROPERTY_ENGAGEMENTS_LAST_MEETING_BOOKED_AB3", - "DEALS_C6B_PROPERTY_DEALSTAGE", - "DEALS_C6B_PROPERTY_DEALSTAGE_AB1", - "DEALS_C6B_PROPERTY_DEALSTAGE_AB2", - "DEALS_C6B_PROPERTY_DEALSTAGE_AB3", - "DEALS_C6D_PROPERTY_HS_TIME_IN_CUSTOMCLOSEDWONSTAGE", - "DEALS_C6D_PROPERTY_HS_TIME_IN_CUSTOMCLOSEDWONSTAGE_AB1", - "DEALS_C6D_PROPERTY_HS_TIME_IN_CUSTOMCLOSEDWONSTAGE_AB2", - "DEALS_C6D_PROPERTY_HS_TIME_IN_CUSTOMCLOSEDWONSTAGE_AB3", - "DEALS_CA0_PROPERTY_HS_ALL_ACCESSIBLE_TEAM_IDS", - "DEALS_CA0_PROPERTY_HS_ALL_ACCESSIBLE_TEAM_IDS_AB1", - "DEALS_CA0_PROPERTY_HS_ALL_ACCESSIBLE_TEAM_IDS_AB2", - "DEALS_CA0_PROPERTY_HS_ALL_ACCESSIBLE_TEAM_IDS_AB3", - "DEALS_D34_PROPERTY_HS_DATE_EXITED_CUSTOMCLOSEDWONSTAGE", - "DEALS_D34_PROPERTY_HS_DATE_EXITED_CUSTOMCLOSEDWONSTAGE_AB1", - "DEALS_D34_PROPERTY_HS_DATE_EXITED_CUSTOMCLOSEDWONSTAGE_AB2", - "DEALS_D34_PROPERTY_HS_DATE_EXITED_CUSTOMCLOSEDWONSTAGE_AB3", - "DEALS_D56_PROPERTY_HS_DATE_ENTERED_DECISIONMAKERBOUGHTIN", - "DEALS_D56_PROPERTY_HS_DATE_ENTERED_DECISIONMAKERBOUGHTIN_AB1", - "DEALS_D56_PROPERTY_HS_DATE_ENTERED_DECISIONMAKERBOUGHTIN_AB2", - "DEALS_D56_PROPERTY_HS_DATE_ENTERED_DECISIONMAKERBOUGHTIN_AB3", - "DEALS_D63_PROPERTY_HS_DATE_ENTERED_APPOINTMENTSCHEDULED", - "DEALS_D63_PROPERTY_HS_DATE_ENTERED_APPOINTMENTSCHEDULED_AB1", - "DEALS_D63_PROPERTY_HS_DATE_ENTERED_APPOINTMENTSCHEDULED_AB2", - "DEALS_D63_PROPERTY_HS_DATE_ENTERED_APPOINTMENTSCHEDULED_AB3", - "DEALS_D6C_PROPERTY_HS_ACV", - "DEALS_D6C_PROPERTY_HS_ACV_AB1", - "DEALS_D6C_PROPERTY_HS_ACV_AB2", - "DEALS_D6C_PROPERTY_HS_ACV_AB3", - "DEALS_D8B_PROPERTY_NOTES_LAST_CONTACTED", - "DEALS_D8B_PROPERTY_NOTES_LAST_CONTACTED_AB1", - "DEALS_D8B_PROPERTY_NOTES_LAST_CONTACTED_AB2", - "DEALS_D8B_PROPERTY_NOTES_LAST_CONTACTED_AB3", - "DEALS_DC7_PROPERTY_HS_DEAL_STAGE_PROBABILITY", - "DEALS_DC7_PROPERTY_HS_DEAL_STAGE_PROBABILITY_AB1", - "DEALS_DC7_PROPERTY_HS_DEAL_STAGE_PROBABILITY_AB2", - "DEALS_DC7_PROPERTY_HS_DEAL_STAGE_PROBABILITY_AB3", - "DEALS_E3C_PROPERTY_HS_DATE_ENTERED_PRESENTATIONSCHEDULED", - "DEALS_E3C_PROPERTY_HS_DATE_ENTERED_PRESENTATIONSCHEDULED_AB1", - "DEALS_E3C_PROPERTY_HS_DATE_ENTERED_PRESENTATIONSCHEDULED_AB2", - "DEALS_E3C_PROPERTY_HS_DATE_ENTERED_PRESENTATIONSCHEDULED_AB3", - "DEALS_E4A_PROPERTY_PIPELINE", - "DEALS_E4A_PROPERTY_PIPELINE_AB1", - "DEALS_E4A_PROPERTY_PIPELINE_AB2", - "DEALS_E4A_PROPERTY_PIPELINE_AB3", - "DEALS_E8C_PROPERTY_DEALNAME", - "DEALS_E8C_PROPERTY_DEALNAME_AB1", - "DEALS_E8C_PROPERTY_DEALNAME_AB2", - "DEALS_E8C_PROPERTY_DEALNAME_AB3", - "DEALS_E9E_PROPERTY_HUBSPOT_OWNER_ASSIGNEDDATE", - "DEALS_E9E_PROPERTY_HUBSPOT_OWNER_ASSIGNEDDATE_AB1", - "DEALS_E9E_PROPERTY_HUBSPOT_OWNER_ASSIGNEDDATE_AB2", - "DEALS_E9E_PROPERTY_HUBSPOT_OWNER_ASSIGNEDDATE_AB3", - "DEALS_EBB_PROPERTY_HS_ANALYTICS_SOURCE", - "DEALS_EBB_PROPERTY_HS_ANALYTICS_SOURCE_AB1", - "DEALS_EBB_PROPERTY_HS_ANALYTICS_SOURCE_AB2", - "DEALS_EBB_PROPERTY_HS_ANALYTICS_SOURCE_AB3", - "DEALS_F37_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_RECURRINGBILLINGFREQUENCY", - "DEALS_F37_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_RECURRINGBILLINGFREQUENCY_AB1", - "DEALS_F37_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_RECURRINGBILLINGFREQUENCY_AB2", - "DEALS_F37_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_RECURRINGBILLINGFREQUENCY_AB3", - "DEALS_F3D_PROPERTY_HS_FORECAST_AMOUNT", - "DEALS_F3D_PROPERTY_HS_FORECAST_AMOUNT_AB1", - "DEALS_F3D_PROPERTY_HS_FORECAST_AMOUNT_AB2", - "DEALS_F3D_PROPERTY_HS_FORECAST_AMOUNT_AB3", - "DEALS_FBD_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_PERIOD_ENABLED", - "DEALS_FBD_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_PERIOD_ENABLED_AB1", - "DEALS_FBD_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_PERIOD_ENABLED_AB2", - "DEALS_FBD_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_PERIOD_ENABLED_AB3", - "DEALS_FC5_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_RECURRINGBILLINGFREQUENCY_ENABLED", - "DEALS_FC5_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_RECURRINGBILLINGFREQUENCY_ENABLED_AB1", - "DEALS_FC5_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_RECURRINGBILLINGFREQUENCY_ENABLED_AB2", - "DEALS_FC5_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_RECURRINGBILLINGFREQUENCY_ENABLED_AB3", - "DEALS_FCC_PROPERTY_HUBSPOT_OWNER_ID", - "DEALS_FCC_PROPERTY_HUBSPOT_OWNER_ID_AB1", - "DEALS_FCC_PROPERTY_HUBSPOT_OWNER_ID_AB2", - "DEALS_FCC_PROPERTY_HUBSPOT_OWNER_ID_AB3", - "DEALS_FFC_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_DISCOUNT_PERCENTAGE_ENABLED", - "DEALS_FFC_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_DISCOUNT_PERCENTAGE_ENABLED_AB1", - "DEALS_FFC_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_DISCOUNT_PERCENTAGE_ENABLED_AB2", - "DEALS_FFC_PROPERTY_HS_LINE_ITEM_GLOBAL_TERM_HS_DISCOUNT_PERCENTAGE_ENABLED_AB3", - "DEALS_PROPERTIES_067_HS_LINE_ITEM_GLOBAL_TERM_RECURRINGBILLINGFREQUENCY", - "DEALS_PROPERTIES_067_HS_LINE_ITEM_GLOBAL_TERM_RECURRINGBILLINGFREQUENCY_AB1", - "DEALS_PROPERTIES_067_HS_LINE_ITEM_GLOBAL_TERM_RECURRINGBILLINGFREQUENCY_AB2", - "DEALS_PROPERTIES_067_HS_LINE_ITEM_GLOBAL_TERM_RECURRINGBILLINGFREQUENCY_AB3", - "DEALS_PROPERTIES_0D7_HS_TCV", - "DEALS_PROPERTIES_0D7_HS_TCV_AB1", - "DEALS_PROPERTIES_0D7_HS_TCV_AB2", - "DEALS_PROPERTIES_0D7_HS_TCV_AB3", - "DEALS_PROPERTIES_121_AMOUNT", - "DEALS_PROPERTIES_121_AMOUNT_AB1", - "DEALS_PROPERTIES_121_AMOUNT_AB2", - "DEALS_PROPERTIES_121_AMOUNT_AB3", - "DEALS_PROPERTIES_134_HS_DATE_ENTERED_PRESENTATIONSCHEDULED", - "DEALS_PROPERTIES_134_HS_DATE_ENTERED_PRESENTATIONSCHEDULED_AB1", - "DEALS_PROPERTIES_134_HS_DATE_ENTERED_PRESENTATIONSCHEDULED_AB2", - "DEALS_PROPERTIES_134_HS_DATE_ENTERED_PRESENTATIONSCHEDULED_AB3", - "DEALS_PROPERTIES_1C0_HS_DATE_ENTERED_CUSTOMCLOSEDWONSTAGE", - "DEALS_PROPERTIES_1C0_HS_DATE_ENTERED_CUSTOMCLOSEDWONSTAGE_AB1", - "DEALS_PROPERTIES_1C0_HS_DATE_ENTERED_CUSTOMCLOSEDWONSTAGE_AB2", - "DEALS_PROPERTIES_1C0_HS_DATE_ENTERED_CUSTOMCLOSEDWONSTAGE_AB3", - "DEALS_PROPERTIES_1C6_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_START_DATE_ENABLED", - "DEALS_PROPERTIES_1C6_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_START_DATE_ENABLED_AB1", - "DEALS_PROPERTIES_1C6_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_START_DATE_ENABLED_AB2", - "DEALS_PROPERTIES_1C6_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_START_DATE_ENABLED_AB3", - "DEALS_PROPERTIES_1E1_HS_DATE_ENTERED_QUALIFIEDTOBUY", - "DEALS_PROPERTIES_1E1_HS_DATE_ENTERED_QUALIFIEDTOBUY_AB1", - "DEALS_PROPERTIES_1E1_HS_DATE_ENTERED_QUALIFIEDTOBUY_AB2", - "DEALS_PROPERTIES_1E1_HS_DATE_ENTERED_QUALIFIEDTOBUY_AB3", - "DEALS_PROPERTIES_247_HS_DATE_EXITED_9567449", - "DEALS_PROPERTIES_247_HS_DATE_EXITED_9567449_AB1", - "DEALS_PROPERTIES_247_HS_DATE_EXITED_9567449_AB2", - "DEALS_PROPERTIES_247_HS_DATE_EXITED_9567449_AB3", - "DEALS_PROPERTIES_281_HS_DATE_ENTERED_APPOINTMENTSCHEDULED", - "DEALS_PROPERTIES_281_HS_DATE_ENTERED_APPOINTMENTSCHEDULED_AB1", - "DEALS_PROPERTIES_281_HS_DATE_ENTERED_APPOINTMENTSCHEDULED_AB2", - "DEALS_PROPERTIES_281_HS_DATE_ENTERED_APPOINTMENTSCHEDULED_AB3", - "DEALS_PROPERTIES_2B3_HS_TIME_IN_PRESENTATIONSCHEDULED", - "DEALS_PROPERTIES_2B3_HS_TIME_IN_PRESENTATIONSCHEDULED_AB1", - "DEALS_PROPERTIES_2B3_HS_TIME_IN_PRESENTATIONSCHEDULED_AB2", - "DEALS_PROPERTIES_2B3_HS_TIME_IN_PRESENTATIONSCHEDULED_AB3", - "DEALS_PROPERTIES_315_HS_LINE_ITEM_GLOBAL_TERM_HS_DISCOUNT_PERCENTAGE_ENABLED", - "DEALS_PROPERTIES_315_HS_LINE_ITEM_GLOBAL_TERM_HS_DISCOUNT_PERCENTAGE_ENABLED_AB1", - "DEALS_PROPERTIES_315_HS_LINE_ITEM_GLOBAL_TERM_HS_DISCOUNT_PERCENTAGE_ENABLED_AB2", - "DEALS_PROPERTIES_315_HS_LINE_ITEM_GLOBAL_TERM_HS_DISCOUNT_PERCENTAGE_ENABLED_AB3", - "DEALS_PROPERTIES_328_NUM_ASSOCIATED_CONTACTS", - "DEALS_PROPERTIES_328_NUM_ASSOCIATED_CONTACTS_AB1", - "DEALS_PROPERTIES_328_NUM_ASSOCIATED_CONTACTS_AB2", - "DEALS_PROPERTIES_328_NUM_ASSOCIATED_CONTACTS_AB3", - "DEALS_PROPERTIES_38B_HUBSPOT_OWNER_ASSIGNEDDATE", - "DEALS_PROPERTIES_38B_HUBSPOT_OWNER_ASSIGNEDDATE_AB1", - "DEALS_PROPERTIES_38B_HUBSPOT_OWNER_ASSIGNEDDATE_AB2", - "DEALS_PROPERTIES_38B_HUBSPOT_OWNER_ASSIGNEDDATE_AB3", - "DEALS_PROPERTIES_395_HS_ARR", - "DEALS_PROPERTIES_395_HS_ARR_AB1", - "DEALS_PROPERTIES_395_HS_ARR_AB2", - "DEALS_PROPERTIES_395_HS_ARR_AB3", - "DEALS_PROPERTIES_3B2_HS_TIME_IN_9567449", - "DEALS_PROPERTIES_3B2_HS_TIME_IN_9567449_AB1", - "DEALS_PROPERTIES_3B2_HS_TIME_IN_9567449_AB2", - "DEALS_PROPERTIES_3B2_HS_TIME_IN_9567449_AB3", - "DEALS_PROPERTIES_3C9_HS_NEXT_STEP", - "DEALS_PROPERTIES_3C9_HS_NEXT_STEP_AB1", - "DEALS_PROPERTIES_3C9_HS_NEXT_STEP_AB2", - "DEALS_PROPERTIES_3C9_HS_NEXT_STEP_AB3", - "DEALS_PROPERTIES_3E3_HS_DATE_EXITED_CLOSEDWON", - "DEALS_PROPERTIES_3E3_HS_DATE_EXITED_CLOSEDWON_AB1", - "DEALS_PROPERTIES_3E3_HS_DATE_EXITED_CLOSEDWON_AB2", - "DEALS_PROPERTIES_3E3_HS_DATE_EXITED_CLOSEDWON_AB3", - "DEALS_PROPERTIES_3EC_DAYS_TO_CLOSE", - "DEALS_PROPERTIES_3EC_DAYS_TO_CLOSE_AB1", - "DEALS_PROPERTIES_3EC_DAYS_TO_CLOSE_AB2", - "DEALS_PROPERTIES_3EC_DAYS_TO_CLOSE_AB3", - "DEALS_PROPERTIES_3F4_HS_DATE_ENTERED_CONTRACTSENT", - "DEALS_PROPERTIES_3F4_HS_DATE_ENTERED_CONTRACTSENT_AB1", - "DEALS_PROPERTIES_3F4_HS_DATE_ENTERED_CONTRACTSENT_AB2", - "DEALS_PROPERTIES_3F4_HS_DATE_ENTERED_CONTRACTSENT_AB3", - "DEALS_PROPERTIES_3FE_HS_DATE_EXITED_APPOINTMENTSCHEDULED", - "DEALS_PROPERTIES_3FE_HS_DATE_EXITED_APPOINTMENTSCHEDULED_AB1", - "DEALS_PROPERTIES_3FE_HS_DATE_EXITED_APPOINTMENTSCHEDULED_AB2", - "DEALS_PROPERTIES_3FE_HS_DATE_EXITED_APPOINTMENTSCHEDULED_AB3", - "DEALS_PROPERTIES_417_HS_ALL_ACCESSIBLE_TEAM_IDS", - "DEALS_PROPERTIES_417_HS_ALL_ACCESSIBLE_TEAM_IDS_AB1", - "DEALS_PROPERTIES_417_HS_ALL_ACCESSIBLE_TEAM_IDS_AB2", - "DEALS_PROPERTIES_417_HS_ALL_ACCESSIBLE_TEAM_IDS_AB3", - "DEALS_PROPERTIES_43E_DEALSTAGE", - "DEALS_PROPERTIES_43E_DEALSTAGE_AB1", - "DEALS_PROPERTIES_43E_DEALSTAGE_AB2", - "DEALS_PROPERTIES_43E_DEALSTAGE_AB3", - "DEALS_PROPERTIES_478_NOTES_LAST_UPDATED", - "DEALS_PROPERTIES_478_NOTES_LAST_UPDATED_AB1", - "DEALS_PROPERTIES_478_NOTES_LAST_UPDATED_AB2", - "DEALS_PROPERTIES_478_NOTES_LAST_UPDATED_AB3", - "DEALS_PROPERTIES_49B_HS_FORECAST_PROBABILITY", - "DEALS_PROPERTIES_49B_HS_FORECAST_PROBABILITY_AB1", - "DEALS_PROPERTIES_49B_HS_FORECAST_PROBABILITY_AB2", - "DEALS_PROPERTIES_49B_HS_FORECAST_PROBABILITY_AB3", - "DEALS_PROPERTIES_4C2_HS_TIME_IN_DECISIONMAKERBOUGHTIN", - "DEALS_PROPERTIES_4C2_HS_TIME_IN_DECISIONMAKERBOUGHTIN_AB1", - "DEALS_PROPERTIES_4C2_HS_TIME_IN_DECISIONMAKERBOUGHTIN_AB2", - "DEALS_PROPERTIES_4C2_HS_TIME_IN_DECISIONMAKERBOUGHTIN_AB3", - "DEALS_PROPERTIES_500_HS_DATE_ENTERED_CLOSEDLOST", - "DEALS_PROPERTIES_500_HS_DATE_ENTERED_CLOSEDLOST_AB1", - "DEALS_PROPERTIES_500_HS_DATE_ENTERED_CLOSEDLOST_AB2", - "DEALS_PROPERTIES_500_HS_DATE_ENTERED_CLOSEDLOST_AB3", - "DEALS_PROPERTIES_53C_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_PERIOD", - "DEALS_PROPERTIES_53C_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_PERIOD_AB1", - "DEALS_PROPERTIES_53C_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_PERIOD_AB2", - "DEALS_PROPERTIES_53C_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_PERIOD_AB3", - "DEALS_PROPERTIES_53E_HS_DEAL_AMOUNT_CALCULATION_PREFERENCE", - "DEALS_PROPERTIES_53E_HS_DEAL_AMOUNT_CALCULATION_PREFERENCE_AB1", - "DEALS_PROPERTIES_53E_HS_DEAL_AMOUNT_CALCULATION_PREFERENCE_AB2", - "DEALS_PROPERTIES_53E_HS_DEAL_AMOUNT_CALCULATION_PREFERENCE_AB3", - "DEALS_PROPERTIES_540_HS_MERGED_OBJECT_IDS", - "DEALS_PROPERTIES_540_HS_MERGED_OBJECT_IDS_AB1", - "DEALS_PROPERTIES_540_HS_MERGED_OBJECT_IDS_AB2", - "DEALS_PROPERTIES_540_HS_MERGED_OBJECT_IDS_AB3", - "DEALS_PROPERTIES_58A_NUM_NOTES", - "DEALS_PROPERTIES_58A_NUM_NOTES_AB1", - "DEALS_PROPERTIES_58A_NUM_NOTES_AB2", - "DEALS_PROPERTIES_58A_NUM_NOTES_AB3", - "DEALS_PROPERTIES_5AD_HS_LIKELIHOOD_TO_CLOSE", - "DEALS_PROPERTIES_5AD_HS_LIKELIHOOD_TO_CLOSE_AB1", - "DEALS_PROPERTIES_5AD_HS_LIKELIHOOD_TO_CLOSE_AB2", - "DEALS_PROPERTIES_5AD_HS_LIKELIHOOD_TO_CLOSE_AB3", - "DEALS_PROPERTIES_5C1_HS_ACV", - "DEALS_PROPERTIES_5C1_HS_ACV_AB1", - "DEALS_PROPERTIES_5C1_HS_ACV_AB2", - "DEALS_PROPERTIES_5C1_HS_ACV_AB3", - "DEALS_PROPERTIES_5E3_HUBSPOT_TEAM_ID", - "DEALS_PROPERTIES_5E3_HUBSPOT_TEAM_ID_AB1", - "DEALS_PROPERTIES_5E3_HUBSPOT_TEAM_ID_AB2", - "DEALS_PROPERTIES_5E3_HUBSPOT_TEAM_ID_AB3", - "DEALS_PROPERTIES_5FB_HS_ANALYTICS_SOURCE", - "DEALS_PROPERTIES_5FB_HS_ANALYTICS_SOURCE_AB1", - "DEALS_PROPERTIES_5FB_HS_ANALYTICS_SOURCE_AB2", - "DEALS_PROPERTIES_5FB_HS_ANALYTICS_SOURCE_AB3", - "DEALS_PROPERTIES_610_HS_PROJECTED_AMOUNT", - "DEALS_PROPERTIES_610_HS_PROJECTED_AMOUNT_AB1", - "DEALS_PROPERTIES_610_HS_PROJECTED_AMOUNT_AB2", - "DEALS_PROPERTIES_610_HS_PROJECTED_AMOUNT_AB3", - "DEALS_PROPERTIES_657_PIPELINE", - "DEALS_PROPERTIES_657_PIPELINE_AB1", - "DEALS_PROPERTIES_657_PIPELINE_AB2", - "DEALS_PROPERTIES_657_PIPELINE_AB3", - "DEALS_PROPERTIES_66C_HS_TIME_IN_CLOSEDWON", - "DEALS_PROPERTIES_66C_HS_TIME_IN_CLOSEDWON_AB1", - "DEALS_PROPERTIES_66C_HS_TIME_IN_CLOSEDWON_AB2", - "DEALS_PROPERTIES_66C_HS_TIME_IN_CLOSEDWON_AB3", - "DEALS_PROPERTIES_6D2_HS_MRR", - "DEALS_PROPERTIES_6D2_HS_MRR_AB1", - "DEALS_PROPERTIES_6D2_HS_MRR_AB2", - "DEALS_PROPERTIES_6D2_HS_MRR_AB3", - "DEALS_PROPERTIES_6E6_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM", - "DEALS_PROPERTIES_6E6_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB1", - "DEALS_PROPERTIES_6E6_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB2", - "DEALS_PROPERTIES_6E6_ENGAGEMENTS_LAST_MEETING_BOOKED_MEDIUM_AB3", - "DEALS_PROPERTIES_711_DEALNAME", - "DEALS_PROPERTIES_711_DEALNAME_AB1", - "DEALS_PROPERTIES_711_DEALNAME_AB2", - "DEALS_PROPERTIES_711_DEALNAME_AB3", - "DEALS_PROPERTIES_715_ENGAGEMENTS_LAST_MEETING_BOOKED", - "DEALS_PROPERTIES_715_ENGAGEMENTS_LAST_MEETING_BOOKED_AB1", - "DEALS_PROPERTIES_715_ENGAGEMENTS_LAST_MEETING_BOOKED_AB2", - "DEALS_PROPERTIES_715_ENGAGEMENTS_LAST_MEETING_BOOKED_AB3", - "DEALS_PROPERTIES_764_HS_IS_CLOSED", - "DEALS_PROPERTIES_764_HS_IS_CLOSED_AB1", - "DEALS_PROPERTIES_764_HS_IS_CLOSED_AB2", - "DEALS_PROPERTIES_764_HS_IS_CLOSED_AB3", - "DEALS_PROPERTIES_78E_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE", - "DEALS_PROPERTIES_78E_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB1", - "DEALS_PROPERTIES_78E_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB2", - "DEALS_PROPERTIES_78E_ENGAGEMENTS_LAST_MEETING_BOOKED_SOURCE_AB3", - "DEALS_PROPERTIES_7DF_HS_DATE_EXITED_DECISIONMAKERBOUGHTIN", - "DEALS_PROPERTIES_7DF_HS_DATE_EXITED_DECISIONMAKERBOUGHTIN_AB1", - "DEALS_PROPERTIES_7DF_HS_DATE_EXITED_DECISIONMAKERBOUGHTIN_AB2", - "DEALS_PROPERTIES_7DF_HS_DATE_EXITED_DECISIONMAKERBOUGHTIN_AB3", - "DEALS_PROPERTIES_7E0_HS_ANALYTICS_SOURCE_DATA_2", - "DEALS_PROPERTIES_7E0_HS_ANALYTICS_SOURCE_DATA_2_AB1", - "DEALS_PROPERTIES_7E0_HS_ANALYTICS_SOURCE_DATA_2_AB2", - "DEALS_PROPERTIES_7E0_HS_ANALYTICS_SOURCE_DATA_2_AB3", - "DEALS_PROPERTIES_851_HS_DATE_ENTERED_9567448", - "DEALS_PROPERTIES_851_HS_DATE_ENTERED_9567448_AB1", - "DEALS_PROPERTIES_851_HS_DATE_ENTERED_9567448_AB2", - "DEALS_PROPERTIES_851_HS_DATE_ENTERED_9567448_AB3", - "DEALS_PROPERTIES_879_HS_DATE_EXITED_CONTRACTSENT", - "DEALS_PROPERTIES_879_HS_DATE_EXITED_CONTRACTSENT_AB1", - "DEALS_PROPERTIES_879_HS_DATE_EXITED_CONTRACTSENT_AB2", - "DEALS_PROPERTIES_879_HS_DATE_EXITED_CONTRACTSENT_AB3", - "DEALS_PROPERTIES_8B2_HS_TIME_IN_QUALIFIEDTOBUY", - "DEALS_PROPERTIES_8B2_HS_TIME_IN_QUALIFIEDTOBUY_AB1", - "DEALS_PROPERTIES_8B2_HS_TIME_IN_QUALIFIEDTOBUY_AB2", - "DEALS_PROPERTIES_8B2_HS_TIME_IN_QUALIFIEDTOBUY_AB3", - "DEALS_PROPERTIES_8CD_HS_USER_IDS_OF_ALL_OWNERS", - "DEALS_PROPERTIES_8CD_HS_USER_IDS_OF_ALL_OWNERS_AB1", - "DEALS_PROPERTIES_8CD_HS_USER_IDS_OF_ALL_OWNERS_AB2", - "DEALS_PROPERTIES_8CD_HS_USER_IDS_OF_ALL_OWNERS_AB3", - "DEALS_PROPERTIES_8DA_NUM_CONTACTED_NOTES", - "DEALS_PROPERTIES_8DA_NUM_CONTACTED_NOTES_AB1", - "DEALS_PROPERTIES_8DA_NUM_CONTACTED_NOTES_AB2", - "DEALS_PROPERTIES_8DA_NUM_CONTACTED_NOTES_AB3", - "DEALS_PROPERTIES_910_CLOSED_LOST_REASON", - "DEALS_PROPERTIES_910_CLOSED_LOST_REASON_AB1", - "DEALS_PROPERTIES_910_CLOSED_LOST_REASON_AB2", - "DEALS_PROPERTIES_910_CLOSED_LOST_REASON_AB3", - "DEALS_PROPERTIES_918_HS_MANUAL_FORECAST_CATEGORY", - "DEALS_PROPERTIES_918_HS_MANUAL_FORECAST_CATEGORY_AB1", - "DEALS_PROPERTIES_918_HS_MANUAL_FORECAST_CATEGORY_AB2", - "DEALS_PROPERTIES_918_HS_MANUAL_FORECAST_CATEGORY_AB3", - "DEALS_PROPERTIES_923_HS_SALES_EMAIL_LAST_REPLIED", - "DEALS_PROPERTIES_923_HS_SALES_EMAIL_LAST_REPLIED_AB1", - "DEALS_PROPERTIES_923_HS_SALES_EMAIL_LAST_REPLIED_AB2", - "DEALS_PROPERTIES_923_HS_SALES_EMAIL_LAST_REPLIED_AB3", - "DEALS_PROPERTIES_93A_NOTES_LAST_CONTACTED", - "DEALS_PROPERTIES_93A_NOTES_LAST_CONTACTED_AB1", - "DEALS_PROPERTIES_93A_NOTES_LAST_CONTACTED_AB2", - "DEALS_PROPERTIES_93A_NOTES_LAST_CONTACTED_AB3", - "DEALS_PROPERTIES_976_HS_DATE_ENTERED_9567449", - "DEALS_PROPERTIES_976_HS_DATE_ENTERED_9567449_AB1", - "DEALS_PROPERTIES_976_HS_DATE_ENTERED_9567449_AB2", - "DEALS_PROPERTIES_976_HS_DATE_ENTERED_9567449_AB3", - "DEALS_PROPERTIES_983_CREATEDATE", - "DEALS_PROPERTIES_983_CREATEDATE_AB1", - "DEALS_PROPERTIES_983_CREATEDATE_AB2", - "DEALS_PROPERTIES_983_CREATEDATE_AB3", - "DEALS_PROPERTIES_987_NOTES_NEXT_ACTIVITY_DATE", - "DEALS_PROPERTIES_987_NOTES_NEXT_ACTIVITY_DATE_AB1", - "DEALS_PROPERTIES_987_NOTES_NEXT_ACTIVITY_DATE_AB2", - "DEALS_PROPERTIES_987_NOTES_NEXT_ACTIVITY_DATE_AB3", - "DEALS_PROPERTIES_9CA_HS_LASTMODIFIEDDATE", - "DEALS_PROPERTIES_9CA_HS_LASTMODIFIEDDATE_AB1", - "DEALS_PROPERTIES_9CA_HS_LASTMODIFIEDDATE_AB2", - "DEALS_PROPERTIES_9CA_HS_LASTMODIFIEDDATE_AB3", - "DEALS_PROPERTIES_9D2_HS_TIME_IN_CUSTOMCLOSEDWONSTAGE", - "DEALS_PROPERTIES_9D2_HS_TIME_IN_CUSTOMCLOSEDWONSTAGE_AB1", - "DEALS_PROPERTIES_9D2_HS_TIME_IN_CUSTOMCLOSEDWONSTAGE_AB2", - "DEALS_PROPERTIES_9D2_HS_TIME_IN_CUSTOMCLOSEDWONSTAGE_AB3", - "DEALS_PROPERTIES_9D5_HS_LATEST_MEETING_ACTIVITY", - "DEALS_PROPERTIES_9D5_HS_LATEST_MEETING_ACTIVITY_AB1", - "DEALS_PROPERTIES_9D5_HS_LATEST_MEETING_ACTIVITY_AB2", - "DEALS_PROPERTIES_9D5_HS_LATEST_MEETING_ACTIVITY_AB3", - "DEALS_PROPERTIES_9FD_HS_DATE_EXITED_PRESENTATIONSCHEDULED", - "DEALS_PROPERTIES_9FD_HS_DATE_EXITED_PRESENTATIONSCHEDULED_AB1", - "DEALS_PROPERTIES_9FD_HS_DATE_EXITED_PRESENTATIONSCHEDULED_AB2", - "DEALS_PROPERTIES_9FD_HS_DATE_EXITED_PRESENTATIONSCHEDULED_AB3", - "DEALS_PROPERTIES_A14_HS_ANALYTICS_SOURCE_DATA_1", - "DEALS_PROPERTIES_A14_HS_ANALYTICS_SOURCE_DATA_1_AB1", - "DEALS_PROPERTIES_A14_HS_ANALYTICS_SOURCE_DATA_1_AB2", - "DEALS_PROPERTIES_A14_HS_ANALYTICS_SOURCE_DATA_1_AB3", - "DEALS_PROPERTIES_A89_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_PERIOD_ENABLED", - "DEALS_PROPERTIES_A89_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_PERIOD_ENABLED_AB1", - "DEALS_PROPERTIES_A89_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_PERIOD_ENABLED_AB2", - "DEALS_PROPERTIES_A89_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_PERIOD_ENABLED_AB3", - "DEALS_PROPERTIES_AB1_HS_LINE_ITEM_GLOBAL_TERM_HS_DISCOUNT_PERCENTAGE", - "DEALS_PROPERTIES_AB1_HS_LINE_ITEM_GLOBAL_TERM_HS_DISCOUNT_PERCENTAGE_AB1", - "DEALS_PROPERTIES_AB1_HS_LINE_ITEM_GLOBAL_TERM_HS_DISCOUNT_PERCENTAGE_AB2", - "DEALS_PROPERTIES_AB1_HS_LINE_ITEM_GLOBAL_TERM_HS_DISCOUNT_PERCENTAGE_AB3", - "DEALS_PROPERTIES_AD9_HS_DATE_EXITED_9567448", - "DEALS_PROPERTIES_AD9_HS_DATE_EXITED_9567448_AB1", - "DEALS_PROPERTIES_AD9_HS_DATE_EXITED_9567448_AB2", - "DEALS_PROPERTIES_AD9_HS_DATE_EXITED_9567448_AB3", - "DEALS_PROPERTIES_B0B_HUBSPOT_OWNER_ID", - "DEALS_PROPERTIES_B0B_HUBSPOT_OWNER_ID_AB1", - "DEALS_PROPERTIES_B0B_HUBSPOT_OWNER_ID_AB2", - "DEALS_PROPERTIES_B0B_HUBSPOT_OWNER_ID_AB3", - "DEALS_PROPERTIES_B2F_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN", - "DEALS_PROPERTIES_B2F_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB1", - "DEALS_PROPERTIES_B2F_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB2", - "DEALS_PROPERTIES_B2F_ENGAGEMENTS_LAST_MEETING_BOOKED_CAMPAIGN_AB3", - "DEALS_PROPERTIES_B7D_HS_ALL_OWNER_IDS", - "DEALS_PROPERTIES_B7D_HS_ALL_OWNER_IDS_AB1", - "DEALS_PROPERTIES_B7D_HS_ALL_OWNER_IDS_AB2", - "DEALS_PROPERTIES_B7D_HS_ALL_OWNER_IDS_AB3", - "DEALS_PROPERTIES_B8C_HS_TIME_IN_CLOSEDLOST", - "DEALS_PROPERTIES_B8C_HS_TIME_IN_CLOSEDLOST_AB1", - "DEALS_PROPERTIES_B8C_HS_TIME_IN_CLOSEDLOST_AB2", - "DEALS_PROPERTIES_B8C_HS_TIME_IN_CLOSEDLOST_AB3", - "DEALS_PROPERTIES_BA5_AMOUNT_IN_HOME_CURRENCY", - "DEALS_PROPERTIES_BA5_AMOUNT_IN_HOME_CURRENCY_AB1", - "DEALS_PROPERTIES_BA5_AMOUNT_IN_HOME_CURRENCY_AB2", - "DEALS_PROPERTIES_BA5_AMOUNT_IN_HOME_CURRENCY_AB3", - "DEALS_PROPERTIES_BB8_HS_PREDICTED_AMOUNT_IN_HOME_CURRENCY", - "DEALS_PROPERTIES_BB8_HS_PREDICTED_AMOUNT_IN_HOME_CURRENCY_AB1", - "DEALS_PROPERTIES_BB8_HS_PREDICTED_AMOUNT_IN_HOME_CURRENCY_AB2", - "DEALS_PROPERTIES_BB8_HS_PREDICTED_AMOUNT_IN_HOME_CURRENCY_AB3", - "DEALS_PROPERTIES_C00_HS_PREDICTED_AMOUNT", - "DEALS_PROPERTIES_C00_HS_PREDICTED_AMOUNT_AB1", - "DEALS_PROPERTIES_C00_HS_PREDICTED_AMOUNT_AB2", - "DEALS_PROPERTIES_C00_HS_PREDICTED_AMOUNT_AB3", - "DEALS_PROPERTIES_C0C_DESCRIPTION", - "DEALS_PROPERTIES_C0C_DESCRIPTION_AB1", - "DEALS_PROPERTIES_C0C_DESCRIPTION_AB2", - "DEALS_PROPERTIES_C0C_DESCRIPTION_AB3", - "DEALS_PROPERTIES_C18_HS_CREATED_BY_USER_ID", - "DEALS_PROPERTIES_C18_HS_CREATED_BY_USER_ID_AB1", - "DEALS_PROPERTIES_C18_HS_CREATED_BY_USER_ID_AB2", - "DEALS_PROPERTIES_C18_HS_CREATED_BY_USER_ID_AB3", - "DEALS_PROPERTIES_C8E_CLOSED_WON_REASON", - "DEALS_PROPERTIES_C8E_CLOSED_WON_REASON_AB1", - "DEALS_PROPERTIES_C8E_CLOSED_WON_REASON_AB2", - "DEALS_PROPERTIES_C8E_CLOSED_WON_REASON_AB3", - "DEALS_PROPERTIES_CA9_HS_UPDATED_BY_USER_ID", - "DEALS_PROPERTIES_CA9_HS_UPDATED_BY_USER_ID_AB1", - "DEALS_PROPERTIES_CA9_HS_UPDATED_BY_USER_ID_AB2", - "DEALS_PROPERTIES_CA9_HS_UPDATED_BY_USER_ID_AB3", - "DEALS_PROPERTIES_CC2_HS_TIME_IN_CONTRACTSENT", - "DEALS_PROPERTIES_CC2_HS_TIME_IN_CONTRACTSENT_AB1", - "DEALS_PROPERTIES_CC2_HS_TIME_IN_CONTRACTSENT_AB2", - "DEALS_PROPERTIES_CC2_HS_TIME_IN_CONTRACTSENT_AB3", - "DEALS_PROPERTIES_CC3_HS_DATE_EXITED_CLOSEDLOST", - "DEALS_PROPERTIES_CC3_HS_DATE_EXITED_CLOSEDLOST_AB1", - "DEALS_PROPERTIES_CC3_HS_DATE_EXITED_CLOSEDLOST_AB2", - "DEALS_PROPERTIES_CC3_HS_DATE_EXITED_CLOSEDLOST_AB3", - "DEALS_PROPERTIES_CDB_HS_TIME_IN_9567448", - "DEALS_PROPERTIES_CDB_HS_TIME_IN_9567448_AB1", - "DEALS_PROPERTIES_CDB_HS_TIME_IN_9567448_AB2", - "DEALS_PROPERTIES_CDB_HS_TIME_IN_9567448_AB3", - "DEALS_PROPERTIES_CE2_HS_ALL_TEAM_IDS", - "DEALS_PROPERTIES_CE2_HS_ALL_TEAM_IDS_AB1", - "DEALS_PROPERTIES_CE2_HS_ALL_TEAM_IDS_AB2", - "DEALS_PROPERTIES_CE2_HS_ALL_TEAM_IDS_AB3", - "DEALS_PROPERTIES_CF9_HS_TIME_IN_APPOINTMENTSCHEDULED", - "DEALS_PROPERTIES_CF9_HS_TIME_IN_APPOINTMENTSCHEDULED_AB1", - "DEALS_PROPERTIES_CF9_HS_TIME_IN_APPOINTMENTSCHEDULED_AB2", - "DEALS_PROPERTIES_CF9_HS_TIME_IN_APPOINTMENTSCHEDULED_AB3", - "DEALS_PROPERTIES_D85_HS_DATE_EXITED_QUALIFIEDTOBUY", - "DEALS_PROPERTIES_D85_HS_DATE_EXITED_QUALIFIEDTOBUY_AB1", - "DEALS_PROPERTIES_D85_HS_DATE_EXITED_QUALIFIEDTOBUY_AB2", - "DEALS_PROPERTIES_D85_HS_DATE_EXITED_QUALIFIEDTOBUY_AB3", - "DEALS_PROPERTIES_DB7_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_START_DATE", - "DEALS_PROPERTIES_DB7_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_START_DATE_AB1", - "DEALS_PROPERTIES_DB7_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_START_DATE_AB2", - "DEALS_PROPERTIES_DB7_HS_LINE_ITEM_GLOBAL_TERM_HS_RECURRING_BILLING_START_DATE_AB3", - "DEALS_PROPERTIES_DB9_HS_DEAL_STAGE_PROBABILITY", - "DEALS_PROPERTIES_DB9_HS_DEAL_STAGE_PROBABILITY_AB1", - "DEALS_PROPERTIES_DB9_HS_DEAL_STAGE_PROBABILITY_AB2", - "DEALS_PROPERTIES_DB9_HS_DEAL_STAGE_PROBABILITY_AB3", - "DEALS_PROPERTIES_DE9_HS_DATE_ENTERED_CLOSEDWON", - "DEALS_PROPERTIES_DE9_HS_DATE_ENTERED_CLOSEDWON_AB1", - "DEALS_PROPERTIES_DE9_HS_DATE_ENTERED_CLOSEDWON_AB2", - "DEALS_PROPERTIES_DE9_HS_DATE_ENTERED_CLOSEDWON_AB3", - "DEALS_PROPERTIES_DF7_HS_FORECAST_AMOUNT", - "DEALS_PROPERTIES_DF7_HS_FORECAST_AMOUNT_AB1", - "DEALS_PROPERTIES_DF7_HS_FORECAST_AMOUNT_AB2", - "DEALS_PROPERTIES_DF7_HS_FORECAST_AMOUNT_AB3", - "DEALS_PROPERTIES_E4A_HS_LINE_ITEM_GLOBAL_TERM_RECURRINGBILLINGFREQUENCY_ENABLED", - "DEALS_PROPERTIES_E4A_HS_LINE_ITEM_GLOBAL_TERM_RECURRINGBILLINGFREQUENCY_ENABLED_AB1", - "DEALS_PROPERTIES_E4A_HS_LINE_ITEM_GLOBAL_TERM_RECURRINGBILLINGFREQUENCY_ENABLED_AB2", - "DEALS_PROPERTIES_E4A_HS_LINE_ITEM_GLOBAL_TERM_RECURRINGBILLINGFREQUENCY_ENABLED_AB3", - "DEALS_PROPERTIES_E6E_CLOSEDATE", - "DEALS_PROPERTIES_E6E_CLOSEDATE_AB1", - "DEALS_PROPERTIES_E6E_CLOSEDATE_AB2", - "DEALS_PROPERTIES_E6E_CLOSEDATE_AB3", - "DEALS_PROPERTIES_E99_HS_OBJECT_ID", - "DEALS_PROPERTIES_E99_HS_OBJECT_ID_AB1", - "DEALS_PROPERTIES_E99_HS_OBJECT_ID_AB2", - "DEALS_PROPERTIES_E99_HS_OBJECT_ID_AB3", - "DEALS_PROPERTIES_EDD_HS_DATE_EXITED_CUSTOMCLOSEDWONSTAGE", - "DEALS_PROPERTIES_EDD_HS_DATE_EXITED_CUSTOMCLOSEDWONSTAGE_AB1", - "DEALS_PROPERTIES_EDD_HS_DATE_EXITED_CUSTOMCLOSEDWONSTAGE_AB2", - "DEALS_PROPERTIES_EDD_HS_DATE_EXITED_CUSTOMCLOSEDWONSTAGE_AB3", - "DEALS_PROPERTIES_F0B_HS_DATE_ENTERED_DECISIONMAKERBOUGHTIN", - "DEALS_PROPERTIES_F0B_HS_DATE_ENTERED_DECISIONMAKERBOUGHTIN_AB1", - "DEALS_PROPERTIES_F0B_HS_DATE_ENTERED_DECISIONMAKERBOUGHTIN_AB2", - "DEALS_PROPERTIES_F0B_HS_DATE_ENTERED_DECISIONMAKERBOUGHTIN_AB3", - "DEALS_PROPERTIES_F0D_HS_CLOSED_AMOUNT_IN_HOME_CURRENCY", - "DEALS_PROPERTIES_F0D_HS_CLOSED_AMOUNT_IN_HOME_CURRENCY_AB1", - "DEALS_PROPERTIES_F0D_HS_CLOSED_AMOUNT_IN_HOME_CURRENCY_AB2", - "DEALS_PROPERTIES_F0D_HS_CLOSED_AMOUNT_IN_HOME_CURRENCY_AB3", - "DEALS_PROPERTIES_F29_HS_CLOSED_AMOUNT", - "DEALS_PROPERTIES_F29_HS_CLOSED_AMOUNT_AB1", - "DEALS_PROPERTIES_F29_HS_CLOSED_AMOUNT_AB2", - "DEALS_PROPERTIES_F29_HS_CLOSED_AMOUNT_AB3", - "DEALS_PROPERTIES_F57_HS_PROJECTED_AMOUNT_IN_HOME_CURRENCY", - "DEALS_PROPERTIES_F57_HS_PROJECTED_AMOUNT_IN_HOME_CURRENCY_AB1", - "DEALS_PROPERTIES_F57_HS_PROJECTED_AMOUNT_IN_HOME_CURRENCY_AB2", - "DEALS_PROPERTIES_F57_HS_PROJECTED_AMOUNT_IN_HOME_CURRENCY_AB3", - "DEALS_PROPERTIES_F61_HS_CREATEDATE", - "DEALS_PROPERTIES_F61_HS_CREATEDATE_AB1", - "DEALS_PROPERTIES_F61_HS_CREATEDATE_AB2", - "DEALS_PROPERTIES_F61_HS_CREATEDATE_AB3", - "DEALS_PROPERTIES_FB8_DEALTYPE", - "DEALS_PROPERTIES_FB8_DEALTYPE_AB1", - "DEALS_PROPERTIES_FB8_DEALTYPE_AB2", - "DEALS_PROPERTIES_FB8_DEALTYPE_AB3", - "DEAL_PIPELINES_142_STAGES", - "DEAL_PIPELINES_142_STAGES_AB1", - "DEAL_PIPELINES_142_STAGES_AB2", - "DEAL_PIPELINES_142_STAGES_AB3", - "EMAIL_EVENTS_04B_LOCATION", - "EMAIL_EVENTS_04B_LOCATION_AB1", - "EMAIL_EVENTS_04B_LOCATION_AB2", - "EMAIL_EVENTS_04B_LOCATION_AB3", - "EMAIL_EVENTS_4BD_BROWSER", - "EMAIL_EVENTS_4BD_BROWSER_AB1", - "EMAIL_EVENTS_4BD_BROWSER_AB2", - "EMAIL_EVENTS_4BD_BROWSER_AB3", - "EMAIL_EVENTS_DF5_SENTBY", - "EMAIL_EVENTS_DF5_SENTBY_AB1", - "EMAIL_EVENTS_DF5_SENTBY_AB2", - "EMAIL_EVENTS_DF5_SENTBY_AB3", - "ENGAGEMENTS_1C3_ASSOCIATIONS", - "ENGAGEMENTS_1C3_ASSOCIATIONS_AB1", - "ENGAGEMENTS_1C3_ASSOCIATIONS_AB2", - "ENGAGEMENTS_1C3_ASSOCIATIONS_AB3", - "ENGAGEMENTS_3C8_ATTACHMENTS", - "ENGAGEMENTS_3C8_ATTACHMENTS_AB1", - "ENGAGEMENTS_3C8_ATTACHMENTS_AB2", - "ENGAGEMENTS_3C8_ATTACHMENTS_AB3", - "ENGAGEMENTS_4EF_METADATA", - "ENGAGEMENTS_4EF_METADATA_AB1", - "ENGAGEMENTS_4EF_METADATA_AB2", - "ENGAGEMENTS_4EF_METADATA_AB3", - "ENGAGEMENTS_760_ENGAGEMENT", - "ENGAGEMENTS_760_ENGAGEMENT_AB1", - "ENGAGEMENTS_760_ENGAGEMENT_AB2", - "ENGAGEMENTS_760_ENGAGEMENT_AB3", - "ENGAGEMENTS_METADATA_075_TO", - "ENGAGEMENTS_METADATA_075_TO_AB1", - "ENGAGEMENTS_METADATA_075_TO_AB2", - "ENGAGEMENTS_METADATA_075_TO_AB3", - "ENGAGEMENTS_METADATA_444_FROM", - "ENGAGEMENTS_METADATA_444_FROM_AB1", - "ENGAGEMENTS_METADATA_444_FROM_AB2", - "ENGAGEMENTS_METADATA_444_FROM_AB3", - "ENGAGEMENTS_METADATA_9A2_CC", - "ENGAGEMENTS_METADATA_9A2_CC_AB1", - "ENGAGEMENTS_METADATA_9A2_CC_AB2", - "ENGAGEMENTS_METADATA_9A2_CC_AB3", - "ENGAGEMENTS_METADATA_A27_BCC", - "ENGAGEMENTS_METADATA_A27_BCC_AB1", - "ENGAGEMENTS_METADATA_A27_BCC_AB2", - "ENGAGEMENTS_METADATA_A27_BCC_AB3", - "FORMS_AAD_METADATA", - "FORMS_AAD_METADATA_AB1", - "FORMS_AAD_METADATA_AB2", - "FORMS_AAD_METADATA_AB3", - "FORMS_BEB_FORMFIELDGROUPS", - "FORMS_BEB_FORMFIELDGROUPS_AB1", - "FORMS_BEB_FORMFIELDGROUPS_AB2", - "FORMS_BEB_FORMFIELDGROUPS_AB3", - "FORMS_FORMFIELDGROUPS_58F_FIELDS", - "FORMS_FORMFIELDGROUPS_58F_FIELDS_AB1", - "FORMS_FORMFIELDGROUPS_58F_FIELDS_AB2", - "FORMS_FORMFIELDGROUPS_58F_FIELDS_AB3", - "FORMS_FORMFIELDGROUPS_77E_RICHTEXT", - "FORMS_FORMFIELDGROUPS_77E_RICHTEXT_AB1", - "FORMS_FORMFIELDGROUPS_77E_RICHTEXT_AB2", - "FORMS_FORMFIELDGROUPS_77E_RICHTEXT_AB3", - "FORMS_FORMFIELDGROUPS_FIELDS_273_VALIDATION", - "FORMS_FORMFIELDGROUPS_FIELDS_273_VALIDATION_AB1", - "FORMS_FORMFIELDGROUPS_FIELDS_273_VALIDATION_AB2", - "FORMS_FORMFIELDGROUPS_FIELDS_273_VALIDATION_AB3", - "FORMS_FORMFIELDGROUPS_FIELDS_642_OPTIONS", - "FORMS_FORMFIELDGROUPS_FIELDS_642_OPTIONS_AB1", - "FORMS_FORMFIELDGROUPS_FIELDS_642_OPTIONS_AB2", - "FORMS_FORMFIELDGROUPS_FIELDS_642_OPTIONS_AB3", - "OWNERS_1D3_REMOTELIST", - "OWNERS_1D3_REMOTELIST_AB1", - "OWNERS_1D3_REMOTELIST_AB2", - "OWNERS_1D3_REMOTELIST_AB3", - "SUBSCRIPTION_CHANGES_88E_CHANGES", - "SUBSCRIPTION_CHANGES_88E_CHANGES_AB1", - "SUBSCRIPTION_CHANGES_88E_CHANGES_AB2", - "SUBSCRIPTION_CHANGES_88E_CHANGES_AB3", - "SUBSCRIPTION_CHANGES_CHANGES_047_CAUSEDBYEVENT", - "SUBSCRIPTION_CHANGES_CHANGES_047_CAUSEDBYEVENT_AB1", - "SUBSCRIPTION_CHANGES_CHANGES_047_CAUSEDBYEVENT_AB2", - "SUBSCRIPTION_CHANGES_CHANGES_047_CAUSEDBYEVENT_AB3", - "WORKFLOWS_D02_CONTACTLISTIDS", - "WORKFLOWS_D02_CONTACTLISTIDS_AB1", - "WORKFLOWS_D02_CONTACTLISTIDS_AB2", - "WORKFLOWS_D02_CONTACTLISTIDS_AB3" - ] -} diff --git a/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog_expected_top_level.json b/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog_expected_top_level.json deleted file mode 100644 index ac79febe451c25..00000000000000 --- a/airbyte-integrations/bases/base-normalization/unit_tests/resources/hubspot_catalog_expected_top_level.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "tables": [ - "campaigns", - "campaigns_ab1", - "campaigns_ab2", - "campaigns_ab3", - "companies", - "companies_ab1", - "companies_ab2", - "companies_ab3", - "contact_lists", - "contact_lists_ab1", - "contact_lists_ab2", - "contact_lists_ab3", - "contacts", - "contacts_ab1", - "contacts_ab2", - "contacts_ab3", - "contacts_by_company", - "contacts_by_company_ab1", - "contacts_by_company_ab2", - "contacts_by_company_ab3", - "deal_pipelines", - "deal_pipelines_ab1", - "deal_pipelines_ab2", - "deal_pipelines_ab3", - "deals", - "deals_ab1", - "deals_ab2", - "deals_ab3", - "email_events", - "email_events_ab1", - "email_events_ab2", - "email_events_ab3", - "engagements", - "engagements_ab1", - "engagements_ab2", - "engagements_ab3", - "forms", - "forms_ab1", - "forms_ab2", - "forms_ab3", - "owners", - "owners_ab1", - "owners_ab2", - "owners_ab3", - "subscription_changes", - "subscription_changes_ab1", - "subscription_changes_ab2", - "subscription_changes_ab3", - "workflows", - "workflows_ab1", - "workflows_ab2", - "workflows_ab3" - ] -} diff --git a/airbyte-integrations/bases/base-normalization/unit_tests/test_destination_name_transformer.py b/airbyte-integrations/bases/base-normalization/unit_tests/test_destination_name_transformer.py index 40a7efa0593a82..68868e7e15c736 100644 --- a/airbyte-integrations/bases/base-normalization/unit_tests/test_destination_name_transformer.py +++ b/airbyte-integrations/bases/base-normalization/unit_tests/test_destination_name_transformer.py @@ -21,6 +21,8 @@ # SOFTWARE. +import os + import pytest from normalization.destination_type import DestinationType from normalization.transform_catalog.destination_name_transformer import ( @@ -30,6 +32,18 @@ ) +@pytest.fixture(scope="function", autouse=True) +def before_tests(request): + # This makes the test run whether it is executed from the tests folder (with pytest/gradle) or from the base-normalization folder (through pycharm) + unit_tests_dir = os.path.join(request.fspath.dirname, "unit_tests") + if os.path.exists(unit_tests_dir): + os.chdir(unit_tests_dir) + else: + os.chdir(request.fspath.dirname) + yield + os.chdir(request.config.invocation_dir) + + @pytest.mark.parametrize( "input_str, destination_type, expected", [ @@ -176,6 +190,17 @@ def test_normalize_column_name(input_str: str, destination_type: str, expected: ], ) def test_truncate_identifier(input_str: str, expected: str): + """ + Rules about truncations, for example for both of these strings which are too long for the postgres 64 limit: + - `Aaaa_Bbbb_Cccc_Dddd_Eeee_Ffff_Gggg_Hhhh_Iiii` + - `Aaaa_Bbbb_Cccc_Dddd_a_very_long_name_Ffff_Gggg_Hhhh_Iiii` + + Deciding on how to truncate (in the middle) are being verified in these tests. + In this instance, both strings ends up as:`Aaaa_Bbbb_Cccc_Dddd___e_Ffff_Gggg_Hhhh_Iiii` + and can potentially cause a collision in table names. + + Note that dealing with such collisions is not part of `destination_name_transformer` but of the `stream_processor`. + """ name_transformer = DestinationNameTransformer(DestinationType.POSTGRES) print(f"Truncating from #{len(input_str)} to #{len(expected)}") assert name_transformer.truncate_identifier_name(input_str) == expected diff --git a/airbyte-integrations/bases/base-normalization/unit_tests/test_stream_processor.py b/airbyte-integrations/bases/base-normalization/unit_tests/test_stream_processor.py index 113967a53e7996..e901c3e16432a6 100644 --- a/airbyte-integrations/bases/base-normalization/unit_tests/test_stream_processor.py +++ b/airbyte-integrations/bases/base-normalization/unit_tests/test_stream_processor.py @@ -33,18 +33,22 @@ from normalization.transform_catalog.stream_processor import StreamProcessor, get_table_name -@pytest.fixture -def setup_test_path(): - # This makes the test pass no matter if it is executed from Tests folder (with pytest) or from base-normalization folder (through pycharm) - if os.path.exists(os.path.join(os.curdir, "unit_tests")): - os.chdir("unit_tests") +@pytest.fixture(scope="function", autouse=True) +def before_tests(request): + # This makes the test run whether it is executed from the tests folder (with pytest/gradle) or from the base-normalization folder (through pycharm) + unit_tests_dir = os.path.join(request.fspath.dirname, "unit_tests") + if os.path.exists(unit_tests_dir): + os.chdir(unit_tests_dir) + else: + os.chdir(request.fspath.dirname) + yield + os.chdir(request.config.invocation_dir) @pytest.mark.parametrize( "catalog_file", [ "edge_cases_catalog", - "hubspot_catalog", "facebook_catalog", "stripe_catalog", ], @@ -58,7 +62,28 @@ def setup_test_path(): "Redshift", ], ) -def test_stream_processor_tables_naming(integration_type: str, catalog_file: str, setup_test_path): +def test_stream_processor_tables_naming(integration_type: str, catalog_file: str): + """ + For a given catalog.json and destination, multiple cases can occur where naming becomes tricky. + (especially since some destination like postgres have a very low limit to identifiers length of 64 characters) + + In case of nested objects/arrays in a stream, names can drag on to very long names. + Tests are built here using resources files as follow: + - `_catalog.json`: + input catalog.json, typically as what source would provide. + For example Stripe and Facebook catalog.json contains some level of nesting. + - `_expected_top_level.json`: + list of expected table names for the top level stream names + - `_expected_nested.json`: + list of expected table names for nested objects, extracted to their own and separate table names + + For the expected json files, it is possible to specialize the file to a certain destination. + So if for example, the resources folder contains these two expected files: + - edge_cases_catalog_expected_top_level.json + - edge_cases_catalog_expected_top_level_postgres.json + Then the test will be using the first edge_cases_catalog_expected_top_level.json except for + Postgres destination where the expected table names will come from edge_cases_catalog_expected_top_level_postgres.json + """ destination_type = DestinationType.from_string(integration_type) tables_registry = {} @@ -151,6 +176,19 @@ def test_stream_processor_tables_naming(integration_type: str, catalog_file: str ], ) def test_get_table_name(root_table: str, base_table_name: str, suffix: str, expected: str): + """ + - parent table: referred to as root table + - child table: referred to as base table. + - extra suffix: normalization steps used as suffix to decompose pipeline into multi steps. + - json path: in terms of parent and nested field names in order to reach the table currently being built + + See documentation of get_table_name method for more details. + + But this test check the strategies of combining all those fields into a single table name for the user to (somehow) identify and + recognize what data is available in there. + A set of complicated rules are done in order to choose what parts to truncate or what to leave and handle + name collisions. + """ name_transformer = DestinationNameTransformer(DestinationType.POSTGRES) name = get_table_name(name_transformer, root_table, base_table_name, suffix, ["json", "path"]) assert name == expected @@ -297,8 +335,9 @@ def test_cursor_field(cursor_field: List[str], expecting_exception: bool, expect "primary_key, column_type, expecting_exception, expected_primary_keys, expected_final_primary_key_string", [ ([["id"]], "string", False, ["id"], "{{ adapter.quote('id') }}"), + ([["id"]], "number", False, ["id"], "cast({{ adapter.quote('id') }} as {{ dbt_utils.type_string() }})"), ([["first_name"], ["last_name"]], "string", False, ["first_name", "last_name"], "first_name, last_name"), - ([["float_id"]], "number", False, ["float_id"], "cast({{ 'float_id' }} as {{ dbt_utils.type_string() }})"), + ([["float_id"]], "number", False, ["float_id"], "cast(float_id as {{ dbt_utils.type_string() }})"), ([["_airbyte_emitted_at"]], "string", False, [], "cast(_airbyte_emitted_at as {{ dbt_utils.type_string() }})"), (None, "string", True, [], ""), ([["parent", "nested_field"]], "string", True, [], ""), diff --git a/airbyte-integrations/bases/base-normalization/unit_tests/test_transform_config.py b/airbyte-integrations/bases/base-normalization/unit_tests/test_transform_config.py index 620646ba4cb6af..a230dc7a7d955e 100644 --- a/airbyte-integrations/bases/base-normalization/unit_tests/test_transform_config.py +++ b/airbyte-integrations/bases/base-normalization/unit_tests/test_transform_config.py @@ -24,11 +24,27 @@ import json import os +import pytest from normalization.transform_catalog.transform import extract_schema from normalization.transform_config.transform import DestinationType, TransformConfig class TestTransformConfig: + """ + This class is testing the transform config functionality that converts a destination_config.json into the adequate profiles.yml file for dbt to use + """ + + @pytest.fixture(scope="class", autouse=True) + def before_all_tests(self, request): + # This makes the test run whether it is executed from the tests folder (with pytest/gradle) or from the base-normalization folder (through pycharm) + unit_tests_dir = os.path.join(request.fspath.dirname, "unit_tests") + if os.path.exists(unit_tests_dir): + os.chdir(unit_tests_dir) + else: + os.chdir(request.fspath.dirname) + yield + os.chdir(request.config.invocation_dir) + def test_transform_bigquery(self): input = {"project_id": "my_project_id", "dataset_id": "my_dataset_id", "credentials_json": '{ "type": "service_account" }'} diff --git a/airbyte-workers/src/main/java/io/airbyte/workers/normalization/DefaultNormalizationRunner.java b/airbyte-workers/src/main/java/io/airbyte/workers/normalization/DefaultNormalizationRunner.java index 7028b46916fb2c..c0e2255756dd71 100644 --- a/airbyte-workers/src/main/java/io/airbyte/workers/normalization/DefaultNormalizationRunner.java +++ b/airbyte-workers/src/main/java/io/airbyte/workers/normalization/DefaultNormalizationRunner.java @@ -43,7 +43,7 @@ public class DefaultNormalizationRunner implements NormalizationRunner { private static final Logger LOGGER = LoggerFactory.getLogger(DefaultNormalizationRunner.class); - public static final String NORMALIZATION_IMAGE_NAME = "airbyte/normalization:0.1.24"; + public static final String NORMALIZATION_IMAGE_NAME = "airbyte/normalization:0.1.25"; private final DestinationType destinationType; private final ProcessBuilderFactory pbf; diff --git a/build.gradle b/build.gradle index af97a67095863d..a40b1668236d1d 100644 --- a/build.gradle +++ b/build.gradle @@ -45,16 +45,19 @@ def createJavaLicenseWith = { license -> // monorepo setup and it doesn't actually exclude directories reliably. This code makes the behavior predictable. def createSpotlessTarget = { pattern -> def excludes = [ - '.gradle', - 'node_modules', - '.eggs', - '.mypy_cache', - '.venv', - '*.egg-info', - 'build', - 'dbt-project-template', - 'tools', - 'secrets' + '.gradle', + 'node_modules', + '.eggs', + '.mypy_cache', + '.venv', + '*.egg-info', + 'build', + 'dbt-project-template', + 'dbt_data_tests', + 'dbt_schema_tests', + 'normalization_test_output', + 'tools', + 'secrets' ] if (System.getenv().containsKey("CORE_ONLY")) { diff --git a/tools/bin/ci_credentials.sh b/tools/bin/ci_credentials.sh index 45941685fa95ed..63d27af2a5d4fc 100755 --- a/tools/bin/ci_credentials.sh +++ b/tools/bin/ci_credentials.sh @@ -12,7 +12,11 @@ function write_standard_creds() { [ -z "$connector_name" ] && error "Empty connector name" [ -z "$creds" ] && error "Creds not set for $connector_name" - local secrets_dir="airbyte-integrations/connectors/${connector_name}/secrets" + if [ "$connector_name" = "base-normalization" ]; then + local secrets_dir="airbyte-integrations/bases/${connector_name}/secrets" + else + local secrets_dir="airbyte-integrations/connectors/${connector_name}/secrets" + fi mkdir -p "$secrets_dir" echo "$creds" > "${secrets_dir}/${cred_filename}" } @@ -22,6 +26,10 @@ write_standard_creds destination-snowflake "$SNOWFLAKE_INTEGRATION_TEST_CREDS" " write_standard_creds destination-snowflake "$SNOWFLAKE_S3_COPY_INTEGRATION_TEST_CREDS" "copy_s3_config.json" write_standard_creds destination-redshift "$AWS_REDSHIFT_INTEGRATION_TEST_CREDS" +write_standard_creds base-normalization "$BIGQUERY_INTEGRATION_TEST_CREDS" "bigquery.json" +write_standard_creds base-normalization "$SNOWFLAKE_INTEGRATION_TEST_CREDS" "snowflake.json" +write_standard_creds base-normalization "$AWS_REDSHIFT_INTEGRATION_TEST_CREDS" "redshift.json" + write_standard_creds source-file "$GOOGLE_CLOUD_STORAGE_TEST_CREDS" "gcs.json" write_standard_creds source-braintree-singer "$BRAINTREE_TEST_CREDS" write_standard_creds source-drift "$DRIFT_INTEGRATION_TEST_CREDS"