diff --git a/README.md b/README.md index 8b205ba..bb20bcd 100644 --- a/README.md +++ b/README.md @@ -937,45 +937,11 @@ by adding a new feature or solving a bug, please follow the following guidelines ##### Using Docker -The recommended way is to run self-tests in Docker, as this is how dot is typically deployed and -ensures you're testing the exact same environment. +The Docker build provided above to run DOT, also includes self-test. So once you have the container running, all you +need to do is .. -- Set [dot_config.yml](dot/self_tests/data/base_self_test/dot_config.yml) at directory -`dot/self_tests/data/base_self_test` as follows ... - -``` -dot: - save_passed_tests: False - output_schema_suffix: tests -dot_db: - type: postgres - host: dot_db - user: postgres - pass: "{{ env_var('POSTGRES_PASSWORD') }}" - port: 5432 - dbname: dot_db - schema: self_tests_dot - threads: 4 -Muso_db: - type: postgres - host: dot_db - user: postgres - pass: "{{ env_var('POSTGRES_PASSWORD') }}" - port: 5432 - dbname: dot_db - schema: self_tests_public - threads: 4 -``` - -- Start a terminal on the container -``` -docker exec -it dot /bin/bash -``` -- Run the tests -``` -cd dot -pytest self_tests/unit -``` +1. `exec -it dot /bin/bash` +2. `pytest dot/self_tests/unit` ##### On your local machine @@ -1017,7 +983,6 @@ And finally you can run the tests from a terminal as follows: pytest dot/self_tests/unit ``` - #### Guidelines for adding new tests - Existing tests are at [the self-tests folder](dot/self_tests/unit) - All tests extend the [test base class](dot/self_tests/unit/base_self_test_class.py) that diff --git a/db/dot/1-schema.sql b/db/dot/1-schema.sql index 46e9183..73f398f 100644 --- a/db/dot/1-schema.sql +++ b/db/dot/1-schema.sql @@ -17,13 +17,17 @@ CREATE TABLE IF NOT EXISTS dot.test_types( library VARCHAR(300) NOT NULL, description VARCHAR(1000) NOT NULL, scope VARCHAR(300) CHECK(scope in ('column','single_table', 'multi_table','any')), - example_test_parameters VARCHAR(1000) NULL + uses_parameters BOOLEAN NOT NULL, + uses_column BOOLEAN NOT NULL ); CREATE TABLE IF NOT EXISTS dot.test_parameters_interface( test_type VARCHAR(300) NOT NULL, - parameter VARCHAR(300) NULL, - parameter_type VARCHAR(300) CHECK(parameter_type IN ('function_argument','sql_statement')), + parameter VARCHAR(300) NOT NULL, + parameter_type VARCHAR(300) CHECK(parameter_type IN ('entity any field', 'entity id field', 'entity columns boolean logic', + 'view/table', 'entity date field', 'one of (hour, day, week)', + 'entity numeric field','sql statement','list of values')), + example VARCHAR(300) NOT NULL, description VARCHAR(1000) NOT NULL, UNIQUE (test_type, parameter), CONSTRAINT fk_test_type @@ -46,10 +50,12 @@ CREATE TABLE IF NOT EXISTS dot.scenario_test_types( CREATE TABLE IF NOT EXISTS dot.projects( project_id VARCHAR(300) PRIMARY KEY, description VARCHAR(1000) NOT NULL, - created_on TIMESTAMP WITH TIME ZONE NOT NULL, active BOOLEAN, project_schema VARCHAR(300) NULL, - contacts VARCHAR(1000) NULL + contacts VARCHAR(1000) NULL, + date_added TIMESTAMP WITH TIME ZONE NOT NULL, + date_modified TIMESTAMP WITH TIME ZONE NOT NULL, + last_updated_by VARCHAR(200) NOT NULL ); CREATE TABLE IF NOT EXISTS dot.run_log ( @@ -76,6 +82,9 @@ CREATE TABLE IF NOT EXISTS dot.configured_entities ( entity_name VARCHAR(300), entity_category VARCHAR(300), entity_definition VARCHAR(4096), + date_added TIMESTAMP WITH TIME ZONE NOT NULL, + date_modified TIMESTAMP WITH TIME ZONE NOT NULL, + last_updated_by VARCHAR(200) NOT NULL, Primary Key (entity_id), CONSTRAINT fk_entity_category FOREIGN KEY(entity_category) @@ -217,4 +226,36 @@ BEGIN RETURN QUERY EXECUTE 'SELECT row_to_json(dot_model__'|| entity || ') from ' || results_schema || '.dot_model__' || entity || ' WHERE ' || id_col || '=''' || id_col_val || ''''; END; $$ LANGUAGE 'plpgsql'; +CREATE OR REPLACE FUNCTION dot.configured_entities_insert() +RETURNS TRIGGER +LANGUAGE plpgsql +AS $$ +declare + KEY_STRING text; +BEGIN + -- If you change how this UUID is generated, be sure to also change how it is created in get_test_id in /utils/utils.py + KEY_STRING := new.entity_name || new.entity_category || new.entity_definition; + NEW.entity_id := uuid_generate_v3(uuid_ns_oid(), KEY_STRING); + new.date_added := NOW(); + new.date_modified := NOW(); + RETURN NEW; +END; +$$; + +CREATE OR REPLACE FUNCTION dot.configured_entities_update() +RETURNS TRIGGER +LANGUAGE plpgsql +AS $$ +BEGIN + new.date_modified := NOW(); + RETURN NEW; +END; +$$; + +CREATE TRIGGER configured_entities_insert_trigger +BEFORE INSERT ON dot.configured_entities +FOR EACH ROW EXECUTE PROCEDURE dot.configured_entities_insert() ; +CREATE TRIGGER configured_entities_update_trigger +BEFORE UPDATE ON dot.configured_entities +FOR EACH ROW EXECUTE PROCEDURE dot.configured_entities_update() ; diff --git a/db/dot/2-upload_static_data.sql b/db/dot/2-upload_static_data.sql index bfaa20b..a07d156 100644 --- a/db/dot/2-upload_static_data.sql +++ b/db/dot/2-upload_static_data.sql @@ -25,38 +25,37 @@ INSERT INTO dot.scenarios VALUES('ASSESS-1', 'Inconsistent data', 'Process error INSERT INTO dot.scenarios VALUES('TREAT-1', 'Incorrect treatment', 'Process errors', 'Incorrect treatment', 'Outliers', 'Drug protocol not followed for Malaria treatment; FP for people on tubal ligation, pregnant or had vasectomy'); -- dot.test_types -INSERT INTO dot.test_types VALUES('relationships', 'dbt', 'Test missing relationships between records', 'multi_table', 'name: danger_signs_with_no_pregnancy| to: ref(''pregnancy'')| field: uuid'); -INSERT INTO dot.test_types VALUES('unique', 'dbt', 'Test to confirm uniqueness ', 'column', ''); -INSERT INTO dot.test_types VALUES('not_negative_string_column', 'dbt', 'Test to confirm all positive', 'column', 'name: patient_age_in_years'); -INSERT INTO dot.test_types VALUES('not_null', 'dbt', 'Test to confirm if null', 'column', ''); -INSERT INTO dot.test_types VALUES('accepted_values', 'dbt', 'Test to confirm values adhere to specified list', 'column', 'values: [True, False]'); -INSERT INTO dot.test_types VALUES('custom_sql', 'dbt', 'Custom SQL, if rows returned test failed', 'any', '""select - reported, - reported_by_parent as chw_uuid, - count(*) -from {{ ref(''household_visit'') }} -group by 1, 2 -having count(*) > 100""'); -INSERT INTO dot.test_types VALUES('possible_duplicate_forms', 'dbt', 'Test to confirm duplicate records', 'single_table', 'table_specific_reported_date: reported| table_specific_patient_uuid: patient_id| table_specific_uuid: uuid'); -INSERT INTO dot.test_types VALUES('associated_columns_not_null', 'dbt', 'Test to confirm related columns not null', 'column', ''); -INSERT INTO dot.test_types VALUES('expect_similar_means_across_reporters', 'great_expectations', 'Test to compare means across reporters (eg of temperature)', 'column', ''); -INSERT INTO dot.test_types VALUES('fake_expectation_for_test_purposes', 'great_expectations', 'Great expectation test test, ignore', 'column', ''); -INSERT INTO dot.test_types VALUES('expression_is_true', 'dbt', 'Test to confirm a value of an expression given a condition', 'any', 'name: "t_referral_follow_up_negative"| expression: "not(treat_malnutrition and danger_sign)"| condition: "not(fu_ref_rec or fu_rec)"'); +INSERT INTO dot.test_types VALUES('relationships', 'dbt', 'Test missing relationships between records', 'multi_table', true, true); +INSERT INTO dot.test_types VALUES('unique', 'dbt', 'Test to confirm uniqueness ', 'column', false,true); +INSERT INTO dot.test_types VALUES('not_negative_string_column', 'dbt', 'Test to confirm all positive', 'column', false, true); +INSERT INTO dot.test_types VALUES('not_null', 'dbt', 'Test to confirm if null', 'column', false, true); +INSERT INTO dot.test_types VALUES('accepted_values', 'dbt', 'Test to confirm values adhere to specified list', 'column', true, true); +INSERT INTO dot.test_types VALUES('custom_sql', 'dbt', 'Custom SQL, if rows returned test failed', 'any', true, false); +INSERT INTO dot.test_types VALUES('possible_duplicate_forms', 'dbt', 'Test to confirm duplicate records', 'single_table', true, false); +INSERT INTO dot.test_types VALUES('associated_columns_not_null', 'dbt', 'Test to confirm related columns not null', 'column', true, false); +INSERT INTO dot.test_types VALUES('expect_similar_means_across_reporters', 'great_expectations', 'Test to compare means across reporters (eg of temperature)', 'column', true, false); +INSERT INTO dot.test_types VALUES('expression_is_true', 'dbt', 'Test to confirm a value of an expression given a condition', 'any', true, false); -- dot.test_parameters_interface -INSERT INTO dot.test_parameters_interface VALUES('relationships', 'name', 'function_argument', 'Name of the test'); -INSERT INTO dot.test_parameters_interface VALUES('relationships', 'reference', 'function_argument', 'Referenced field to be checked if missing'); -INSERT INTO dot.test_parameters_interface VALUES('relationships', 'field', 'function_argument', 'Field being checked'); -INSERT INTO dot.test_parameters_interface VALUES('not_negative_string_column', 'name', 'function_argument', 'Name of column to be check3ed for non-negative values'); -INSERT INTO dot.test_parameters_interface VALUES('accepted_values', 'values', 'function_argument', 'List of accepted values for the field being checked'); -INSERT INTO dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_reported_date', 'function_argument', 'Column which indicates when form created'); -INSERT INTO dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_patient_uuid', 'function_argument', 'Column which holds to patient uuid'); -INSERT INTO dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_uuid', 'function_argument', 'UUID for records in the table (form) being checked'); -INSERT INTO dot.test_parameters_interface VALUES('custom_sql', '', 'sql_statement', 'Custom SQL to use to determine test fails, SQL is defined in columns test_parameter'); -INSERT INTO dot.test_parameters_interface VALUES('expression_is_true', 'name', 'function_argument', 'Name of the test'); -INSERT INTO dot.test_parameters_interface VALUES('expression_is_true', 'condition', 'function_argument', 'Where clause of rows that are going to be checked'); -INSERT INTO dot.test_parameters_interface VALUES('expression_is_true', 'expression', 'function_argument', 'If not true, the row fails the test'); +-- INSERT INTO dot.test_parameters_interface VALUES('relationships', 'name', 'function_argument', 'Name of the test'); +INSERT INTO dot.test_parameters_interface VALUES('relationships', 'reference', 'view/table', $$ref('dot_model__ancview_pregnancy')$$, 'Referenced field to be checked if missing'); +INSERT INTO dot.test_parameters_interface VALUES('relationships', 'field', 'entity any field', 'uuid', 'Field being checked'); +-- INSERT INTO dot.test_parameters_interface VALUES('not_negative_string_column', 'name', 'function_argument', 'Name of column to be check3ed for non-negative values'); +INSERT INTO dot.test_parameters_interface VALUES('accepted_values', 'values', 'list of values', $$["dog","cat","ostrich"]$$,'List of accepted values for the field being checked'); +INSERT INTO dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_reported_date', 'entity date field', 'reported', 'Column which indicates when form created'); +INSERT INTO dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_patient_uuid', 'entity id field', 'patient_id', 'Column which holds to patient uuid'); +INSERT INTO dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_uuid', 'entity id field', 'uuid', 'UUID for records in the table (form) being checked'); +INSERT INTO dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_period', 'one of (hour, day, week)', 'day','Specified period to check for duplicates (hour, day, week)'); +INSERT INTO dot.test_parameters_interface VALUES('custom_sql', 'query', 'sql statement', $$SELECT COUNT(*) WHERE COLOR='green'$$,'Custom SQL to use to determine test fails, SQL is defined in columns test_parameter'); +-- INSERT INTO dot.test_parameters_interface VALUES('expression_is_true', 'name', 'function_argument', 'Name of the test'); +INSERT INTO dot.test_parameters_interface VALUES('expression_is_true', 'condition', 'entity columns boolean logic', '(patient_age_in_months<24) and (malaria_give_act is not null)','Where clause of rows that are going to be checked'); +INSERT INTO dot.test_parameters_interface VALUES('expression_is_true', 'expression', 'entity columns boolean logic', 'malaria_act_dosage is not null', 'If not true, the row fails the test'); +INSERT INTO dot.test_parameters_interface VALUES('expect_similar_means_across_reporters', 'key', 'entity id field', 'reported_by', 'The key to check means by, ie a person-specific id'); +INSERT INTO dot.test_parameters_interface VALUES('expect_similar_means_across_reporters', 'quantity', 'entity numeric field', 'temperature', 'The name of the numeric field to analyze for variation'); +INSERT INTO dot.test_parameters_interface VALUES('expect_similar_means_across_reporters', 'form_name', 'entity id field', 'dot_model__iccmview_assessment', 'The name of entity view where data is'); +INSERT INTO dot.test_parameters_interface VALUES('expect_similar_means_across_reporters', 'id_column', 'entity any field', 'reported_by', 'The id column to group by for mean'); -- Seems like a duplicate of key? + -- dot.scenario_test_types INSERT INTO dot.scenario_test_types VALUES('MISSING-1', 'associated_columns_not_null'); diff --git a/db/dot/3-upload_sample_data.sql b/db/dot/3-upload_sample_data.sql index 35a3a57..9b460c3 100644 --- a/db/dot/3-upload_sample_data.sql +++ b/db/dot/3-upload_sample_data.sql @@ -1,5 +1,5 @@ -INSERT INTO dot.projects SELECT 'Muso', 'Muso project', '2021-12-07 00:00:00+00', 'true', 'public'; -INSERT INTO dot.projects SELECT 'Brac', 'Brac project', '2021-12-07 00:00:00+00', 'true', 'public'; +INSERT INTO dot.projects SELECT 'Muso', 'Muso project', true, 'public', null, '2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'; +INSERT INTO dot.projects SELECT 'Brac', 'Brac project', true, 'public', null, '2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'; -- entity categories INSERT INTO dot.entity_categories VALUES('anc', 'Antenatal care'); @@ -13,21 +13,21 @@ INSERT INTO dot.entity_categories VALUES('pnc', 'Postnatal care'); INSERT INTO dot.configured_entities VALUES('b05f1f9c-2176-46b0-8e8f-d6690f696b9b', 'ancview_danger_sign', 'anc', '{{ config(materialized=''view'') }} {% set schema = %} select * -from {{ schema }}.ancview_danger_sign'); +from {{ schema }}.ancview_danger_sign','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); INSERT INTO dot.configured_entities VALUES('66f5d13a-8f74-4f97-836b-334d97932781', 'ancview_delivery', 'anc', '{{ config(materialized=''view'') }} {% set schema = %} select * -from {{ schema }}.ancview_delivery'); +from {{ schema }}.ancview_delivery','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); INSERT INTO dot.configured_entities VALUES('638ed10b-3a2f-4f18-9ca1-ebf23563fdc0', 'ancview_pregnancy', 'anc', '{{ config(materialized=''view'') }} {% set schema = %} select ap.*, ap.lmp as lmp_date, DATE_PART(''day'', reported - lmp) as days_since_lmp -from {{ schema }}.ancview_pregnancy ap'); +from {{ schema }}.ancview_pregnancy ap','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); INSERT INTO dot.configured_entities VALUES('8ccab0bf-383e-4e41-9437-2b1c5007ba80', 'ancview_pregnancy_visit', 'anc', '{{ config(materialized=''view'') }} {% set schema = %} select * -from {{ schema }}.ancview_pregnancy_visit'); +from {{ schema }}.ancview_pregnancy_visit','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); INSERT INTO dot.configured_entities VALUES('f41fe8ee-ee1c-49dd-ae3d-c473daf441d5', 'chv', 'core', '{{ config(materialized=''view'') }} {% set schema = %} with source_data as ( @@ -38,19 +38,19 @@ with source_data as ( {{ schema }}.iccmview_assessment ) select * -from source_data'); +from source_data','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); INSERT INTO dot.configured_entities VALUES('6ba8075f-6f35-4ff1-be3a-4c75d0884bf4', 'fpview_follow_up', 'fp', '{{ config(materialized=''view'') }} {% set schema = %} select * -from {{ schema }}.fpview_follow_up'); +from {{ schema }}.fpview_follow_up','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); INSERT INTO dot.configured_entities VALUES('95bd0f60-ab59-48fc-a62e-f256f5f3e6de', 'fpview_registration', 'fp', '{{ config(materialized=''view'') }} {% set schema = %} select * -from {{ schema }}.fpview_registration'); +from {{ schema }}.fpview_registration','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); INSERT INTO dot.configured_entities VALUES('173793ff-491d-4c73-8d0b-3903a82d3796', 'hhview_visits', 'core', '{{ config(materialized=''view'') }} {% set schema = %} select * -from {{ schema }}.hhview_visits'); +from {{ schema }}.hhview_visits','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); INSERT INTO dot.configured_entities VALUES('baf349c9-c919-40ff-a611-61ddc59c2d52', 'iccmview_assessment', 'iccm', '{{ config(materialized=''view'') }} {% set schema = %} -- select * @@ -69,20 +69,20 @@ from {{ schema }}.formview_assessment fa -- should be maybe a left join with iccmview_assessment where ia.uuid = ua.uuid - and fa.uuid = ua.uuid'); + and fa.uuid = ua.uuid','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); INSERT INTO dot.configured_entities VALUES('50f31569-f2fc-4dc6-af49-4268381e7c13', 'iccmview_assessment_follow_up', 'iccm', '{{ config(materialized=''view'') }} {% set schema = %} with source_data as ( select * from {{ schema }}.iccmview_assessment_follow_up ) select * -from source_data'); +from source_data','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); INSERT INTO dot.configured_entities VALUES('d0645118-bd68-4eba-8ead-fad114be86b7', 'mnview_follow_up', 'mn', '{{ config(materialized=''view'') }} {% set schema = %} -select * from {{ schema }}.mnview_follow_up'); +select * from {{ schema }}.mnview_follow_up','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); INSERT INTO dot.configured_entities VALUES('57a9fd48-51d8-4dc0-bbd1-a6e0405696cd', 'mnview_registration', 'mn', '{{ config(materialized=''view'') }} {% set schema = %} -select * from {{ schema }}.mnview_registration'); +select * from {{ schema }}.mnview_registration','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); INSERT INTO dot.configured_entities VALUES('fade2413-8504-443f-b161-1c5470fc1df3', 'patient', 'core', '{{ config(materialized=''view'') }} {% set schema = %} with source_data as ( @@ -93,33 +93,34 @@ with source_data as ( where type = ''person'' ) select * -from source_data'); +from source_data','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); INSERT INTO dot.configured_entities VALUES('eaea6e4c-a455-4f04-bb36-4bab0f6ba1a3', 'pncview_visits', 'pnc', '{{ config(materialized=''view'') }} {% set schema = %} with source_data as ( select * from {{ schema }}.pncview_visits ) select * -from source_data'); +from source_data','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); -- Note these UUIDs get reset by the trigger -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '549c0575-e64c-3605-85a9-70356a23c4d2', 'MISSING-1', 3, 'Patient ID is not null', '', '', '638ed10b-3a2f-4f18-9ca1-ebf23563fdc0', 'not_null', 'patient_id', '', NULL, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Example'); +-- Note these UUIDs get reset by the trigger +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '549c0575-e64c-3605-85a9-70356a23c4d2', 'MISSING-1', 3, 'Patient ID is not null', '', '', '6a4d1463-281e-34b4-9620-609756dbbaf5', 'not_null', 'patient_id', '', NULL, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Example'); -- ? -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '8aca2bee-9e95-3f8a-90e9-153714e05367', 'INCONSISTENT-1', 5, 'Patient age is not negative', '', '', '95bd0f60-ab59-48fc-a62e-f256f5f3e6de', 'not_negative_string_column', 'patient_age_in_years', '', '{"name": "patient_age_in_years"}', '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Example'); +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '8aca2bee-9e95-3f8a-90e9-153714e05367', 'INCONSISTENT-1', 5, 'Patient age is not negative', '', '', '569b9515-eb80-39ab-a537-f6ef571dee64', 'not_negative_string_column', 'patient_age_in_years', '', '{"name": "patient_age_in_years"}', '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Example'); -- ? -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '52d7352e-56ee-3084-9c67-e5ab24afc3a3', 'DUPLICATE-1', 3, 'UUID is not unique', '', '', '6ba8075f-6f35-4ff1-be3a-4c75d0884bf4', 'unique', 'uuid', '', NULL, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Example'); +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '52d7352e-56ee-3084-9c67-e5ab24afc3a3', 'DUPLICATE-1', 3, 'UUID is not unique', '', '', '1739a0b0-5a61-391f-a3b6-0aab7e2fe0b9', 'unique', 'uuid', '', NULL, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Example'); -- ? -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '935e6b61-b664-3eab-9d67-97c2c9c2bec0', 'INCONSISTENT-1', 3, 'Disallowed FP methods entered in form', '', '', '95bd0f60-ab59-48fc-a62e-f256f5f3e6de', 'accepted_values', 'fp_method_being_used', '', $${"values": ["oral mini-pill (progestogen)", "male condom", "female sterilization", "iud", "oral combination pill", "implants", "injectible"]}$$, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Example'); +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '935e6b61-b664-3eab-9d67-97c2c9c2bec0', 'INCONSISTENT-1', 3, 'Disallowed FP methods entered in form', '', '', '569b9515-eb80-39ab-a537-f6ef571dee64', 'accepted_values', 'fp_method_being_used', '', $${"values": ["oral mini-pill (progestogen)", "male condom", "female sterilization", "iud", "oral combination pill", "implants", "injectible"]}$$, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Example'); -- ?? -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '0cdc9702-91e0-3499-b6f0-4dec12ad0f08', 'ASSESS-1', 3, 'Pregnancy danger signs with no pregnancy record', '', '', 'b05f1f9c-2176-46b0-8e8f-d6690f696b9b', 'relationships', 'pregnancy_uuid', '', $${"name": "danger_signs_with_no_pregnancy", "to": "ref('dot_model__ancview_pregnancy')", "field": "uuid"}$$, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Example'); +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '0cdc9702-91e0-3499-b6f0-4dec12ad0f08', 'ASSESS-1', 3, 'Pregnancy danger signs with no pregnancy record', '', '', '5a6b486d-87fa-347e-888e-0b6c11db7cd7', 'relationships', 'pregnancy_uuid', '', $${"name": "danger_signs_with_no_pregnancy", "to": "ref('dot_model__ancview_pregnancy')", "field": "uuid"}$$, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Example'); -- MDSF-2 -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '8b3f974c-16f2-4048-920c-f28086b9b411', 'MISSED-3', 9, 'Missing danger sign follow up (MDSF-2)', '', '', '638ed10b-3a2f-4f18-9ca1-ebf23563fdc0', 'relationships', 'uuid', '', $${"name": "missed_danger_sign_followup", "to": "ref('dot_model__ancview_danger_sign')", "field": "pregnancy_uuid", "where": "danger_sign_at_reg=True" }$$, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Leah'); +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '8b3f974c-16f2-4048-920c-f28086b9b411', 'MISSED-3', 9, 'Missing danger sign follow up (MDSF-2)', '', '', '6a4d1463-281e-34b4-9620-609756dbbaf5', 'relationships', 'uuid', '', $${"name": "missed_danger_sign_followup", "to": "ref('dot_model__ancview_danger_sign')", "field": "pregnancy_uuid", "where": "danger_sign_at_reg=True" }$$, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Leah'); -- MAVF-1 -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '1305077b-718d-4a0c-b08c-2bb57f104357', 'MISSED-3', 8, 'Expectant women should be followed up by a health worker (MAVF-1)', '', '', '638ed10b-3a2f-4f18-9ca1-ebf23563fdc0', 'relationships', 'uuid', '', $${"name": "missed_anc_visit_followup", "to": "ref('dot_model__ancview_pregnancy_visit')", "field": "pregnancy_uuid"}$$, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Leah'); +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '1305077b-718d-4a0c-b08c-2bb57f104357', 'MISSED-3', 8, 'Expectant women should be followed up by a health worker (MAVF-1)', '', '', '6a4d1463-281e-34b4-9620-609756dbbaf5', 'relationships', 'uuid', '', $${"name": "missed_anc_visit_followup", "to": "ref('dot_model__ancview_pregnancy_visit')", "field": "pregnancy_uuid"}$$, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Leah'); -- GE-1 -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '0cdc9702-91e0-3499-b6f0-4dec12ad0f18', 'BIAS-1', 6, 'Test for miscalibrated thermometer (GE-1)', '', '', 'baf349c9-c919-40ff-a611-61ddc59c2d52', 'expect_similar_means_across_reporters', 'child_temperature_pre_chw', '', $${"key": "reported_by","quantity": "child_temperature_pre_chw","form_name": "dot_model__iccmview_assessment","id_column": "reported_by"}$$, '2022-01-19 20:00:00.000 -0500', '2022-01-19 20:00:00.000 -0500', 'Medic unknown'); +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '0cdc9702-91e0-3499-b6f0-4dec12ad0f18', 'BIAS-1', 6, 'Test for miscalibrated thermometer (GE-1)', '', '', '658f3ea9-d9ed-3dc2-8477-c5cc68bb44eb', 'expect_similar_means_across_reporters', 'child_temperature_pre_chw', '', $${"key": "reported_by","quantity": "child_temperature_pre_chw","form_name": "dot_model__iccmview_assessment","id_column": "reported_by"}$$, '2022-01-19 20:00:00.000 -0500', '2022-01-19 20:00:00.000 -0500', 'Medic unknown'); -- ?? -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '62665f35-bff9-4304-a496-76619c895a19', 'MISSED-1', 3, 'Patient with no assessment', '', '', 'fade2413-8504-443f-b161-1c5470fc1df3', 'custom_sql', '', '', +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '62665f35-bff9-4304-a496-76619c895a19', 'MISSED-1', 3, 'Patient with no assessment', '', '', 'e8f3abe6-a25e-3581-b8dc-8f9919269689', 'custom_sql', '', '', format('{%s: %s}', to_json('query'::text), to_json($query$ @@ -140,9 +141,9 @@ where (CURRENT_DATE::date - pna.patient_reported::date) >= 1095 $query$::text) )::json, '2022-02-01 19:00:00.000 -0500', '2022-02-01 19:00:00.000 -0500', 'Example'); -- WT-1 -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '3081f033-e8f4-4f3b-aea8-36f8c5df05dc', 'INCONSISTENT-1', 8, 'Wrong treatment/dosage arising from wrong age of children (WT-1)', '', '', 'baf349c9-c919-40ff-a611-61ddc59c2d52', 'expression_is_true', '', '', $${"name": "t_under_24_months_wrong_dosage", "expression": "malaria_act_dosage is not null", "condition": "(patient_age_in_months<24) and (malaria_give_act is not null)"}$$, '2022-02-14 19:00:00.000 -0500', '2022-02-14 19:00:00.000 -0500', 'MoH'); +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '3081f033-e8f4-4f3b-aea8-36f8c5df05dc', 'INCONSISTENT-1', 8, 'Wrong treatment/dosage arising from wrong age of children (WT-1)', '', '', '658f3ea9-d9ed-3dc2-8477-c5cc68bb44eb', 'expression_is_true', '', '', $${"name": "t_under_24_months_wrong_dosage", "expression": "malaria_act_dosage is not null", "condition": "(patient_age_in_months<24) and (malaria_give_act is not null)"}$$, '2022-02-14 19:00:00.000 -0500', '2022-02-14 19:00:00.000 -0500', 'MoH'); -- NFP-1 -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', 'c4a3da8f-32f4-4e9b-b135-354de203ca90', 'TREAT-1', 6, 'Test for new family planning method (NFP-1)', '', '', '95bd0f60-ab59-48fc-a62e-f256f5f3e6de', 'custom_sql', '', '', +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', 'c4a3da8f-32f4-4e9b-b135-354de203ca90', 'TREAT-1', 6, 'Test for new family planning method (NFP-1)', '', '', '569b9515-eb80-39ab-a537-f6ef571dee64', 'custom_sql', '', '', format('{%s: %s}', to_json('query'::text), to_json($query$ @@ -167,7 +168,7 @@ format('{%s: %s}', $query$::text) )::json,'2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Leah'); -- LMP-1 -INSERT INTO dot.configured_tests VALUES (TRUE, 'Muso', '3081f033-e8f4-4f3b-aea8-36f8c5df05ec','INCONSISTENT-1',9,'Erroneous LMP Date (LMP-1)','10','Put a validation on the application that no LMP should be less than 4 weeks at the time of registration','638ed10b-3a2f-4f18-9ca1-ebf23563fdc0','custom_sql','','', +INSERT INTO dot.configured_tests VALUES (TRUE, 'Muso', '3081f033-e8f4-4f3b-aea8-36f8c5df05ec','INCONSISTENT-1',9,'Erroneous LMP Date (LMP-1)','10','Put a validation on the application that no LMP should be less than 4 weeks at the time of registration','6a4d1463-281e-34b4-9620-609756dbbaf5','custom_sql','','', format('{%s: %s}', to_json('query'::text), to_json($query$ @@ -212,20 +213,19 @@ format('{%s: %s}', -- on cnt.days_since_lmp = ap.days_since_lmp -- where cnt.proportion>1','2022-02-15 20:00:00.000 -0500','2022-02-15 20:00:00.000 -0500','Leah'); -- PDF-1 -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', 'baadb20f-7efb-3ebd-bfc8-57561466f310', 'DUPLICATE-1', 7, 'Some CHWs may mistakenly register a pregnancy more than once (PDF-1)', '', '', '638ed10b-3a2f-4f18-9ca1-ebf23563fdc0', 'possible_duplicate_forms', '', '', $${"table_specific_reported_date": "reported", "table_specific_patient_uuid": "patient_id", "table_specific_uuid": "uuid", "table_specific_period": "day"}$$, '2021-12-23 19:00:00.000 -0500', '2022-03-21 19:00:00.000 -0500', 'Leah'); +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', 'baadb20f-7efb-3ebd-bfc8-57561466f310', 'DUPLICATE-1', 7, 'Some CHWs may mistakenly register a pregnancy more than once (PDF-1)', '', '', '6a4d1463-281e-34b4-9620-609756dbbaf5', 'possible_duplicate_forms', '', '', $${"table_specific_reported_date": "reported", "table_specific_patient_uuid": "patient_id", "table_specific_uuid": "uuid", "table_specific_period": "day"}$$, '2021-12-23 19:00:00.000 -0500', '2022-03-21 19:00:00.000 -0500', 'Leah'); -- PDF-2 -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '36d33837-bd92-370a-963a-264a4d5b2bac', 'DUPLICATE-1', 6, 'Same day repeat cases for pregnancy visits (PDF-2)', '', '', '8ccab0bf-383e-4e41-9437-2b1c5007ba80', 'possible_duplicate_forms', '', '', $${"table_specific_reported_date": "reported", "table_specific_patient_uuid": "patient_id", "table_specific_uuid": "uuid", "table_specific_period": "day"}$$, '2021-12-23 19:00:00.000 -0500', '2022-03-21 19:00:00.000 -0500', 'Mourice'); +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '36d33837-bd92-370a-963a-264a4d5b2bac', 'DUPLICATE-1', 6, 'Same day repeat cases for pregnancy visits (PDF-2)', '', '', 'a35cf3bc-e054-3c85-acd7-0b46ac4ece77', 'possible_duplicate_forms', '', '', $${"table_specific_reported_date": "reported", "table_specific_patient_uuid": "patient_id", "table_specific_uuid": "uuid", "table_specific_period": "day"}$$, '2021-12-23 19:00:00.000 -0500', '2022-03-21 19:00:00.000 -0500', 'Mourice'); -- PDF-3 -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', 'ab59ada1-5cfd-3f1b-9549-aa93c3d575ae', 'DUPLICATE-1', 6, 'Same day repeat cases for family planning duplicate records (PDF-3)', '', '', '6ba8075f-6f35-4ff1-be3a-4c75d0884bf4', 'possible_duplicate_forms', '', '', $${"table_specific_reported_date": "reported", "table_specific_patient_uuid": "patient_id", "table_specific_uuid": "uuid", "table_specific_period": "day"}$$, '2021-12-23 19:00:00.000 -0500', '2022-03-21 19:00:00.000 -0500', 'Mourice'); +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', 'ab59ada1-5cfd-3f1b-9549-aa93c3d575ae', 'DUPLICATE-1', 6, 'Same day repeat cases for family planning duplicate records (PDF-3)', '', '', '1739a0b0-5a61-391f-a3b6-0aab7e2fe0b9', 'possible_duplicate_forms', '', '', $${"table_specific_reported_date": "reported", "table_specific_patient_uuid": "patient_id", "table_specific_uuid": "uuid", "table_specific_period": "day"}$$, '2021-12-23 19:00:00.000 -0500', '2022-03-21 19:00:00.000 -0500', 'Mourice'); -- PDF-4 -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '68ea1480-b6b0-33b1-adc4-71a843ecb437', 'DUPLICATE-1', 8, 'FP same day repeat cases - some within a short time interval (PDF-4)', '', '', '95bd0f60-ab59-48fc-a62e-f256f5f3e6de', 'possible_duplicate_forms', '', '', $${"table_specific_reported_date": "reported", "table_specific_patient_uuid": "patient_id", "table_specific_uuid": "uuid", "table_specific_period": "day"}$$, '2021-12-23 19:00:00.000 -0500', '2022-03-21 19:00:00.000 -0500', 'Leah'); +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '68ea1480-b6b0-33b1-adc4-71a843ecb437', 'DUPLICATE-1', 8, 'FP same day repeat cases - some within a short time interval (PDF-4)', '', '', '569b9515-eb80-39ab-a537-f6ef571dee64', 'possible_duplicate_forms', '', '', $${"table_specific_reported_date": "reported", "table_specific_patient_uuid": "patient_id", "table_specific_uuid": "uuid", "table_specific_period": "day"}$$, '2021-12-23 19:00:00.000 -0500', '2022-03-21 19:00:00.000 -0500', 'Leah'); -- PDF-5 -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', 'eeafde14-6515-30dc-a51c-c5079209bcdb', 'DUPLICATE-1', 5, 'Multiple forms of the same activity submitted in a day (PDF-5)', '', '', 'baf349c9-c919-40ff-a611-61ddc59c2d52', 'possible_duplicate_forms', '', '', $${"table_specific_patient_uuid": "patient_id", "table_specific_uuid": "uuid", "table_specific_period": "day"}$$, '2021-12-23 19:00:00.000 -0500', '2022-03-21 19:00:00.000 -0500', 'Medic unknown'); +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', 'eeafde14-6515-30dc-a51c-c5079209bcdb', 'DUPLICATE-1', 5, 'Multiple forms of the same activity submitted in a day (PDF-5)', '', '', '658f3ea9-d9ed-3dc2-8477-c5cc68bb44eb', 'possible_duplicate_forms', '', '', $${"table_specific_patient_uuid": "patient_id", "table_specific_uuid": "uuid", "table_specific_period": "day"}$$, '2021-12-23 19:00:00.000 -0500', '2022-03-21 19:00:00.000 -0500', 'Medic unknown'); -- PDF-6 -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '2660b519-9946-3e12-9b92-46d4321b1d56', 'DUPLICATE-1', 5, 'Multiple forms of the same activity submitted in a day (PDF-6)', '', '', '50f31569-f2fc-4dc6-af49-4268381e7c13', 'possible_duplicate_forms', '', '', $${"table_specific_patient_uuid": "patient_id", "table_specific_uuid": "uuid", "table_specific_period": "day"}$$, '2021-12-23 19:00:00.000 -0500', '2022-03-21 19:00:00.000 -0500', 'Medic unknown'); +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '2660b519-9946-3e12-9b92-46d4321b1d56', 'DUPLICATE-1', 5, 'Multiple forms of the same activity submitted in a day (PDF-6)', '', '', '1cb91f66-9b67-328f-b5c5-3ab78435e99d', 'possible_duplicate_forms', '', '', $${"table_specific_patient_uuid": "patient_id", "table_specific_uuid": "uuid", "table_specific_period": "day"}$$, '2021-12-23 19:00:00.000 -0500', '2022-03-21 19:00:00.000 -0500', 'Medic unknown'); -- PDF-7 -INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '99ac4950-13df-3777-bd27-923e74be9dcb', 'DUPLICATE-1', 7, 'Multiple reporting of specific PNC visits (PDF-7)', '', '', 'eaea6e4c-a455-4f04-bb36-4bab0f6ba1a3', 'possible_duplicate_forms', '', '', $${"table_specific_patient_uuid": "patient_id", "table_specific_uuid": "uuid", "table_specific_period": "day"}$$, '2021-12-23 19:00:00.000 -0500', '2022-03-21 19:00:00.000 -0500', 'Leah'); - +INSERT INTO dot.configured_tests VALUES(TRUE, 'Muso', '99ac4950-13df-3777-bd27-923e74be9dcb', 'DUPLICATE-1', 7, 'Multiple reporting of specific PNC visits (PDF-7)', '', '', '33accce9-9367-3d11-8272-a7fba412717c', 'possible_duplicate_forms', '', '', $${"table_specific_patient_uuid": "patient_id", "table_specific_uuid": "uuid", "table_specific_period": "day"}$$, '2021-12-23 19:00:00.000 -0500', '2022-03-21 19:00:00.000 -0500', 'Leah'); -- Required for Airflow deployment and easier access to uynderlying data -- CREATE SCHEMA data_musoapp; diff --git a/docker/appsmith/DOT App V2.json b/docker/appsmith/DOT App V2.json index b8dc67f..a7a5dc8 100644 --- a/docker/appsmith/DOT App V2.json +++ b/docker/appsmith/DOT App V2.json @@ -1 +1 @@ -{"clientSchemaVersion":1,"serverSchemaVersion":4,"exportedApplication":{"name":"DOT App V2","isPublic":true,"appIsExample":false,"unreadCommentThreads":0,"color":"#F1DEFF","icon":"pie-chart","slug":"dot-app-v2","evaluationVersion":2,"applicationVersion":2,"isManualUpdate":false,"new":true},"datasourceList":[{"userPermissions":["execute:datasources","manage:datasources","read:datasources"],"gitSyncId":"627421964babdb1002f8325c_627421d24babdb1002f83263","name":"dot_db_local","pluginId":"postgres-plugin","invalids":[],"messages":[],"isConfigured":true,"isValid":true,"new":true}],"pageList":[{"userPermissions":["read:pages","manage:pages"],"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e28f5e3ca9d4fca99f56c","unpublishedPage":{"name":"Configured tests","slug":"configured-tests","layouts":[{"id":"Configured tests","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1431,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":1150,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":59,"minHeight":1130,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"labelTextSize":"0.875rem","boxShadow":"none","backgroundColor":"#FFFFFF","widgetName":"Configured_Tests_Container","rightColumn":64,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0,"bottomRow":87,"parentRowSpace":10,"isVisible":"true","type":"CONTAINER_WIDGET","version":1,"parentId":"0","isLoading":false,"parentColumnSpace":19.75,"leftColumn":0,"borderRadius":"0px","children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas1","rightColumn":632,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0,"bottomRow":970,"parentRowSpace":1,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1,"parentId":"mvubsemxfo","minHeight":870,"isLoading":false,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"Add_Test_Button","onClick":"{{resetWidget('Add_configured_tests_form');\nshowModal('Add_Test_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"},{"key":"onClick"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":4,"bottomRow":8,"parentRowSpace":10,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":51,"dynamicBindingPathList":[],"text":"Add test","isDisabled":"","key":"2ob5jed9vo","rightColumn":62,"isDefaultClickDisabled":true,"widgetId":"evkc3u31vk","isVisible":true,"recaptchaType":"V3","version":1,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"none","widgetName":"Bulk_Delete_Button","onClick":"{{showModal('Delete_Tests_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":4,"bottomRow":8,"tooltip":"{{!JSBulkUpdateDelete.allowUpdate() ? 'First select the tests you want to delete':''}}","parentRowSpace":10,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":40,"dynamicBindingPathList":[{"key":"isDisabled"},{"key":"tooltip"}],"text":"Delete tests","isDisabled":"{{!JSBulkUpdateDelete.allowUpdate()}}","key":"2ob5jed9vo","rightColumn":51,"isDefaultClickDisabled":true,"widgetId":"m8gxn5vx3a","isVisible":true,"recaptchaType":"V3","version":1,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"none","multiRowSelection":true,"widgetName":"configured_tests","columnOrder":["customColumn2","test_activated","project_id","description","priority","entity_name","test_type","column_name","test_parameters","scenario_id","impact","proposed_remediation","entity_id","column_description","test_id","date_added","date_modified","last_updated_by"],"dynamicPropertyPathList":[{"key":"onPageChange"},{"key":"onRowSelected"},{"key":"primaryColumns.customColumn2.onClick"}],"isVisibleDownload":true,"topRow":8,"bottomRow":95,"parentRowSpace":10,"onPageChange":"{{Configured_tests_data.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"-1","parentColumnSpace":1,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"onSearchTextChanged"},{"key":"primaryColumns.customColumn2.onClick"},{"key":"onRowSelected"}],"dynamicBindingPathList":[{"key":"tableData"},{"key":"accentColor"},{"key":"primaryColumns.test_activated.computedValue"},{"key":"primaryColumns.project_id.computedValue"},{"key":"primaryColumns.test_id.computedValue"},{"key":"primaryColumns.scenario_id.computedValue"},{"key":"primaryColumns.priority.computedValue"},{"key":"primaryColumns.description.computedValue"},{"key":"primaryColumns.impact.computedValue"},{"key":"primaryColumns.proposed_remediation.computedValue"},{"key":"primaryColumns.entity_id.computedValue"},{"key":"primaryColumns.test_type.computedValue"},{"key":"primaryColumns.column_name.computedValue"},{"key":"primaryColumns.column_description.computedValue"},{"key":"primaryColumns.test_parameters.computedValue"},{"key":"primaryColumns.date_added.computedValue"},{"key":"primaryColumns.date_modified.computedValue"},{"key":"primaryColumns.last_updated_by.computedValue"},{"key":"derivedColumns.customColumn2.menuColor"},{"key":"primaryColumns.customColumn2.menuColor"},{"key":"derivedColumns.customColumn2.borderRadius"},{"key":"derivedColumns.customColumn2.boxShadow"},{"key":"derivedColumns.customColumn2.buttonColor"},{"key":"primaryColumns.customColumn2.buttonColor"},{"key":"derivedColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.entity_name.computedValue"}],"leftColumn":0,"primaryColumns":{"test_activated":{"index":0,"width":150,"id":"test_activated","horizontalAlignment":"CENTER","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_activated","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_activated ? '✓' : ''))}}","cellBackground":""},"project_id":{"index":1,"width":150,"id":"project_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"project_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.project_id))}}","cellBackground":""},"test_id":{"index":2,"width":150,"id":"test_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_id))}}","cellBackground":""},"scenario_id":{"index":3,"width":150,"id":"scenario_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"scenario_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.scenario_id))}}","cellBackground":""},"priority":{"index":4,"width":150,"id":"priority","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"priority","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.priority))}}","cellBackground":""},"description":{"index":5,"width":150,"id":"description","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"description","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.description))}}","cellBackground":""},"impact":{"index":6,"width":150,"id":"impact","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"impact","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.impact))}}","cellBackground":""},"proposed_remediation":{"index":7,"width":150,"id":"proposed_remediation","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"proposed_remediation","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.proposed_remediation))}}","cellBackground":""},"entity_id":{"index":8,"width":150,"id":"entity_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.entity_id))}}","cellBackground":""},"test_type":{"index":9,"width":150,"id":"test_type","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_type","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_type))}}","cellBackground":""},"column_name":{"index":10,"width":150,"id":"column_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"column_name","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.column_name))}}","cellBackground":""},"column_description":{"index":11,"width":150,"id":"column_description","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"column_description","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.column_description))}}","cellBackground":""},"test_parameters":{"index":12,"width":150,"id":"test_parameters","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_parameters","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_parameters))}}","cellBackground":""},"date_added":{"index":13,"width":150,"id":"date_added","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"date_added","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.date_added))}}","cellBackground":""},"date_modified":{"index":14,"width":150,"id":"date_modified","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"date_modified","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.date_modified))}}","cellBackground":""},"last_updated_by":{"index":15,"width":150,"id":"last_updated_by","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"last_updated_by","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.last_updated_by))}}","cellBackground":""},"customColumn2":{"index":17,"width":150,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","menuColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","borderRadius":"0px","boxShadow":"none","iconName":"","onClick":"{{storeValue(\"test_type\",\"original\", false); storeValue(\"entity_id\",\"original\", false); Columns_dropdown_Edit.run(); showModal('Edit_Test_Modal')}}","buttonColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","buttonLabel":"{{configured_tests.sanitizedTableData.map((currentRow) => ( 'Edit'))}}"},"entity_name":{"index":16,"width":150,"id":"entity_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_name","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.entity_name))}}","cellBackground":""}},"delimiter":",","onRowSelected":"","derivedColumns":{"customColumn2":{"index":17,"width":150,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","menuColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","borderRadius":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","boxShadow":"{{configured_tests.sanitizedTableData.map((currentRow) => ( 'none'))}}","iconName":"edit","onClick":"{{showModal('Edit_Test_Modal')}}","buttonColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","buttonLabel":"{{configured_tests.sanitizedTableData.map((currentRow) => ( 'Edit'))}}"}},"labelTextSize":"0.875rem","rightColumn":64,"textSize":"0.875rem","widgetId":"jabdu9f16g","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisibleFilters":true,"tableData":"{{Configured_tests_data.data}}","isVisible":"true","label":"Data","searchKey":"","version":3,"parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"isLoading":false,"isVisibleCompactMode":true,"onSearchTextChanged":"{{Configured_tests_data.run()}}","horizontalAlignment":"LEFT","isVisibleSearch":true,"childStylesheet":{"button":{"buttonColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"menuButton":{"menuColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"iconButton":{"menuColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"}},"borderRadius":"0.375rem","isVisiblePagination":true,"primaryColumnId":"test_id","verticalAlignment":"CENTER","columnSizeMap":{"task":245,"deliveryAddress":170,"step":62,"id":228,"status":75,"customColumn2":80,"customColumn1":83,"description":301,"priority":77,"entity_name":213,"project_id":102}},{"boxShadow":"none","widgetName":"order_by_label","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":4,"bottomRow":8,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":19.75,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Order By :","labelTextSize":"0.875rem","rightColumn":5,"textAlign":"LEFT","widgetId":"l8pgl90klz","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","fontSize":"0.80rem"},{"boxShadow":"none","widgetName":"title__main","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Configured Tests","labelTextSize":"0.875rem","rightColumn":29,"textAlign":"LEFT","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"refresh_btn","onClick":"{{Configured_tests_data.run()}}","buttonColor":"#03B365","dynamicPropertyPathList":[{"key":"borderRadius"}],"topRow":4,"bottomRow":8,"parentRowSpace":10,"type":"ICON_BUTTON_WIDGET","parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":62,"dynamicBindingPathList":[],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":64,"iconName":"refresh","widgetId":"xp5u9a9nzq","isVisible":"true","version":1,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"9999px","buttonVariant":"TERTIARY"},{"boxShadow":"none","widgetName":"col_select","isFilterable":true,"dynamicPropertyPathList":[{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":4,"bottomRow":8,"parentRowSpace":10,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"test_id","animateLoading":true,"parentColumnSpace":22.171875,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":5,"dynamicBindingPathList":[{"key":"isVisible"},{"key":"accentColor"}],"options":"[\n\t{\n\t\t\"label\": \"test_id\",\n\t\t\"value\": \"test_id\"\n\t},\n\t{\n\t\t\"label\": \"description\",\n\t\t\"value\": \"description\"\n\t},\n\t{\n\t\t\"label\": \"test_activated\",\n\t\t\"value\": \"test_activated\"\n\t}\n]","placeholderText":"Select option","isDisabled":false,"key":"un5y91u42x","labelTextSize":"0.875rem","isRequired":false,"rightColumn":18,"widgetId":"kqo2g4nu86","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"{{Configured_tests_data.data.length > 0}}","version":1,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","onOptionChange":"{{Configured_tests_data.run()}}"},{"boxShadow":"none","widgetName":"order_select","isFilterable":true,"dynamicPropertyPathList":[{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":4,"bottomRow":8,"parentRowSpace":10,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"ASC","animateLoading":true,"parentColumnSpace":22.171875,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":18,"dynamicBindingPathList":[{"key":"isVisible"},{"key":"accentColor"}],"options":"[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]","placeholderText":"Select option","isDisabled":false,"key":"un5y91u42x","labelTextSize":"0.875rem","isRequired":false,"rightColumn":27,"widgetId":"abax6hf704","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"{{Configured_tests_data.data.length > 0}}","version":1,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","onOptionChange":"{{Configured_tests_data.run()}}"},{"boxShadow":"none","widgetName":"Bulk_update_Test_Activated","onClick":"{{showModal('Activate_Tests_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":4,"bottomRow":8,"tooltip":"{{!JSBulkUpdateDelete.allowUpdate() ? 'First select the tests you want to update':''}}","parentRowSpace":10,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":29,"dynamicBindingPathList":[{"key":"isDisabled"},{"key":"tooltip"}],"text":"Activate/Deactivate tests","isDisabled":"{{!JSBulkUpdateDelete.allowUpdate()}}","key":"2ob5jed9vo","rightColumn":40,"isDefaultClickDisabled":true,"widgetId":"7puon64f02","isVisible":true,"recaptchaType":"V3","version":1,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"}]}]},{"boxShadow":"none","widgetName":"Delete_Tests_Modal","dynamicPropertyPathList":[{"key":"onClose"}],"topRow":13,"bottomRow":37,"parentRowSpace":10,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onClose"}],"leftColumn":21,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Canvas3","topRow":0,"bottomRow":230,"parentRowSpace":1,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":240,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Text12Copy","topRow":12,"bottomRow":16,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":6.875,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1,"dynamicBindingPathList":[],"text":"Warning: This will also delete any related test results","labelTextSize":"0.875rem","rightColumn":63,"textAlign":"LEFT","widgetId":"fixqpc5ejk","isVisible":"true","fontStyle":"ITALIC","textColor":"#231F20","version":1,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"Alert_text","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":1,"bottomRow":5,"type":"TEXT_WIDGET","dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1,"dynamicBindingPathList":[],"text":"Delete Tests","labelTextSize":"0.875rem","rightColumn":41,"textAlign":"LEFT","widgetId":"35yoxo4oec","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button1","onClick":"{{closeModal('Delete_Tests_Modal')}}","dynamicPropertyPathList":[],"buttonColor":"#03B365","topRow":17,"bottomRow":21,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34,"dynamicBindingPathList":[],"text":"Cancel","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":46,"isDefaultClickDisabled":true,"widgetId":"lryg8kw537","isVisible":"true","version":1,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","buttonVariant":"PRIMARY"},{"boxShadow":"none","widgetName":"Delete_Button","onClick":"{{JSBulkUpdateDelete.bulkDelete();resetWidget('configured_tests')}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#F22B2B","topRow":17,"bottomRow":21,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":48,"dynamicBindingPathList":[],"text":"Confirm","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":64,"isDefaultClickDisabled":true,"widgetId":"qq02lh7ust","isVisible":"true","version":1,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","buttonVariant":"PRIMARY"},{"boxShadow":"none","widgetName":"Text12","topRow":8,"bottomRow":12,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":6.875,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1,"dynamicBindingPathList":[],"text":"Are you sure you want to delete selected tests?","labelTextSize":"0.875rem","rightColumn":63,"textAlign":"LEFT","widgetId":"48uac29g6e","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","isVisible":"true","version":1,"parentId":"i3whp03wf0","isLoading":false,"borderRadius":"0px"}],"height":240,"labelTextSize":"0.875rem","rightColumn":45,"detachFromLayout":true,"widgetId":"i3whp03wf0","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2,"parentId":"0","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"0px","width":456},{"boxShadow":"none","widgetName":"Add_Test_Modal","dynamicPropertyPathList":[{"key":"onClose"}],"topRow":16,"bottomRow":40,"parentRowSpace":10,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onClose"}],"leftColumn":17,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Canvas4","topRow":0,"bottomRow":1350,"parentRowSpace":1,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":852,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Add_configured_tests_form","backgroundColor":"white","rightColumn":63,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"5sr8herbsh","topRow":4,"bottomRow":133,"parentRowSpace":10,"isVisible":"true","type":"FORM_WIDGET","parentId":"9rhv3ioohq","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas2CopyCopy","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"23cekw8te4","containerStyle":"none","topRow":0,"bottomRow":710,"parentRowSpace":1,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1,"parentId":"5sr8herbsh","minHeight":460,"isLoading":false,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"column_name__add","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"},{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":46,"bottomRow":50,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"isVisible"},{"key":"options"}],"labelPosition":"Left","options":"{{Columns_Dropdown_Add.data}}","placeholderText":"Select value","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"84nba58c4d","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"{{test_type__add.selectedOptionValue !== \"custom_sql\" && test_type__add.selectedOptionValue !== \"possible_duplicate_forms\" && test_type__add.selectedOptionValue !== \"expression_is_true\" && test_type__add.selectedOptionValue !== \"expect_similar_means_across_reporters\" && test_type__add.selectedOptionValue !== undefined }}","version":1,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{storeValue('selectValue','changed',false)}}"},{"boxShadow":"none","widgetName":"test_parameters_add_label","dynamicPropertyPathList":[{"key":"isVisible"}],"topRow":51,"bottomRow":55,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[{"key":"isVisible"}],"text":"Test parameters","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"e7fpxdmbas","isVisible":"{{test_type.selectedOptionValue !== \"unique\" && test_type.selectedOptionValue !== \"not_null\" }}","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_parameters__add","dynamicPropertyPathList":[{"key":"isVisible"},{"key":"isRequired"}],"displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":51,"bottomRow":63,"tooltip":"","parentRowSpace":10,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"isVisible"},{"key":"isRequired"},{"key":"defaultText"}],"labelStyle":"","inputType":"TEXT","placeholderText":"","isDisabled":false,"key":"xsmln3d0zi","validation":"","labelTextSize":"0.875rem","isRequired":"{{\n\ntest_type.selectedOptionValue === \"custom_sql\" ? true : \n\ntest_type.selectedOptionValue === \n\"accepted_values\" ? true : \n\ntest_type.selectedOptionValue === \n\"possible_duplicate_forms\" ? true : \n\ntest_type.selectedOptionValue === \n\"expression_is_true\" ? true : \n\ntest_type.selectedOptionValue === \n\"expect_similar_means_across_reporters\" ? true : \n\ntest_type.selectedOptionValue === \n\"relationships\" ? true : false\n\n}}","rightColumn":63,"widgetId":"0vsmrnpgzx","accentColor":"{{appsmith.theme.colors.primaryColor}}","errorMessage":"Invalid input","isVisible":"{{test_type.selectedOptionValue !== \"unique\" && test_type.selectedOptionValue !== \"not_null\" }}","label":"","version":2,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"regex":"","borderRadius":"0px","iconAlign":"left","defaultText":"{{appsmith.store.test_type !=\"changed\" ? \"\" : \"\"}}"},{"tabId":"","boxShadow":"NONE","widgetName":"buttons__add_label","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3.svg","topRow":63,"bottomRow":69,"parentRowSpace":10,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":0.859375,"leftColumn":0,"children":[{"rightColumn":55,"widgetName":"Canvas7Copy","detachFromLayout":true,"widgetId":"yry0xubm38","containerStyle":"none","bottomRow":60,"topRow":0,"parentRowSpace":1,"isVisible":true,"type":"CANVAS_WIDGET","canExtend":false,"version":1,"parentId":"iekbyiuyrt","props":{"containerStyle":"none","canExtend":false,"detachFromLayout":true,"children":[]},"isLoading":false,"minHeight":4,"renderMode":"CANVAS","parentColumnSpace":1,"leftColumn":0,"children":[{"boxShadow":"none","widgetName":"Button2Copy","onClick":"{{closeModal('Add_Test_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":0.859375,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":47,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"xbq47k8pyb","rightColumn":64,"isDefaultClickDisabled":true,"widgetId":"8od8m0d991","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1,"parentId":"yry0xubm38","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"resetFormOnClick":false,"boxShadow":"none","widgetName":"add_button","onClick":"{{Add_Test.run(() => { Configured_tests_data.run() ;closeModal('Add_Test_Modal')}, () => showAlert('Error while updating resource!','error'))}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"FORM_BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"parentColumnSpace":0.859375,"leftColumn":22.10909090909091,"dynamicBindingPathList":[],"text":"Add Test","labelTextSize":"0.875rem","rightColumn":45.38181818181818,"isDefaultClickDisabled":true,"widgetId":"o9vf33rshp","isVisible":"true","version":1,"recaptchaType":"V3","parentId":"yry0xubm38","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"0px","buttonVariant":"PRIMARY"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"reset_button","onClick":"","dynamicPropertyPathList":[],"buttonColor":"#03B365","topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"FORM_BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"parentColumnSpace":0.859375,"leftColumn":0,"dynamicBindingPathList":[],"text":"Reset","labelTextSize":"0.875rem","rightColumn":20.945454545454545,"isDefaultClickDisabled":true,"widgetId":"04zb7vtzej","isVisible":"true","version":1,"recaptchaType":"V3","parentId":"yry0xubm38","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"0px","buttonVariant":"SECONDARY"}]}],"borderWidth":"0","key":"ax0nu1bkg1","backgroundColor":"#FFFFFF","rightColumn":64,"widgetId":"iekbyiuyrt","containerStyle":"card","isVisible":true,"version":1,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false},{"boxShadow":"none","widgetName":"test_type__add","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":41,"bottomRow":45,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"}],"labelPosition":"Left","options":"{{Testtypes_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"m85yad4rzn","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{resetWidget('test_parameters__add')}}"},{"boxShadow":"none","widgetName":"priority__add","isFilterable":false,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":21,"bottomRow":25,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"}],"labelPosition":"Left","options":"[\n {\"label\":\"1\", \"value\":\"1\"},\n {\"label\":\"2\", \"value\":\"2\"},\n\t {\"label\":\"3\", \"value\":\"3\"},\n\t {\"label\":\"4\", \"value\":\"4\"},\n\t {\"label\":\"5\", \"value\":\"5\"},\n\t {\"label\":\"6\", \"value\":\"6\"},\n {\"label\":\"7\", \"value\":\"7\"},\n\t {\"label\":\"8\", \"value\":\"8\"},\n\t {\"label\":\"9\", \"value\":\"9\"},\n\t {\"label\":\"10\", \"value\":\"10\"}\n\t \n]","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63,"widgetId":"gpyyu1qaqc","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"scenario_id__add","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":16,"bottomRow":20,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"}],"labelPosition":"Left","options":"{{Scenario_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63,"widgetId":"gtlpb903a5","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"column_name__add_label","dynamicPropertyPathList":[{"key":"isVisible"}],"topRow":46,"bottomRow":50,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[{"key":"isVisible"}],"text":"Column name","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"xot49u0zg3","isVisible":"{{test_type__add.selectedOptionValue !== \"custom_sql\" && test_type__add.selectedOptionValue !== \"possible_duplicate_forms\" && test_type__add.selectedOptionValue !== \"expression_is_true\" && test_type__add.selectedOptionValue !== \"expect_similar_means_across_reporters\" && test_type__add.selectedOptionValue !== undefined }}","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_type__add_label","dynamicPropertyPathList":[],"topRow":41,"bottomRow":45,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Test type","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"nuhu3r9aqe","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"entity__add_label","topRow":36,"bottomRow":40,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Entity","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"j8wxd9dp81","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"remediation__add_label","topRow":31,"bottomRow":35,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Remediation","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"u0nzp5rxtm","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"proposed_remediation__add","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":31,"bottomRow":35,"parentRowSpace":10,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"c62ltocpde","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":""},{"boxShadow":"none","widgetName":"impact__add_label","topRow":26,"bottomRow":30,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Impact","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"mws99dmlod","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"impact__add","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":26,"bottomRow":30,"parentRowSpace":10,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"roc5pxt957","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":""},{"boxShadow":"none","widgetName":"priority__add_label","topRow":21,"bottomRow":25,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Priority","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"dct6xo38p4","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description__add_label","topRow":6,"bottomRow":10,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1,"dynamicBindingPathList":[],"text":"Description","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"dzk9gc3sn3","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_activated__add_label","topRow":1,"bottomRow":5,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Test activated?","labelTextSize":"0.875rem","rightColumn":16,"textAlign":"RIGHT","widgetId":"48ss6m9mvr","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"project__add_label","topRow":11,"bottomRow":15,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1,"dynamicBindingPathList":[],"text":"Project","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"4do6b5wc8u","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"scenario__add_label","topRow":16,"bottomRow":20,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Scenario","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"zwj0zk5v5d","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description__add","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":6,"bottomRow":10,"parentRowSpace":10,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[{"key":"onTextChanged"}],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","placeholderText":"Enter a test description","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":true,"onTextChanged":"","rightColumn":63,"widgetId":"g4r8p8rktn","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":""},{"boxShadow":"none","widgetName":"project_id__add","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":11,"bottomRow":15,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"}],"labelPosition":"Left","options":"{{Projects_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63,"widgetId":"nfecm4c4o2","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"entity_id__add","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":36,"bottomRow":40,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"}],"labelPosition":"Left","options":"{{Entities_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"zqsy9kjq09","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{resetWidget('column_name__add'); Columns_Dropdown_Add.run()}}"},{"widgetName":"test_activated__add","dynamicPropertyPathList":[{"key":"defaultCheckedState"}],"displayName":"Checkbox","iconSVG":"/static/media/icon.aaab032b.svg","topRow":1,"bottomRow":5,"parentRowSpace":10,"type":"CHECKBOX_WIDGET","alignWidget":"LEFT","hideCard":false,"animateLoading":true,"parentColumnSpace":8.345703125,"dynamicTriggerPathList":[],"leftColumn":18,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"}],"labelPosition":"Right","isDisabled":false,"key":"ghkmfs0se1","isRequired":false,"rightColumn":25,"widgetId":"9kwfvwqq2b","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":1,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultCheckedState":"true"}]}]},{"widgetName":"title__add","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":8.125,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Add Test","key":"ih9plfos5c","rightColumn":17,"textAlign":"LEFT","widgetId":"aep0d3w9ub","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9rhv3ioohq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.25rem"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","isVisible":"true","version":1,"parentId":"vmorzie6eq","isLoading":false,"borderRadius":"0px"}],"height":852,"labelTextSize":"0.875rem","rightColumn":41,"detachFromLayout":true,"widgetId":"vmorzie6eq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2,"parentId":"0","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"0px","width":662},{"boxShadow":"none","widgetName":"Edit_Test_Modal","isCanvas":true,"dynamicPropertyPathList":[{"key":"onClose"}],"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","topRow":21,"bottomRow":45,"parentRowSpace":10,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":8.173828125,"dynamicTriggerPathList":[{"key":"onClose"}],"leftColumn":38,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas6","displayName":"Canvas","topRow":0,"bottomRow":780,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":782,"parentColumnSpace":1,"leftColumn":0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Edit_configured_tests_formCopy","backgroundColor":"white","rightColumn":63,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"y6ds8uxh4v","topRow":4,"bottomRow":76,"parentRowSpace":10,"isVisible":"{{!!configured_tests.selectedRow.test_id}}","type":"FORM_WIDGET","parentId":"je98hr71pu","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"isVisible"}],"borderRadius":"0px","children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas2Copy","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"9bhffofmqh","containerStyle":"none","topRow":0,"bottomRow":710,"parentRowSpace":1,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1,"parentId":"y6ds8uxh4v","minHeight":460,"isLoading":false,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"test_parameters_label","dynamicPropertyPathList":[{"key":"isVisible"}],"topRow":51,"bottomRow":55,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[{"key":"isVisible"}],"text":"Test parameters","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"f3u4ldeu22","isVisible":"{{test_type.selectedOptionValue !== \"unique\" && test_type.selectedOptionValue !== \"not_null\" }}","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_parameters","dynamicPropertyPathList":[{"key":"isVisible"},{"key":"isRequired"}],"displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":51,"bottomRow":62,"tooltip":"{{\n\ntest_type.selectedOptionValue === \"custom_sql\" ? \"Example:\\n\\nSELECT\\n id,\\n field1,\\n field2,\\n 'table_A' as primary_table,\\n 'id' as primary_table_id_field\\nFROM\\n table_A\\nWHERE\\n field1 > 1000\" : \n\ntest_type.selectedOptionValue === \n\"accepted_values\" ? \"Example:\\n\\nvalues: ['oral mini-pill (progestogen)', 'male condom', 'female sterilization', 'iud', 'oral combination pill', 'implants', 'injectible']\": \n\ntest_type.selectedOptionValue === \n\"possible_duplicate_forms\" ? \"Example:\\n\\ntable_specific_patient_uuid: patient_id| table_specific_uuid: uuid| table_specific_period: day\": \n\ntest_type.selectedOptionValue === \n\"expression_is_true\" ? \"Example:\\n\\nname: \\\"t_under_24_months_wrong_dosage\\\"| expression: \\\"malaria_act_dosage is not null\\\"| condition: \\\"(patient_age_in_months<24) and (malaria_give_act is not null)\\\"\": \n\ntest_type.selectedOptionValue === \n\"expect_similar_means_across_reporters\" ? \"Example:\\n\\n{\\\"key\\\": \\\"reported_by\\\",\\\"quantity\\\": \\\"child_temperature_pre_chw\\\",\\\"form_name\\\": \\\"dot_model__iccmview_assessment\\\",\\\"id_column\\\": \\\"reported_by\\\"}\": \n\ntest_type.selectedOptionValue === \n\"relationships\" ? \"Example:\\n\\nname: missed_anc_visit_followup| to: ref('dot_model__ancview_pregnancy_visit')| field: pregnancy_uuid\": \"\"\n\n}}\n\n","parentRowSpace":10,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"},{"key":"accentColor"},{"key":"isVisible"},{"key":"placeholderText"},{"key":"isRequired"},{"key":"tooltip"}],"labelStyle":"","inputType":"TEXT","placeholderText":"{{\n\ntest_type.selectedOptionValue === \"custom_sql\" ? \"Example:\\n\\nSELECT\\n id,\\n field1,\\n field2,\\n 'table_A' as primary_table,\\n 'id' as primary_table_id_field\\nFROM\\n table_A\\nWHERE\\n field1 > 1000\" : \n\ntest_type.selectedOptionValue === \n\"accepted_values\" ? \"Example:\\n\\nvalues: ['oral mini-pill (progestogen)', 'male condom', 'female sterilization', 'iud', 'oral combination pill', 'implants', 'injectible']\": \n\ntest_type.selectedOptionValue === \n\"possible_duplicate_forms\" ? \"Example:\\n\\ntable_specific_patient_uuid: patient_id| table_specific_uuid: uuid| table_specific_period: day\": \n\ntest_type.selectedOptionValue === \n\"expression_is_true\" ? \"Example:\\n\\nname: \\\"t_under_24_months_wrong_dosage\\\"| expression: \\\"malaria_act_dosage is not null\\\"| condition: \\\"(patient_age_in_months<24) and (malaria_give_act is not null)\\\"\": \n\ntest_type.selectedOptionValue === \n\"expect_similar_means_across_reporters\" ? \"Example:\\n\\n{\\\"key\\\": \\\"reported_by\\\",\\\"quantity\\\": \\\"child_temperature_pre_chw\\\",\\\"form_name\\\": \\\"dot_model__iccmview_assessment\\\",\\\"id_column\\\": \\\"reported_by\\\"}\": \n\ntest_type.selectedOptionValue === \n\"relationships\" ? \"Example:\\n\\nname: missed_anc_visit_followup| to: ref('dot_model__ancview_pregnancy_visit')| field: pregnancy_uuid\": \"\"\n\n}}\n\n","isDisabled":false,"key":"xsmln3d0zi","validation":"","labelTextSize":"0.875rem","isRequired":"{{\n\ntest_type.selectedOptionValue === \"custom_sql\" ? true : \n\ntest_type.selectedOptionValue === \n\"accepted_values\" ? true : \n\ntest_type.selectedOptionValue === \n\"possible_duplicate_forms\" ? true : \n\ntest_type.selectedOptionValue === \n\"expression_is_true\" ? true : \n\ntest_type.selectedOptionValue === \n\"expect_similar_means_across_reporters\" ? true : \n\ntest_type.selectedOptionValue === \n\"relationships\" ? true : false\n\n}}","rightColumn":63,"widgetId":"950bx92vxg","accentColor":"{{appsmith.theme.colors.primaryColor}}","errorMessage":"Invalid input","isVisible":"{{test_type.selectedOptionValue !== \"unique\" && test_type.selectedOptionValue !== \"not_null\" }}","label":"","version":2,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"regex":"","borderRadius":"0px","iconAlign":"left","defaultText":"{{appsmith.store.test_type!=\"changed\" ? JSON.stringify(configured_tests.selectedRow.test_parameters, null, 1) : \"\"}}"},{"tabId":"","boxShadow":"NONE","widgetName":"Edit_buttons_container","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3.svg","topRow":63,"bottomRow":69,"parentRowSpace":10,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":0.859375,"leftColumn":0,"children":[{"rightColumn":55,"widgetName":"Canvas7","detachFromLayout":true,"widgetId":"fkdkowa341","containerStyle":"none","bottomRow":60,"topRow":0,"parentRowSpace":1,"isVisible":true,"type":"CANVAS_WIDGET","canExtend":false,"version":1,"parentId":"oxsxa7mz6i","props":{"containerStyle":"none","canExtend":false,"detachFromLayout":true,"children":[]},"isLoading":false,"minHeight":4,"renderMode":"CANVAS","parentColumnSpace":1,"leftColumn":0,"children":[{"boxShadow":"none","widgetName":"Edit_Close_button","onClick":"{{closeModal('Edit_Test_Modal'); resetWidget('configured_tests')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":0.859375,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":47,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"xbq47k8pyb","rightColumn":64,"isDefaultClickDisabled":true,"widgetId":"t3tqs11i4e","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1,"parentId":"fkdkowa341","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"resetFormOnClick":false,"boxShadow":"none","widgetName":"Edit_Update_Button","onClick":"{{Edit_Test.run(() => { Configured_tests_data.run() ;closeModal('Edit_Test_Modal');resetWidget('configured_tests')}, () => showAlert('Error while updating resource!','error'))}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"FORM_BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"parentColumnSpace":0.859375,"leftColumn":22,"dynamicBindingPathList":[],"text":"Update","labelTextSize":"0.875rem","rightColumn":45,"isDefaultClickDisabled":true,"widgetId":"wifw3xta4o","isVisible":"true","version":1,"recaptchaType":"V3","parentId":"fkdkowa341","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"0px","buttonVariant":"PRIMARY"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"Edit_Reset_Button","onClick":"","dynamicPropertyPathList":[],"buttonColor":"#03B365","topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"FORM_BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"parentColumnSpace":0.859375,"leftColumn":0,"dynamicBindingPathList":[],"text":"Reset","labelTextSize":"0.875rem","rightColumn":20.945454545454545,"isDefaultClickDisabled":true,"widgetId":"ar84i0p37h","isVisible":"true","version":1,"recaptchaType":"V3","parentId":"fkdkowa341","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"0px","buttonVariant":"SECONDARY"}]}],"borderWidth":"0","key":"ax0nu1bkg1","backgroundColor":"#FFFFFF","rightColumn":64,"widgetId":"oxsxa7mz6i","containerStyle":"card","isVisible":true,"version":1,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false},{"boxShadow":"none","widgetName":"test_type","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":41,"bottomRow":45,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.test_type.toString(); }}","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Testtypes_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"0udd3otgd1","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{storeValue('test_type','changed',false)}}"},{"boxShadow":"none","widgetName":"priority","isFilterable":false,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":21,"bottomRow":25,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.priority.toString()}}","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"[\n {\"label\":\"1\", \"value\":\"1\"},\n {\"label\":\"2\", \"value\":\"2\"},\n\t {\"label\":\"3\", \"value\":\"3\"},\n\t {\"label\":\"4\", \"value\":\"4\"},\n\t {\"label\":\"5\", \"value\":\"5\"},\n\t {\"label\":\"6\", \"value\":\"6\"},\n {\"label\":\"7\", \"value\":\"7\"},\n\t {\"label\":\"8\", \"value\":\"8\"},\n\t {\"label\":\"9\", \"value\":\"9\"},\n\t {\"label\":\"10\", \"value\":\"10\"}\n\t \n]","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63,"widgetId":"fw1j0puk4u","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"scenario_id","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":16,"bottomRow":20,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.scenario_id.toString()}}","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Scenario_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63,"widgetId":"xf227a5k2x","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"column_name_label","dynamicPropertyPathList":[{"key":"isVisible"}],"topRow":46,"bottomRow":50,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[{"key":"isVisible"}],"text":"Column name","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"l3cyqk3sj5","isVisible":"{{test_type.selectedOptionValue !== \"custom_sql\" && test_type.selectedOptionValue !== \"possible_duplicate_forms\" && test_type.selectedOptionValue !== \"expression_is_true\" && test_type.selectedOptionValue !== \"expect_similar_means_across_reporters\" }}","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_type_label","dynamicPropertyPathList":[],"topRow":41,"bottomRow":45,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Test type","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"8126innnli","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"entity_label","topRow":36,"bottomRow":40,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Entity","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"xxne3k95re","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"remediation_label","topRow":31,"bottomRow":35,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Remediation","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"sep9atyjrz","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"proposed_remediation","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":31,"bottomRow":35,"parentRowSpace":10,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"},{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","placeholderText":"","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"64wi2smmqv","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":"{{configured_tests.selectedRow.proposed_remediation.toString()}}"},{"boxShadow":"none","widgetName":"impact_label","topRow":26,"bottomRow":30,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Impact","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"w95qf4wbbh","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"impact","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":26,"bottomRow":30,"parentRowSpace":10,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"},{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"te6aytmoby","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":"{{configured_tests.selectedRow.impact.toString()}}"},{"boxShadow":"none","widgetName":"priority_label","topRow":21,"bottomRow":25,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Priority","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"cdh0l55671","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description_label","topRow":6,"bottomRow":10,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1,"dynamicBindingPathList":[],"text":"Description","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"3feekhrifa","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_activated_label","topRow":1,"bottomRow":5,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Test activated?","labelTextSize":"0.875rem","rightColumn":16,"textAlign":"RIGHT","widgetId":"fhyvhgi2kv","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"project_label","topRow":11,"bottomRow":15,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1,"dynamicBindingPathList":[],"text":"Project","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"5636o88gjy","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"scenario_label","topRow":16,"bottomRow":20,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Scenario","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"427t2nfwg4","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":6,"bottomRow":10,"parentRowSpace":10,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[{"key":"onTextChanged"}],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"},{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":true,"onTextChanged":"","rightColumn":63,"widgetId":"tfjrwsdz52","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":"{{configured_tests.selectedRow.description.toString()}}"},{"boxShadow":"none","widgetName":"project_id","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":11,"bottomRow":15,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.project_id.toString()}}","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Projects_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63,"widgetId":"65r2vzaur8","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"entity_id","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":36,"bottomRow":40,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.entity_id.toString()}}","animateLoading":false,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Entities_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"izx9fzc8pn","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{storeValue('entity_id','changed',false); Columns_dropdown_Edit.run()}}"},{"widgetName":"test_activated","dynamicPropertyPathList":[{"key":"defaultCheckedState"}],"displayName":"Checkbox","iconSVG":"/static/media/icon.aaab032b.svg","topRow":1,"bottomRow":5,"parentRowSpace":10,"type":"CHECKBOX_WIDGET","alignWidget":"LEFT","hideCard":false,"animateLoading":true,"parentColumnSpace":8.345703125,"dynamicTriggerPathList":[],"leftColumn":18,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultCheckedState"}],"labelPosition":"Right","isDisabled":false,"key":"ghkmfs0se1","isRequired":false,"rightColumn":25,"widgetId":"khj2erpxi6","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":1,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultCheckedState":"{{configured_tests.selectedRow.test_activated === '✓' ? true : false}}"},{"boxShadow":"none","widgetName":"column_name__edit","isFilterable":true,"dynamicPropertyPathList":[{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":46,"bottomRow":50,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{appsmith.store.entity_id !=\"changed\" ? configured_tests.selectedRow.column_name : \"\"}}","animateLoading":true,"parentColumnSpace":7.861328125,"dynamicTriggerPathList":[],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"isVisible"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Columns_dropdown_Edit.data}}","placeholderText":"","isDisabled":false,"key":"jd8s2sjaxp","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"l8cxmijtp5","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"{{test_type.selectedOptionValue !== \"custom_sql\" && test_type.selectedOptionValue !== \"possible_duplicate_forms\" && test_type.selectedOptionValue !== \"expression_is_true\" && test_type.selectedOptionValue !== \"expect_similar_means_across_reporters\" }}","version":1,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}]}]},{"boxShadow":"none","widgetName":"close_icon","onClick":"{{closeModal('Edit_Test_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","topRow":0,"bottomRow":4,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":61,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24,"isDisabled":false,"key":"vjnergaobe","rightColumn":64,"iconName":"cross","widgetId":"0prs9d2nih","isVisible":true,"version":1,"parentId":"je98hr71pu","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"title","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":0,"bottomRow":4,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Edit Test","key":"oq4bpr35vs","rightColumn":41,"textAlign":"LEFT","widgetId":"57kk9tsddv","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"je98hr71pu","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"}],"isDisabled":false,"key":"synj2bi74d","rightColumn":196.171875,"detachFromLayout":true,"widgetId":"je98hr71pu","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"c14yy2u4yy","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"kyrf1m3b6j","height":782,"rightColumn":62,"detachFromLayout":true,"widgetId":"c14yy2u4yy","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2,"parentId":"0","renderMode":"CANVAS","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":690},{"boxShadow":"none","widgetName":"Activate_Tests_Modal","isCanvas":true,"dynamicPropertyPathList":[{"key":"onClose"}],"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","topRow":27,"bottomRow":51,"parentRowSpace":10,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClose"}],"leftColumn":19,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas8","displayName":"Canvas","topRow":0,"bottomRow":200,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":190,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton2a","onClick":"{{closeModal('Activate_Tests_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","topRow":0,"bottomRow":4,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":62,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24,"isDisabled":false,"key":"stdiwmax70","rightColumn":64,"iconName":"cross","widgetId":"00dnxpxcjh","isVisible":true,"version":1,"parentId":"a7axo8fac8","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Activate_Tests_Form","isCanvas":true,"displayName":"Form","iconSVG":"/static/media/icon.ea3e08d1.svg","topRow":0,"bottomRow":18,"parentRowSpace":10,"type":"FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":6.9375,"leftColumn":4,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas9","displayName":"Canvas","topRow":0,"bottomRow":390,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":false,"hideCard":true,"minHeight":400,"parentColumnSpace":1,"leftColumn":0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"widgetName":"Text27","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":1,"bottomRow":5,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Test activation","key":"6b5xi9jrls","rightColumn":48,"textAlign":"LEFT","widgetId":"pmvwma9e7p","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"ysscf8xzcv","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.25rem"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"bulk_update_tests","onClick":"{{JSBulkUpdateDelete.bulkUpdate(); resetWidget('configured_tests')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":12,"bottomRow":16,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":2,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Update ","key":"frf7athfec","rightColumn":59,"isDefaultClickDisabled":true,"widgetId":"6hh3v0i7ub","isVisible":true,"recaptchaType":"V3","version":1,"parentId":"ysscf8xzcv","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"PRIMARY"},{"widgetName":"test_activated_bulk","dynamicPropertyPathList":[{"key":"defaultCheckedState"}],"displayName":"Checkbox","iconSVG":"/static/media/icon.aaab032b.svg","topRow":6,"bottomRow":10,"parentRowSpace":10,"type":"CHECKBOX_WIDGET","alignWidget":"LEFT","hideCard":false,"animateLoading":true,"parentColumnSpace":4.890625,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"}],"labelPosition":"Right","isDisabled":false,"key":"e53whmzmfk","isRequired":false,"rightColumn":49,"widgetId":"32vuz2wi90","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"Activate tests","version":1,"parentId":"ysscf8xzcv","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultCheckedState":"true"}],"key":"3czhpgabad","rightColumn":166.5,"detachFromLayout":true,"widgetId":"ysscf8xzcv","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1,"parentId":"o4d52pu954","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"rq5jcq01gh","backgroundColor":"#FFFFFF","rightColumn":62,"widgetId":"o4d52pu954","isVisible":true,"parentId":"a7axo8fac8","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"isDisabled":false,"key":"3czhpgabad","rightColumn":471,"detachFromLayout":true,"widgetId":"a7axo8fac8","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"3yro4n84bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"9j5ksppfl9","height":190,"rightColumn":43,"detachFromLayout":true,"widgetId":"3yro4n84bq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2,"parentId":"0","renderMode":"CANVAS","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":464}]},"layoutOnLoadActions":[[{"id":"Configured tests_Scenario_dropdown","name":"Scenario_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000},{"id":"Configured tests_Projects_dropdown","name":"Projects_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000},{"id":"Configured tests_Entities_dropdown","name":"Entities_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000},{"id":"Configured tests_Testtypes_dropdown","name":"Testtypes_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000}],[{"id":"Configured tests_Configured_tests_data","name":"Configured_tests_data","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["(configured_tests.pageNo - 1) * configured_tests.pageSize","col_select.selectedOptionValue","order_select.selectedOptionValue","configured_tests.searchText || \"\"","configured_tests.pageSize"],"timeoutInMillisecond":10000}]],"new":false}],"userPermissions":[],"isHidden":false},"publishedPage":{"name":"Configured tests","slug":"configured-tests","layouts":[{"id":"Configured tests","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1431,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":1150,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":58,"minHeight":1130,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"labelTextSize":"0.875rem","boxShadow":"none","backgroundColor":"#FFFFFF","widgetName":"Configured_Tests_Container","rightColumn":64,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0,"bottomRow":87,"parentRowSpace":10,"isVisible":"true","type":"CONTAINER_WIDGET","version":1,"parentId":"0","isLoading":false,"parentColumnSpace":19.75,"leftColumn":0,"borderRadius":"0px","children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas1","rightColumn":632,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0,"bottomRow":970,"parentRowSpace":1,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1,"parentId":"mvubsemxfo","minHeight":870,"isLoading":false,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"Add_Test_Button","onClick":"{{resetWidget('Add_configured_tests_form');\nshowModal('Add_Test_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"},{"key":"onClick"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":4,"bottomRow":8,"parentRowSpace":10,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":51,"dynamicBindingPathList":[],"text":"Add test","isDisabled":"","key":"2ob5jed9vo","rightColumn":62,"isDefaultClickDisabled":true,"widgetId":"evkc3u31vk","isVisible":true,"recaptchaType":"V3","version":1,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"none","widgetName":"Bulk_Delete_Button","onClick":"{{showModal('Delete_Tests_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":4,"bottomRow":8,"tooltip":"{{!JSBulkUpdateDelete.allowUpdate() ? 'First select the tests you want to delete':''}}","parentRowSpace":10,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":40,"dynamicBindingPathList":[{"key":"isDisabled"},{"key":"tooltip"}],"text":"Delete tests","isDisabled":"{{!JSBulkUpdateDelete.allowUpdate()}}","key":"2ob5jed9vo","rightColumn":51,"isDefaultClickDisabled":true,"widgetId":"m8gxn5vx3a","isVisible":true,"recaptchaType":"V3","version":1,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"none","multiRowSelection":true,"widgetName":"configured_tests","columnOrder":["customColumn2","test_activated","project_id","description","priority","entity_name","test_type","column_name","test_parameters","scenario_id","impact","proposed_remediation","entity_id","column_description","test_id","date_added","date_modified","last_updated_by"],"dynamicPropertyPathList":[{"key":"onPageChange"},{"key":"onRowSelected"},{"key":"primaryColumns.customColumn2.onClick"}],"isVisibleDownload":true,"topRow":8,"bottomRow":95,"parentRowSpace":10,"onPageChange":"{{Configured_tests_data.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"-1","parentColumnSpace":1,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"onSearchTextChanged"},{"key":"primaryColumns.customColumn2.onClick"},{"key":"onRowSelected"}],"dynamicBindingPathList":[{"key":"tableData"},{"key":"accentColor"},{"key":"primaryColumns.test_activated.computedValue"},{"key":"primaryColumns.project_id.computedValue"},{"key":"primaryColumns.test_id.computedValue"},{"key":"primaryColumns.scenario_id.computedValue"},{"key":"primaryColumns.priority.computedValue"},{"key":"primaryColumns.description.computedValue"},{"key":"primaryColumns.impact.computedValue"},{"key":"primaryColumns.proposed_remediation.computedValue"},{"key":"primaryColumns.entity_id.computedValue"},{"key":"primaryColumns.test_type.computedValue"},{"key":"primaryColumns.column_name.computedValue"},{"key":"primaryColumns.column_description.computedValue"},{"key":"primaryColumns.test_parameters.computedValue"},{"key":"primaryColumns.date_added.computedValue"},{"key":"primaryColumns.date_modified.computedValue"},{"key":"primaryColumns.last_updated_by.computedValue"},{"key":"derivedColumns.customColumn2.menuColor"},{"key":"primaryColumns.customColumn2.menuColor"},{"key":"derivedColumns.customColumn2.borderRadius"},{"key":"derivedColumns.customColumn2.boxShadow"},{"key":"derivedColumns.customColumn2.buttonColor"},{"key":"primaryColumns.customColumn2.buttonColor"},{"key":"derivedColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.entity_name.computedValue"}],"leftColumn":0,"primaryColumns":{"test_activated":{"index":0,"width":150,"id":"test_activated","horizontalAlignment":"CENTER","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_activated","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_activated ? '✓' : ''))}}","cellBackground":""},"project_id":{"index":1,"width":150,"id":"project_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"project_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.project_id))}}","cellBackground":""},"test_id":{"index":2,"width":150,"id":"test_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_id))}}","cellBackground":""},"scenario_id":{"index":3,"width":150,"id":"scenario_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"scenario_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.scenario_id))}}","cellBackground":""},"priority":{"index":4,"width":150,"id":"priority","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"priority","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.priority))}}","cellBackground":""},"description":{"index":5,"width":150,"id":"description","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"description","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.description))}}","cellBackground":""},"impact":{"index":6,"width":150,"id":"impact","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"impact","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.impact))}}","cellBackground":""},"proposed_remediation":{"index":7,"width":150,"id":"proposed_remediation","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"proposed_remediation","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.proposed_remediation))}}","cellBackground":""},"entity_id":{"index":8,"width":150,"id":"entity_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.entity_id))}}","cellBackground":""},"test_type":{"index":9,"width":150,"id":"test_type","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_type","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_type))}}","cellBackground":""},"column_name":{"index":10,"width":150,"id":"column_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"column_name","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.column_name))}}","cellBackground":""},"column_description":{"index":11,"width":150,"id":"column_description","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"column_description","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.column_description))}}","cellBackground":""},"test_parameters":{"index":12,"width":150,"id":"test_parameters","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_parameters","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_parameters))}}","cellBackground":""},"date_added":{"index":13,"width":150,"id":"date_added","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"date_added","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.date_added))}}","cellBackground":""},"date_modified":{"index":14,"width":150,"id":"date_modified","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"date_modified","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.date_modified))}}","cellBackground":""},"last_updated_by":{"index":15,"width":150,"id":"last_updated_by","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"last_updated_by","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.last_updated_by))}}","cellBackground":""},"customColumn2":{"index":17,"width":150,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","menuColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","borderRadius":"0px","boxShadow":"none","iconName":"","onClick":"{{storeValue(\"test_type\",\"original\", false); storeValue(\"entity_id\",\"original\", false); Columns_dropdown_Edit.run(); showModal('Edit_Test_Modal')}}","buttonColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","buttonLabel":"{{configured_tests.sanitizedTableData.map((currentRow) => ( 'Edit'))}}"},"entity_name":{"index":16,"width":150,"id":"entity_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_name","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.entity_name))}}","cellBackground":""}},"delimiter":",","onRowSelected":"","derivedColumns":{"customColumn2":{"index":17,"width":150,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","menuColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","borderRadius":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","boxShadow":"{{configured_tests.sanitizedTableData.map((currentRow) => ( 'none'))}}","iconName":"edit","onClick":"{{showModal('Edit_Test_Modal')}}","buttonColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","buttonLabel":"{{configured_tests.sanitizedTableData.map((currentRow) => ( 'Edit'))}}"}},"labelTextSize":"0.875rem","rightColumn":64,"textSize":"0.875rem","widgetId":"jabdu9f16g","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisibleFilters":true,"tableData":"{{Configured_tests_data.data}}","isVisible":"true","label":"Data","searchKey":"","version":3,"parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"isLoading":false,"isVisibleCompactMode":true,"onSearchTextChanged":"{{Configured_tests_data.run()}}","horizontalAlignment":"LEFT","isVisibleSearch":true,"childStylesheet":{"button":{"buttonColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"menuButton":{"menuColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"iconButton":{"menuColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"}},"borderRadius":"0.375rem","isVisiblePagination":true,"primaryColumnId":"test_id","verticalAlignment":"CENTER","columnSizeMap":{"task":245,"deliveryAddress":170,"step":62,"id":228,"status":75,"customColumn2":80,"customColumn1":83,"description":301,"priority":77,"entity_name":213,"project_id":102}},{"boxShadow":"none","widgetName":"order_by_label","topRow":4,"bottomRow":8,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":19.75,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Order By :","labelTextSize":"0.875rem","rightColumn":3,"textAlign":"LEFT","widgetId":"l8pgl90klz","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"title__main","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Configured Tests","labelTextSize":"0.875rem","rightColumn":29,"textAlign":"LEFT","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"refresh_btn","onClick":"{{Configured_tests_data.run()}}","buttonColor":"#03B365","dynamicPropertyPathList":[{"key":"borderRadius"}],"topRow":4,"bottomRow":8,"parentRowSpace":10,"type":"ICON_BUTTON_WIDGET","parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":62,"dynamicBindingPathList":[],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":64,"iconName":"refresh","widgetId":"xp5u9a9nzq","isVisible":"true","version":1,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"9999px","buttonVariant":"TERTIARY"},{"boxShadow":"none","widgetName":"col_select","isFilterable":true,"dynamicPropertyPathList":[{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":4,"bottomRow":8,"parentRowSpace":10,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"test_id","animateLoading":true,"parentColumnSpace":22.171875,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":3,"dynamicBindingPathList":[{"key":"isVisible"},{"key":"accentColor"}],"options":"[\n\t{\n\t\t\"label\": \"test_id\",\n\t\t\"value\": \"test_id\"\n\t},\n\t{\n\t\t\"label\": \"description\",\n\t\t\"value\": \"description\"\n\t},\n\t{\n\t\t\"label\": \"test_activated\",\n\t\t\"value\": \"test_activated\"\n\t}\n]","placeholderText":"Select option","isDisabled":false,"key":"un5y91u42x","labelTextSize":"0.875rem","isRequired":false,"rightColumn":16,"widgetId":"kqo2g4nu86","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"{{Configured_tests_data.data.length > 0}}","version":1,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","onOptionChange":"{{Configured_tests_data.run()}}"},{"boxShadow":"none","widgetName":"order_select","isFilterable":true,"dynamicPropertyPathList":[{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":4,"bottomRow":8,"parentRowSpace":10,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"ASC","animateLoading":true,"parentColumnSpace":22.171875,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":16,"dynamicBindingPathList":[{"key":"isVisible"},{"key":"accentColor"}],"options":"[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]","placeholderText":"Select option","isDisabled":false,"key":"un5y91u42x","labelTextSize":"0.875rem","isRequired":false,"rightColumn":25,"widgetId":"abax6hf704","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"{{Configured_tests_data.data.length > 0}}","version":1,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","onOptionChange":"{{Configured_tests_data.run()}}"},{"boxShadow":"none","widgetName":"Bulk_update_Test_Activated","onClick":"{{showModal('Activate_Tests_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":4,"bottomRow":8,"tooltip":"{{!JSBulkUpdateDelete.allowUpdate() ? 'First select the tests you want to update':''}}","parentRowSpace":10,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":29,"dynamicBindingPathList":[{"key":"isDisabled"},{"key":"tooltip"}],"text":"Activate/Deactivate tests","isDisabled":"{{!JSBulkUpdateDelete.allowUpdate()}}","key":"2ob5jed9vo","rightColumn":40,"isDefaultClickDisabled":true,"widgetId":"7puon64f02","isVisible":true,"recaptchaType":"V3","version":1,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"}]}]},{"boxShadow":"none","widgetName":"Delete_Tests_Modal","topRow":13,"bottomRow":37,"parentRowSpace":10,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Canvas3","topRow":0,"bottomRow":230,"parentRowSpace":1,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":240,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Text12Copy","topRow":12,"bottomRow":16,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":6.875,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1,"dynamicBindingPathList":[],"text":"Warning: This will also delete any related test results","labelTextSize":"0.875rem","rightColumn":63,"textAlign":"LEFT","widgetId":"fixqpc5ejk","isVisible":"true","fontStyle":"ITALIC","textColor":"#231F20","version":1,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"Alert_text","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":1,"bottomRow":5,"type":"TEXT_WIDGET","dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1,"dynamicBindingPathList":[],"text":"Delete Tests","labelTextSize":"0.875rem","rightColumn":41,"textAlign":"LEFT","widgetId":"35yoxo4oec","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button1","onClick":"{{closeModal('Delete_Tests_Modal')}}","dynamicPropertyPathList":[],"buttonColor":"#03B365","topRow":17,"bottomRow":21,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34,"dynamicBindingPathList":[],"text":"Cancel","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":46,"isDefaultClickDisabled":true,"widgetId":"lryg8kw537","isVisible":"true","version":1,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","buttonVariant":"PRIMARY"},{"boxShadow":"none","widgetName":"Delete_Button","onClick":"{{JSBulkUpdateDelete.bulkDelete()}}","dynamicPropertyPathList":[],"buttonColor":"#F22B2B","topRow":17,"bottomRow":21,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":48,"dynamicBindingPathList":[],"text":"Confirm","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":64,"isDefaultClickDisabled":true,"widgetId":"qq02lh7ust","isVisible":"true","version":1,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","buttonVariant":"PRIMARY"},{"boxShadow":"none","widgetName":"Text12","topRow":8,"bottomRow":12,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":6.875,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1,"dynamicBindingPathList":[],"text":"Are you sure you want to delete selected tests?","labelTextSize":"0.875rem","rightColumn":63,"textAlign":"LEFT","widgetId":"48uac29g6e","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","isVisible":"true","version":1,"parentId":"i3whp03wf0","isLoading":false,"borderRadius":"0px"}],"height":240,"labelTextSize":"0.875rem","rightColumn":45,"detachFromLayout":true,"widgetId":"i3whp03wf0","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2,"parentId":"0","isLoading":false,"borderRadius":"0px","width":456},{"boxShadow":"none","widgetName":"Add_Test_Modal","topRow":16,"bottomRow":40,"parentRowSpace":10,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Canvas4","topRow":0,"bottomRow":1350,"parentRowSpace":1,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":852,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Add_configured_tests_form","backgroundColor":"white","rightColumn":63,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"5sr8herbsh","topRow":4,"bottomRow":133,"parentRowSpace":10,"isVisible":"true","type":"FORM_WIDGET","parentId":"9rhv3ioohq","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas2CopyCopy","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"23cekw8te4","containerStyle":"none","topRow":0,"bottomRow":710,"parentRowSpace":1,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1,"parentId":"5sr8herbsh","minHeight":460,"isLoading":false,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"column_name__add","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"},{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":46,"bottomRow":50,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"isVisible"},{"key":"options"}],"labelPosition":"Left","options":"{{Columns_Dropdown_Add.data}}","placeholderText":"Select value","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"84nba58c4d","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"{{test_type__add.selectedOptionValue !== \"custom_sql\" && test_type__add.selectedOptionValue !== \"possible_duplicate_forms\" && test_type__add.selectedOptionValue !== \"expression_is_true\" && test_type__add.selectedOptionValue !== \"expect_similar_means_across_reporters\" && test_type__add.selectedOptionValue !== undefined }}","version":1,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{storeValue('selectValue','changed',false)}}"},{"boxShadow":"none","widgetName":"test_parameters_add_label","dynamicPropertyPathList":[{"key":"isVisible"}],"topRow":51,"bottomRow":55,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[{"key":"isVisible"}],"text":"Test parameters","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"e7fpxdmbas","isVisible":"{{test_type.selectedOptionValue !== \"unique\" && test_type.selectedOptionValue !== \"not_null\" }}","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_parameters__add","dynamicPropertyPathList":[{"key":"isVisible"},{"key":"isRequired"}],"displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":51,"bottomRow":63,"tooltip":"{{\n\ntest_type.selectedOptionValue === \"custom_sql\" ? \"Example:\\n\\nSELECT\\n id,\\n field1,\\n field2,\\n 'table_A' as primary_table,\\n 'id' as primary_table_id_field\\nFROM\\n table_A\\nWHERE\\n field1 > 1000\" : \n\ntest_type.selectedOptionValue === \n\"accepted_values\" ? \"Example:\\n\\nvalues: ['oral mini-pill (progestogen)', 'male condom', 'female sterilization', 'iud', 'oral combination pill', 'implants', 'injectible']\": \n\ntest_type.selectedOptionValue === \n\"possible_duplicate_forms\" ? \"Example:\\n\\ntable_specific_patient_uuid: patient_id| table_specific_uuid: uuid| table_specific_period: day\": \n\ntest_type.selectedOptionValue === \n\"expression_is_true\" ? \"Example:\\n\\nname: \\\"t_under_24_months_wrong_dosage\\\"| expression: \\\"malaria_act_dosage is not null\\\"| condition: \\\"(patient_age_in_months<24) and (malaria_give_act is not null)\\\"\": \n\ntest_type.selectedOptionValue === \n\"expect_similar_means_across_reporters\" ? \"Example:\\n\\n{\\\"key\\\": \\\"reported_by\\\",\\\"quantity\\\": \\\"child_temperature_pre_chw\\\",\\\"form_name\\\": \\\"dot_model__iccmview_assessment\\\",\\\"id_column\\\": \\\"reported_by\\\"}\": \n\ntest_type.selectedOptionValue === \n\"relationships\" ? \"Example:\\n\\nname: missed_anc_visit_followup| to: ref('dot_model__ancview_pregnancy_visit')| field: pregnancy_uuid\": \"\"\n\n}}\n\n","parentRowSpace":10,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"isVisible"},{"key":"placeholderText"},{"key":"validation"},{"key":"isRequired"},{"key":"tooltip"},{"key":"defaultText"}],"labelStyle":"","inputType":"TEXT","placeholderText":"{{\n\ntest_type.selectedOptionValue === \"custom_sql\" ? \"Example:\\n\\nSELECT\\n id,\\n field1,\\n field2,\\n 'table_A' as primary_table,\\n 'id' as primary_table_id_field\\nFROM\\n table_A\\nWHERE\\n field1 > 1000\" : \n\ntest_type.selectedOptionValue === \n\"accepted_values\" ? \"Example:\\n\\nvalues: ['oral mini-pill (progestogen)', 'male condom', 'female sterilization', 'iud', 'oral combination pill', 'implants', 'injectible']\": \n\ntest_type.selectedOptionValue === \n\"possible_duplicate_forms\" ? \"Example:\\n\\ntable_specific_patient_uuid: patient_id| table_specific_uuid: uuid| table_specific_period: day\": \n\ntest_type.selectedOptionValue === \n\"expression_is_true\" ? \"Example:\\n\\nname: \\\"t_under_24_months_wrong_dosage\\\"| expression: \\\"malaria_act_dosage is not null\\\"| condition: \\\"(patient_age_in_months<24) and (malaria_give_act is not null)\\\"\": \n\ntest_type.selectedOptionValue === \n\"expect_similar_means_across_reporters\" ? \"Example:\\n\\n{\\\"key\\\": \\\"reported_by\\\",\\\"quantity\\\": \\\"child_temperature_pre_chw\\\",\\\"form_name\\\": \\\"dot_model__iccmview_assessment\\\",\\\"id_column\\\": \\\"reported_by\\\"}\": \n\ntest_type.selectedOptionValue === \n\"relationships\" ? \"Example:\\n\\nname: missed_anc_visit_followup| to: ref('dot_model__ancview_pregnancy_visit')| field: pregnancy_uuid\": \"\"\n\n}}\n\n","isDisabled":false,"key":"xsmln3d0zi","validation":"{{\n\ntest_type.selectedOptionValue === \"custom_sql\" & test_parameters.text.match(/\\w/) ? true : \n\ntest_type.selectedOptionValue === \n\"accepted_values\" & test_parameters.text.match(/^values:\\s?\\[.*\\]/) ? true : \n\ntest_type.selectedOptionValue === \n\"possible_duplicate_forms\" & test_parameters.text.match(/table_specific_.*?:.*?\\|\\s?table_specific_.*?:.*?\\|\\s?table_specific_period:/) ? true : \n\ntest_type.selectedOptionValue === \n\"expression_is_true\" & test_parameters.text.match(/^name:\\s?\".*?\"\\|\\s?expression:\\s?\".*?\"\\|\\s?condition:\\s?\"/)? true : \n\ntest_type.selectedOptionValue === \n\"expect_similar_means_across_reporters\" & test_parameters.text.match(/^\\{\"key\":\\s?\".*?\",\".*?\":\\s?\".*?\",\"form_name\":\\s?\".*?\",\"id_column\":\\s?\".*?\"\\}/) ? true : \n\ntest_type.selectedOptionValue === \n\"relationships\" & test_parameters.text.match(/^name:.*?\\|\\s?to:\\s?ref\\(.*?\\)\\|\\s?field:/) ? true : false\n\n}}","labelTextSize":"0.875rem","isRequired":"{{\n\ntest_type.selectedOptionValue === \"custom_sql\" ? true : \n\ntest_type.selectedOptionValue === \n\"accepted_values\" ? true : \n\ntest_type.selectedOptionValue === \n\"possible_duplicate_forms\" ? true : \n\ntest_type.selectedOptionValue === \n\"expression_is_true\" ? true : \n\ntest_type.selectedOptionValue === \n\"expect_similar_means_across_reporters\" ? true : \n\ntest_type.selectedOptionValue === \n\"relationships\" ? true : false\n\n}}","rightColumn":63,"widgetId":"0vsmrnpgzx","accentColor":"{{appsmith.theme.colors.primaryColor}}","errorMessage":"Invalid input","isVisible":"{{test_type.selectedOptionValue !== \"unique\" && test_type.selectedOptionValue !== \"not_null\" }}","label":"","version":2,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"regex":"","borderRadius":"0px","iconAlign":"left","defaultText":"{{appsmith.store.test_type !=\"changed\" ? \"\" : \"\"}}"},{"tabId":"","boxShadow":"NONE","widgetName":"buttons__add_label","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3.svg","topRow":63,"bottomRow":69,"parentRowSpace":10,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":0.859375,"leftColumn":0,"children":[{"rightColumn":55,"widgetName":"Canvas7Copy","detachFromLayout":true,"widgetId":"yry0xubm38","containerStyle":"none","bottomRow":60,"topRow":0,"parentRowSpace":1,"isVisible":true,"type":"CANVAS_WIDGET","canExtend":false,"version":1,"parentId":"iekbyiuyrt","props":{"containerStyle":"none","canExtend":false,"detachFromLayout":true,"children":[]},"isLoading":false,"minHeight":4,"renderMode":"CANVAS","parentColumnSpace":1,"leftColumn":0,"children":[{"boxShadow":"none","widgetName":"Button2Copy","onClick":"{{closeModal('Add_Test_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":0.859375,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":47,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"xbq47k8pyb","rightColumn":64,"isDefaultClickDisabled":true,"widgetId":"8od8m0d991","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1,"parentId":"yry0xubm38","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"resetFormOnClick":false,"boxShadow":"none","widgetName":"add_button","onClick":"{{Add_Test.run(() => { Configured_tests_data.run() ;closeModal('Add_Test_Modal')}, () => showAlert('Error while updating resource!','error'))}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"FORM_BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"parentColumnSpace":0.859375,"leftColumn":22.10909090909091,"dynamicBindingPathList":[],"text":"Add Test","labelTextSize":"0.875rem","rightColumn":45.38181818181818,"isDefaultClickDisabled":true,"widgetId":"o9vf33rshp","isVisible":"true","version":1,"recaptchaType":"V3","parentId":"yry0xubm38","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"0px","buttonVariant":"PRIMARY"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"reset_button","onClick":"","dynamicPropertyPathList":[],"buttonColor":"#03B365","topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"FORM_BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"parentColumnSpace":0.859375,"leftColumn":0,"dynamicBindingPathList":[],"text":"Reset","labelTextSize":"0.875rem","rightColumn":20.945454545454545,"isDefaultClickDisabled":true,"widgetId":"04zb7vtzej","isVisible":"true","version":1,"recaptchaType":"V3","parentId":"yry0xubm38","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"0px","buttonVariant":"SECONDARY"}]}],"borderWidth":"0","key":"ax0nu1bkg1","backgroundColor":"#FFFFFF","rightColumn":64,"widgetId":"iekbyiuyrt","containerStyle":"card","isVisible":true,"version":1,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false},{"boxShadow":"none","widgetName":"test_type__add","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":41,"bottomRow":45,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"}],"labelPosition":"Left","options":"{{Testtypes_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"m85yad4rzn","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{storeValue('selectValue','changed',false)}}"},{"boxShadow":"none","widgetName":"priority__add","isFilterable":false,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":21,"bottomRow":25,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"}],"labelPosition":"Left","options":"[\n {\"label\":\"1\", \"value\":\"1\"},\n {\"label\":\"2\", \"value\":\"2\"},\n\t {\"label\":\"3\", \"value\":\"3\"},\n\t {\"label\":\"4\", \"value\":\"4\"},\n\t {\"label\":\"5\", \"value\":\"5\"},\n\t {\"label\":\"6\", \"value\":\"6\"},\n {\"label\":\"7\", \"value\":\"7\"},\n\t {\"label\":\"8\", \"value\":\"8\"},\n\t {\"label\":\"9\", \"value\":\"9\"},\n\t {\"label\":\"10\", \"value\":\"10\"}\n\t \n]","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63,"widgetId":"gpyyu1qaqc","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"scenario_id__add","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":16,"bottomRow":20,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"}],"labelPosition":"Left","options":"{{Scenario_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63,"widgetId":"gtlpb903a5","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"column_name__add_label","dynamicPropertyPathList":[{"key":"isVisible"}],"topRow":46,"bottomRow":50,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[{"key":"isVisible"}],"text":"Column name","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"xot49u0zg3","isVisible":"{{test_type__add.selectedOptionValue !== \"custom_sql\" && test_type__add.selectedOptionValue !== \"possible_duplicate_forms\" && test_type__add.selectedOptionValue !== \"expression_is_true\" && test_type__add.selectedOptionValue !== \"expect_similar_means_across_reporters\" && test_type__add.selectedOptionValue !== undefined }}","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_type__add_label","dynamicPropertyPathList":[],"topRow":41,"bottomRow":45,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Test type","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"nuhu3r9aqe","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"entity__add_label","topRow":36,"bottomRow":40,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Entity","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"j8wxd9dp81","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"remediation__add_label","topRow":31,"bottomRow":35,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Remediation","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"u0nzp5rxtm","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"proposed_remediation__add","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":31,"bottomRow":35,"parentRowSpace":10,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"c62ltocpde","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":""},{"boxShadow":"none","widgetName":"impact__add_label","topRow":26,"bottomRow":30,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Impact","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"mws99dmlod","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"impact__add","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":26,"bottomRow":30,"parentRowSpace":10,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"roc5pxt957","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":""},{"boxShadow":"none","widgetName":"priority__add_label","topRow":21,"bottomRow":25,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Priority","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"dct6xo38p4","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description__add_label","topRow":6,"bottomRow":10,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1,"dynamicBindingPathList":[],"text":"Description","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"dzk9gc3sn3","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_activated__add_label","topRow":1,"bottomRow":5,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Test activated?","labelTextSize":"0.875rem","rightColumn":16,"textAlign":"RIGHT","widgetId":"48ss6m9mvr","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"project__add_label","topRow":11,"bottomRow":15,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1,"dynamicBindingPathList":[],"text":"Project","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"4do6b5wc8u","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"scenario__add_label","topRow":16,"bottomRow":20,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Scenario","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"zwj0zk5v5d","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description__add","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":6,"bottomRow":10,"parentRowSpace":10,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[{"key":"onTextChanged"}],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","placeholderText":"Enter a test description","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":true,"onTextChanged":"","rightColumn":63,"widgetId":"g4r8p8rktn","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":""},{"boxShadow":"none","widgetName":"project_id__add","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":11,"bottomRow":15,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"}],"labelPosition":"Left","options":"{{Projects_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63,"widgetId":"nfecm4c4o2","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"entity_id__add","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":36,"bottomRow":40,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"}],"labelPosition":"Left","options":"{{Entities_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"zqsy9kjq09","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{Columns_Dropdown_Add.run()}}"},{"widgetName":"test_activated__add","dynamicPropertyPathList":[{"key":"defaultCheckedState"}],"displayName":"Checkbox","iconSVG":"/static/media/icon.aaab032b.svg","topRow":1,"bottomRow":5,"parentRowSpace":10,"type":"CHECKBOX_WIDGET","alignWidget":"LEFT","hideCard":false,"animateLoading":true,"parentColumnSpace":8.345703125,"dynamicTriggerPathList":[],"leftColumn":18,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"}],"isDisabled":false,"key":"ghkmfs0se1","isRequired":false,"rightColumn":25,"widgetId":"9kwfvwqq2b","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":1,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultCheckedState":"true"}]}]},{"widgetName":"title__add","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":8.125,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Add Test","key":"ih9plfos5c","rightColumn":17,"textAlign":"LEFT","widgetId":"aep0d3w9ub","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9rhv3ioohq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.25rem"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","isVisible":"true","version":1,"parentId":"vmorzie6eq","isLoading":false,"borderRadius":"0px"}],"height":852,"labelTextSize":"0.875rem","rightColumn":41,"detachFromLayout":true,"widgetId":"vmorzie6eq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2,"parentId":"0","isLoading":false,"borderRadius":"0px","width":662},{"boxShadow":"none","widgetName":"Edit_Test_Modal","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","topRow":21,"bottomRow":45,"parentRowSpace":10,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":8.173828125,"leftColumn":38,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas6","displayName":"Canvas","topRow":0,"bottomRow":780,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":782,"parentColumnSpace":1,"leftColumn":0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Edit_configured_tests_formCopy","backgroundColor":"white","rightColumn":63,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"y6ds8uxh4v","topRow":4,"bottomRow":76,"parentRowSpace":10,"isVisible":"{{!!configured_tests.selectedRow.test_id}}","type":"FORM_WIDGET","parentId":"je98hr71pu","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"isVisible"}],"borderRadius":"0px","children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas2Copy","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"9bhffofmqh","containerStyle":"none","topRow":0,"bottomRow":710,"parentRowSpace":1,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1,"parentId":"y6ds8uxh4v","minHeight":460,"isLoading":false,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"test_parameters_label","dynamicPropertyPathList":[{"key":"isVisible"}],"topRow":51,"bottomRow":55,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[{"key":"isVisible"}],"text":"Test parameters","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"f3u4ldeu22","isVisible":"{{test_type.selectedOptionValue !== \"unique\" && test_type.selectedOptionValue !== \"not_null\" }}","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_parameters","dynamicPropertyPathList":[{"key":"isVisible"},{"key":"isRequired"}],"displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":51,"bottomRow":62,"tooltip":"{{\n\ntest_type.selectedOptionValue === \"custom_sql\" ? \"Example:\\n\\nSELECT\\n id,\\n field1,\\n field2,\\n 'table_A' as primary_table,\\n 'id' as primary_table_id_field\\nFROM\\n table_A\\nWHERE\\n field1 > 1000\" : \n\ntest_type.selectedOptionValue === \n\"accepted_values\" ? \"Example:\\n\\nvalues: ['oral mini-pill (progestogen)', 'male condom', 'female sterilization', 'iud', 'oral combination pill', 'implants', 'injectible']\": \n\ntest_type.selectedOptionValue === \n\"possible_duplicate_forms\" ? \"Example:\\n\\ntable_specific_patient_uuid: patient_id| table_specific_uuid: uuid| table_specific_period: day\": \n\ntest_type.selectedOptionValue === \n\"expression_is_true\" ? \"Example:\\n\\nname: \\\"t_under_24_months_wrong_dosage\\\"| expression: \\\"malaria_act_dosage is not null\\\"| condition: \\\"(patient_age_in_months<24) and (malaria_give_act is not null)\\\"\": \n\ntest_type.selectedOptionValue === \n\"expect_similar_means_across_reporters\" ? \"Example:\\n\\n{\\\"key\\\": \\\"reported_by\\\",\\\"quantity\\\": \\\"child_temperature_pre_chw\\\",\\\"form_name\\\": \\\"dot_model__iccmview_assessment\\\",\\\"id_column\\\": \\\"reported_by\\\"}\": \n\ntest_type.selectedOptionValue === \n\"relationships\" ? \"Example:\\n\\nname: missed_anc_visit_followup| to: ref('dot_model__ancview_pregnancy_visit')| field: pregnancy_uuid\": \"\"\n\n}}\n\n","parentRowSpace":10,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"},{"key":"accentColor"},{"key":"isVisible"},{"key":"placeholderText"},{"key":"isRequired"},{"key":"tooltip"}],"labelStyle":"","inputType":"TEXT","placeholderText":"{{\n\ntest_type.selectedOptionValue === \"custom_sql\" ? \"Example:\\n\\nSELECT\\n id,\\n field1,\\n field2,\\n 'table_A' as primary_table,\\n 'id' as primary_table_id_field\\nFROM\\n table_A\\nWHERE\\n field1 > 1000\" : \n\ntest_type.selectedOptionValue === \n\"accepted_values\" ? \"Example:\\n\\nvalues: ['oral mini-pill (progestogen)', 'male condom', 'female sterilization', 'iud', 'oral combination pill', 'implants', 'injectible']\": \n\ntest_type.selectedOptionValue === \n\"possible_duplicate_forms\" ? \"Example:\\n\\ntable_specific_patient_uuid: patient_id| table_specific_uuid: uuid| table_specific_period: day\": \n\ntest_type.selectedOptionValue === \n\"expression_is_true\" ? \"Example:\\n\\nname: \\\"t_under_24_months_wrong_dosage\\\"| expression: \\\"malaria_act_dosage is not null\\\"| condition: \\\"(patient_age_in_months<24) and (malaria_give_act is not null)\\\"\": \n\ntest_type.selectedOptionValue === \n\"expect_similar_means_across_reporters\" ? \"Example:\\n\\n{\\\"key\\\": \\\"reported_by\\\",\\\"quantity\\\": \\\"child_temperature_pre_chw\\\",\\\"form_name\\\": \\\"dot_model__iccmview_assessment\\\",\\\"id_column\\\": \\\"reported_by\\\"}\": \n\ntest_type.selectedOptionValue === \n\"relationships\" ? \"Example:\\n\\nname: missed_anc_visit_followup| to: ref('dot_model__ancview_pregnancy_visit')| field: pregnancy_uuid\": \"\"\n\n}}\n\n","isDisabled":false,"key":"xsmln3d0zi","validation":"","labelTextSize":"0.875rem","isRequired":"{{\n\ntest_type.selectedOptionValue === \"custom_sql\" ? true : \n\ntest_type.selectedOptionValue === \n\"accepted_values\" ? true : \n\ntest_type.selectedOptionValue === \n\"possible_duplicate_forms\" ? true : \n\ntest_type.selectedOptionValue === \n\"expression_is_true\" ? true : \n\ntest_type.selectedOptionValue === \n\"expect_similar_means_across_reporters\" ? true : \n\ntest_type.selectedOptionValue === \n\"relationships\" ? true : false\n\n}}","rightColumn":63,"widgetId":"950bx92vxg","accentColor":"{{appsmith.theme.colors.primaryColor}}","errorMessage":"Invalid input","isVisible":"{{test_type.selectedOptionValue !== \"unique\" && test_type.selectedOptionValue !== \"not_null\" }}","label":"","version":2,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"regex":"","borderRadius":"0px","iconAlign":"left","defaultText":"{{appsmith.store.test_type!=\"changed\" ? JSON.stringify(configured_tests.selectedRow.test_parameters, null, 1) : \"\"}}"},{"tabId":"","boxShadow":"NONE","widgetName":"Edit_buttons_container","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3.svg","topRow":63,"bottomRow":69,"parentRowSpace":10,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":0.859375,"leftColumn":0,"children":[{"rightColumn":55,"widgetName":"Canvas7","detachFromLayout":true,"widgetId":"fkdkowa341","containerStyle":"none","bottomRow":60,"topRow":0,"parentRowSpace":1,"isVisible":true,"type":"CANVAS_WIDGET","canExtend":false,"version":1,"parentId":"oxsxa7mz6i","props":{"containerStyle":"none","canExtend":false,"detachFromLayout":true,"children":[]},"isLoading":false,"minHeight":4,"renderMode":"CANVAS","parentColumnSpace":1,"leftColumn":0,"children":[{"boxShadow":"none","widgetName":"Edit_Close_button","onClick":"{{closeModal('Edit_Test_Modal'); resetWidget(configured_tests)}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":0.859375,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":47,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"xbq47k8pyb","rightColumn":64,"isDefaultClickDisabled":true,"widgetId":"t3tqs11i4e","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1,"parentId":"fkdkowa341","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"resetFormOnClick":false,"boxShadow":"none","widgetName":"Edit_Update_Button","onClick":"{{Edit_Test.run(() => { Configured_tests_data.run() ;closeModal('Edit_Test_Modal'); resetWidget(configured_tests)}, () => showAlert('Error while updating resource!','error'))}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"FORM_BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"parentColumnSpace":0.859375,"leftColumn":22,"dynamicBindingPathList":[],"text":"Update","labelTextSize":"0.875rem","rightColumn":45,"isDefaultClickDisabled":true,"widgetId":"wifw3xta4o","isVisible":"true","version":1,"recaptchaType":"V3","parentId":"fkdkowa341","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"0px","buttonVariant":"PRIMARY"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"Edit_Reset_Button","onClick":"","dynamicPropertyPathList":[],"buttonColor":"#03B365","topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"FORM_BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"parentColumnSpace":0.859375,"leftColumn":0,"dynamicBindingPathList":[],"text":"Reset","labelTextSize":"0.875rem","rightColumn":20.945454545454545,"isDefaultClickDisabled":true,"widgetId":"ar84i0p37h","isVisible":"true","version":1,"recaptchaType":"V3","parentId":"fkdkowa341","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"0px","buttonVariant":"SECONDARY"}]}],"borderWidth":"0","key":"ax0nu1bkg1","backgroundColor":"#FFFFFF","rightColumn":64,"widgetId":"oxsxa7mz6i","containerStyle":"card","isVisible":true,"version":1,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false},{"boxShadow":"none","widgetName":"test_type","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":41,"bottomRow":45,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.test_type.toString(); }}","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Testtypes_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"0udd3otgd1","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{storeValue('test_type','changed',false)}}"},{"boxShadow":"none","widgetName":"priority","isFilterable":false,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":21,"bottomRow":25,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.priority.toString()}}","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"[\n {\"label\":\"1\", \"value\":\"1\"},\n {\"label\":\"2\", \"value\":\"2\"},\n\t {\"label\":\"3\", \"value\":\"3\"},\n\t {\"label\":\"4\", \"value\":\"4\"},\n\t {\"label\":\"5\", \"value\":\"5\"},\n\t {\"label\":\"6\", \"value\":\"6\"},\n {\"label\":\"7\", \"value\":\"7\"},\n\t {\"label\":\"8\", \"value\":\"8\"},\n\t {\"label\":\"9\", \"value\":\"9\"},\n\t {\"label\":\"10\", \"value\":\"10\"}\n\t \n]","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63,"widgetId":"fw1j0puk4u","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"scenario_id","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":16,"bottomRow":20,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.scenario_id.toString()}}","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Scenario_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63,"widgetId":"xf227a5k2x","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"column_name_label","dynamicPropertyPathList":[{"key":"isVisible"}],"topRow":46,"bottomRow":50,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[{"key":"isVisible"}],"text":"Column name","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"l3cyqk3sj5","isVisible":"{{test_type.selectedOptionValue !== \"custom_sql\" && test_type.selectedOptionValue !== \"possible_duplicate_forms\" && test_type.selectedOptionValue !== \"expression_is_true\" && test_type.selectedOptionValue !== \"expect_similar_means_across_reporters\" }}","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_type_label","dynamicPropertyPathList":[],"topRow":41,"bottomRow":45,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Test type","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"8126innnli","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"entity_label","topRow":36,"bottomRow":40,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Entity","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"xxne3k95re","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"remediation_label","topRow":31,"bottomRow":35,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Remediation","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"sep9atyjrz","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"proposed_remediation","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":31,"bottomRow":35,"parentRowSpace":10,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"},{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"64wi2smmqv","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":"{{configured_tests.selectedRow.proposed_remediation.toString()}}"},{"boxShadow":"none","widgetName":"impact_label","topRow":26,"bottomRow":30,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Impact","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"w95qf4wbbh","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"impact","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":26,"bottomRow":30,"parentRowSpace":10,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"},{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"te6aytmoby","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":"{{configured_tests.selectedRow.impact.toString()}}"},{"boxShadow":"none","widgetName":"priority_label","topRow":21,"bottomRow":25,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Priority","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"cdh0l55671","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description_label","topRow":6,"bottomRow":10,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1,"dynamicBindingPathList":[],"text":"Description","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"3feekhrifa","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_activated_label","topRow":1,"bottomRow":5,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Test activated?","labelTextSize":"0.875rem","rightColumn":16,"textAlign":"RIGHT","widgetId":"fhyvhgi2kv","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"project_label","topRow":11,"bottomRow":15,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1,"dynamicBindingPathList":[],"text":"Project","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"5636o88gjy","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"scenario_label","topRow":16,"bottomRow":20,"parentRowSpace":10,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0,"dynamicBindingPathList":[],"text":"Scenario","labelTextSize":"0.875rem","rightColumn":18,"textAlign":"RIGHT","widgetId":"427t2nfwg4","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":6,"bottomRow":10,"parentRowSpace":10,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[{"key":"onTextChanged"}],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"},{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":true,"onTextChanged":"","rightColumn":63,"widgetId":"tfjrwsdz52","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":"{{configured_tests.selectedRow.description.toString()}}"},{"boxShadow":"none","widgetName":"project_id","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":11,"bottomRow":15,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.project_id.toString()}}","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Projects_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63,"widgetId":"65r2vzaur8","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"entity_id","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":36,"bottomRow":40,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.entity_id.toString()}}","animateLoading":false,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Entities_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"izx9fzc8pn","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{storeValue('entity_id','changed',false); Columns_dropdown_Edit.run()}}"},{"widgetName":"test_activated","dynamicPropertyPathList":[{"key":"defaultCheckedState"}],"displayName":"Checkbox","iconSVG":"/static/media/icon.aaab032b.svg","topRow":1,"bottomRow":5,"parentRowSpace":10,"type":"CHECKBOX_WIDGET","alignWidget":"LEFT","hideCard":false,"animateLoading":true,"parentColumnSpace":8.345703125,"dynamicTriggerPathList":[],"leftColumn":18,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultCheckedState"}],"isDisabled":false,"key":"ghkmfs0se1","isRequired":false,"rightColumn":25,"widgetId":"khj2erpxi6","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":1,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultCheckedState":"{{configured_tests.selectedRow.test_activated === '✓' ? true : false}}"},{"boxShadow":"none","widgetName":"column_name__edit","isFilterable":true,"dynamicPropertyPathList":[{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":46,"bottomRow":50,"parentRowSpace":10,"labelWidth":5,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{appsmith.store.entity_id !=\"changed\" ? configured_tests.selectedRow.column_name : \"\"}}","animateLoading":true,"parentColumnSpace":7.861328125,"dynamicTriggerPathList":[],"leftColumn":19,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"isVisible"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Columns_dropdown_Edit.data}}","placeholderText":"Select option","isDisabled":false,"key":"jd8s2sjaxp","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63,"widgetId":"l8cxmijtp5","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"{{test_type.selectedOptionValue !== \"custom_sql\" && test_type.selectedOptionValue !== \"possible_duplicate_forms\" && test_type.selectedOptionValue !== \"expression_is_true\" && test_type.selectedOptionValue !== \"expect_similar_means_across_reporters\" }}","version":1,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}]}]},{"boxShadow":"none","widgetName":"close_icon","onClick":"{{closeModal('Edit_Test_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","topRow":0,"bottomRow":4,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":61,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24,"isDisabled":false,"key":"vjnergaobe","rightColumn":64,"iconName":"cross","widgetId":"0prs9d2nih","isVisible":true,"version":1,"parentId":"je98hr71pu","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"title","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":0,"bottomRow":4,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Edit Test","key":"oq4bpr35vs","rightColumn":41,"textAlign":"LEFT","widgetId":"57kk9tsddv","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"je98hr71pu","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"}],"isDisabled":false,"key":"synj2bi74d","rightColumn":196.171875,"detachFromLayout":true,"widgetId":"je98hr71pu","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"c14yy2u4yy","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"kyrf1m3b6j","height":782,"rightColumn":62,"detachFromLayout":true,"widgetId":"c14yy2u4yy","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":690},{"boxShadow":"none","widgetName":"Activate_Tests_Modal","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","topRow":27,"bottomRow":51,"parentRowSpace":10,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":19.625,"leftColumn":19,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas8","displayName":"Canvas","topRow":0,"bottomRow":200,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":190,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton2a","onClick":"{{closeModal('Activate_Tests_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","topRow":0,"bottomRow":4,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":62,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24,"isDisabled":false,"key":"stdiwmax70","rightColumn":64,"iconName":"cross","widgetId":"00dnxpxcjh","isVisible":true,"version":1,"parentId":"a7axo8fac8","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Activate_Tests_Form","isCanvas":true,"displayName":"Form","iconSVG":"/static/media/icon.ea3e08d1.svg","topRow":0,"bottomRow":18,"parentRowSpace":10,"type":"FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":6.9375,"leftColumn":4,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas9","displayName":"Canvas","topRow":0,"bottomRow":390,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":false,"hideCard":true,"minHeight":400,"parentColumnSpace":1,"leftColumn":0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"widgetName":"Text27","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":1,"bottomRow":5,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Test activation","key":"6b5xi9jrls","rightColumn":48,"textAlign":"LEFT","widgetId":"pmvwma9e7p","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"ysscf8xzcv","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.25rem"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"bulk_update_tests","onClick":"{{JSBulkUpdateDelete.bulkUpdate(); resetWidget('configured_tests')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":12,"bottomRow":16,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":2,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Update ","key":"frf7athfec","rightColumn":59,"isDefaultClickDisabled":true,"widgetId":"6hh3v0i7ub","isVisible":true,"recaptchaType":"V3","version":1,"parentId":"ysscf8xzcv","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"PRIMARY"},{"widgetName":"test_activated_bulk","dynamicPropertyPathList":[{"key":"defaultCheckedState"}],"displayName":"Checkbox","iconSVG":"/static/media/icon.aaab032b.svg","topRow":6,"bottomRow":10,"parentRowSpace":10,"type":"CHECKBOX_WIDGET","alignWidget":"LEFT","hideCard":false,"animateLoading":true,"parentColumnSpace":4.890625,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"}],"isDisabled":false,"key":"e53whmzmfk","isRequired":false,"rightColumn":49,"widgetId":"32vuz2wi90","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"Activate tests","version":1,"parentId":"ysscf8xzcv","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultCheckedState":"true"}],"key":"3czhpgabad","rightColumn":166.5,"detachFromLayout":true,"widgetId":"ysscf8xzcv","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1,"parentId":"o4d52pu954","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"rq5jcq01gh","backgroundColor":"#FFFFFF","rightColumn":62,"widgetId":"o4d52pu954","isVisible":true,"parentId":"a7axo8fac8","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"isDisabled":false,"key":"3czhpgabad","rightColumn":471,"detachFromLayout":true,"widgetId":"a7axo8fac8","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1,"parentId":"3yro4n84bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"9j5ksppfl9","height":190,"rightColumn":43,"detachFromLayout":true,"widgetId":"3yro4n84bq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":464}]},"layoutOnLoadActions":[[{"id":"Configured tests_Entities_dropdown","name":"Entities_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000},{"id":"Configured tests_Testtypes_dropdown","name":"Testtypes_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000},{"id":"Configured tests_Projects_dropdown","name":"Projects_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000},{"id":"Configured tests_Scenario_dropdown","name":"Scenario_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000}],[{"id":"Configured tests_Configured_tests_data","name":"Configured_tests_data","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["(configured_tests.pageNo - 1) * configured_tests.pageSize","col_select.selectedOptionValue","order_select.selectedOptionValue","configured_tests.searchText || \"\"","configured_tests.pageSize"],"timeoutInMillisecond":10000}]],"new":false}],"userPermissions":[],"isHidden":false},"new":true},{"userPermissions":["read:pages","manage:pages"],"gitSyncId":"62928debc18cc05f7bf4919d_629a9ea48a009422ab1df0de","unpublishedPage":{"name":"Configured entities","slug":"configured-entities","layouts":[{"id":"Configured entities","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1224,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":850,"containerStyle":"none","snapRows":85,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":59,"minHeight":860,"parentColumnSpace":1,"dynamicBindingPathList":[],"leftColumn":0,"children":[]},"layoutOnLoadActions":[],"new":false}],"userPermissions":[],"isHidden":false},"publishedPage":{"name":"Configured entities","slug":"configured-entities","layouts":[{"id":"Configured entities","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1224.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":850.0,"containerStyle":"none","snapRows":85.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":58.0,"minHeight":860.0,"parentColumnSpace":1.0,"dynamicBindingPathList":[],"leftColumn":0.0,"children":[]},"layoutOnLoadActions":[],"new":false}],"userPermissions":[],"isHidden":false},"new":true}],"pageOrder":["Configured tests","Configured entities"],"publishedPageOrder":["Configured tests","Configured entities"],"publishedDefaultPageName":"Configured tests","unpublishedDefaultPageName":"Configured tests","actionList":[{"id":"Configured tests_Delete_Test","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e291ee3ca9d4fca99f56e","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Delete_Test","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM dot.\"configured_tests\"\n WHERE \"test_id\" = {{configured_tests.triggeredRow.test_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["configured_tests.triggeredRow.test_id"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Delete_Test"},"publishedAction":{"name":"Delete_Test","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM dot.\"configured_tests\"\n WHERE \"test_id\" = {{configured_tests.triggeredRow.test_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["configured_tests.triggeredRow.test_id"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Delete_Test"},"new":false},{"id":"Configured tests_Configured_tests_data","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e291ee3ca9d4fca99f56f","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Configured_tests_data","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n ct.*,\n ce.entity_name\nFROM \n dot.\"configured_tests\" ct,\n dot.\"configured_entities\" ce\nwhere \n ce.entity_id = ct.entity_id\nAND \"description\" ilike '%{{configured_tests.searchText || \"\"}}%'\nORDER BY \"{{col_select.selectedOptionValue}}\" {{order_select.selectedOptionValue}}\nLIMIT {{configured_tests.pageSize}}\nOFFSET {{(configured_tests.pageNo - 1) * configured_tests.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(configured_tests.pageNo - 1) * configured_tests.pageSize","col_select.selectedOptionValue","order_select.selectedOptionValue","configured_tests.searchText || \"\"","configured_tests.pageSize"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Configured_tests_data"},"publishedAction":{"name":"Configured_tests_data","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n ct.*,\n ce.entity_name\nFROM \n dot.\"configured_tests\" ct,\n dot.\"configured_entities\" ce\nwhere \n ce.entity_id = ct.entity_id\nAND \"description\" ilike '%{{configured_tests.searchText || \"\"}}%'\nORDER BY \"{{col_select.selectedOptionValue}}\" {{order_select.selectedOptionValue}}\nLIMIT {{configured_tests.pageSize}}\nOFFSET {{(configured_tests.pageNo - 1) * configured_tests.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(configured_tests.pageNo - 1) * configured_tests.pageSize","col_select.selectedOptionValue","order_select.selectedOptionValue","configured_tests.searchText || \"\"","configured_tests.pageSize"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Configured_tests_data"},"new":false},{"id":"Configured tests_Edit_Test","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e291ee3ca9d4fca99f570","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Edit_Test","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE dot.\"configured_tests\" SET\n \"test_activated\" = {{test_activated.isChecked}},\n\t\t\"project_id\" = '{{project_id.selectedOptionValue}}',\n\t\t\"scenario_id\" = '{{scenario_id.selectedOptionValue}}',\n\t\t\"priority\" = {{priority.selectedOptionValue}},\n\t\t\"description\" = '{{description.text}}',\n\t\t\"impact\" = '{{impact.text}}',\n\t\t\"proposed_remediation\" = '{{proposed_remediation.text}}',\n\t\t\"entity_id\" = '{{entity_id.selectedOptionValue}}',\n\t\t\"test_type\" = '{{test_type.selectedOptionValue}}',\n\t\t\"column_name\" = '{{column_name__edit.selectedOptionValue}}',\n\t\t\"test_parameters\" = '{{test_parameters.text}}',\n\t\t\"last_updated_by\" = '{{appsmith.user.name}}'\n WHERE \"test_id\" = '{{configured_tests.selectedRow.test_id}}';","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["proposed_remediation.text","test_activated.isChecked","appsmith.user.name","entity_id.selectedOptionValue","configured_tests.selectedRow.test_id","test_type.selectedOptionValue","column_name__edit.selectedOptionValue","priority.selectedOptionValue","test_parameters.text","description.text","impact.text","project_id.selectedOptionValue","scenario_id.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Edit_Test"},"publishedAction":{"name":"Edit_Test","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE dot.\"configured_tests\" SET\n \"test_activated\" = {{test_activated.isChecked}},\n\t\t\"project_id\" = '{{project_id.selectedOptionValue}}',\n\t\t\"scenario_id\" = '{{scenario_id.selectedOptionValue}}',\n\t\t\"priority\" = {{priority.selectedOptionValue}},\n\t\t\"description\" = '{{description.text}}',\n\t\t\"impact\" = '{{impact.text}}',\n\t\t\"proposed_remediation\" = '{{proposed_remediation.text}}',\n\t\t\"entity_id\" = '{{entity_id.selectedOptionValue}}',\n\t\t\"test_type\" = '{{test_type.selectedOptionValue}}',\n\t\t\"column_name\" = '{{column_name__edit.selectedOptionValue}}',\n\t\t\"test_parameters\" = '{{test_parameters.text}}',\n\t\t\"last_updated_by\" = '{{appsmith.user.name}}'\n WHERE \"test_id\" = '{{configured_tests.selectedRow.test_id}}';","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["proposed_remediation.text","test_activated.isChecked","appsmith.user.name","entity_id.selectedOptionValue","configured_tests.selectedRow.test_id","test_type.selectedOptionValue","column_name__edit.selectedOptionValue","priority.selectedOptionValue","test_parameters.text","description.text","impact.text","project_id.selectedOptionValue","scenario_id.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Edit_Test"},"new":false},{"id":"Configured tests_Scenario_dropdown","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e7f4be3ca9d4fca99f5bd","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Scenario_dropdown","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"select CONCAT(cause_sub_category, ' - ', scenario) as \"label\", scenario_id as \"value\" from dot.scenarios;","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Scenario_dropdown"},"publishedAction":{"name":"Scenario_dropdown","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"select CONCAT(cause_sub_category, ' - ', scenario) as \"label\", scenario_id as \"value\" from dot.scenarios;","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Scenario_dropdown"},"new":false},{"id":"Configured tests_Projects_dropdown","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e73cce3ca9d4fca99f5b6","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Projects_dropdown","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"select project_id as \"label\", project_id as \"value\" from dot.projects;","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Projects_dropdown"},"publishedAction":{"name":"Projects_dropdown","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"select project_id as \"label\", project_id as \"value\" from dot.projects;","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Projects_dropdown"},"new":false},{"id":"Configured tests_Add_Test","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e291ee3ca9d4fca99f571","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Add_Test","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO dot.\"configured_tests\" (\n \"test_activated\" ,\n\t\t\"project_id\",\n\t\t\"scenario_id\" ,\n\t\t\"priority\",\n\t\t\"description\" ,\n\t\t\"impact\",\n\t\t\"proposed_remediation\" ,\n\t\t\"entity_id\",\n\t\t\"test_type\" ,\n\t\t\"column_name\" ,\n\t\t\"test_parameters\",\n\t \"last_updated_by\"\n)\nVALUES (\n {{test_activated__add.isChecked}},\n\t\t'{{project_id__add.selectedOptionValue}}',\n\t\t'{{scenario_id__add.selectedOptionValue}}',\n\t\t{{priority__add.selectedOptionValue}},\n\t\t'{{description__add.text}}',\n\t\t'{{impact__add.text}}',\n\t\t'{{proposed_remediation__add.text}}',\n\t\t'{{entity_id__add.selectedOptionValue}}',\n\t\t'{{test_type__add.selectedOptionValue}}',\n\t\t'{{column_name__add.selectedOptionValue}}',\n\t\t'{{test_parameters__add.text}}',\n\t '{{appsmith.user.name}}'\n);\n\n","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["entity_id__add.selectedOptionValue","test_parameters__add.text","appsmith.user.name","project_id__add.selectedOptionValue","test_activated__add.isChecked","priority__add.selectedOptionValue","scenario_id__add.selectedOptionValue","impact__add.text","test_type__add.selectedOptionValue","column_name__add.selectedOptionValue","description__add.text","proposed_remediation__add.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Add_Test"},"publishedAction":{"name":"Add_Test","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO dot.\"configured_tests\" (\n \"test_activated\" ,\n\t\t\"project_id\",\n\t\t\"scenario_id\" ,\n\t\t\"priority\",\n\t\t\"description\" ,\n\t\t\"impact\",\n\t\t\"proposed_remediation\" ,\n\t\t\"entity_id\",\n\t\t\"test_type\" ,\n\t\t\"column_name\" ,\n\t\t\"test_parameters\",\n\t \"last_updated_by\"\n)\nVALUES (\n {{test_activated__add.isChecked}},\n\t\t'{{project_id__add.selectedOptionValue}}',\n\t\t'{{scenario_id__add.selectedOptionValue}}',\n\t\t{{priority__add.selectedOptionValue}},\n\t\t'{{description__add.text}}',\n\t\t'{{impact__add.text}}',\n\t\t'{{proposed_remediation__add.text}}',\n\t\t'{{entity_id__add.selectedOptionValue}}',\n\t\t'{{test_type__add.selectedOptionValue}}',\n\t\t'{{column_name__add.selectedOptionValue}}',\n\t\t'{{test_parameters__add.text}}',\n\t '{{appsmith.user.name}}'\n);\n\n","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["entity_id__add.selectedOptionValue","test_parameters__add.text","appsmith.user.name","project_id__add.selectedOptionValue","test_activated__add.isChecked","priority__add.selectedOptionValue","scenario_id__add.selectedOptionValue","impact__add.text","test_type__add.selectedOptionValue","column_name__add.selectedOptionValue","description__add.text","proposed_remediation__add.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Add_Test"},"new":false},{"id":"Configured tests_Entities_dropdown","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e8160e3ca9d4fca99f5c0","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Entities_dropdown","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"select entity_name as \"label\", entity_id as \"value\" from dot.configured_entities;\n","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Entities_dropdown"},"publishedAction":{"name":"Entities_dropdown","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"select entity_name as \"label\", entity_id as \"value\" from dot.configured_entities;\n","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Entities_dropdown"},"new":false},{"id":"Configured tests_Testtypes_dropdown","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e8315e3ca9d4fca99f5c3","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Testtypes_dropdown","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"select test_type as \"label\", test_type as \"value\" from dot.test_types ORDER by test_type;","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Testtypes_dropdown"},"publishedAction":{"name":"Testtypes_dropdown","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"select test_type as \"label\", test_type as \"value\" from dot.test_types ORDER by test_type;","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Testtypes_dropdown"},"new":false},{"id":"Configured tests_JSBulkUpdateDelete.bulkUpdate","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"62928debc18cc05f7bf4919d_629914528a009422ab1df063","pluginType":"JS","pluginId":"js-plugin","unpublishedAction":{"name":"bulkUpdate","fullyQualifiedName":"JSBulkUpdateDelete.bulkUpdate","datasource":{"userPermissions":[],"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isValid":true,"new":true},"pageId":"Configured tests","collectionId":"Configured tests_JSBulkUpdateDelete","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"() => {\n\t\tlet test_activated_b = test_activated_bulk.isChecked;\n\t\tBulk_Update_Test_Activated.run(() => {\n\t\t\tshowAlert('Successfully updated test activation status');\n\t\t\tcloseModal('Activate_Tests_Modal');\n\t\t\tresetWidget('test_activated_bulk');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_activated_bulk': test_activated_b, 'test_ids': JSBulkUpdateDelete.getIds()});\n\t}","jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n\t\tlet test_activated_b = test_activated_bulk.isChecked;\n\t\tBulk_Update_Test_Activated.run(() => {\n\t\t\tshowAlert('Successfully updated test activation status');\n\t\t\tcloseModal('Activate_Tests_Modal');\n\t\t\tresetWidget('test_activated_bulk');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_activated_bulk': test_activated_b, 'test_ids': JSBulkUpdateDelete.getIds()});\n\t}"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"JSBulkUpdateDelete.bulkUpdate"},"publishedAction":{"name":"bulkUpdate","fullyQualifiedName":"JSBulkUpdateDelete.bulkUpdate","datasource":{"userPermissions":[],"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isValid":true,"new":true},"pageId":"Configured tests","collectionId":"Configured tests_JSBulkUpdateDelete","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"() => {\n\t\tlet test_activated_b = test_activated_bulk.isChecked;\n\t\tBulk_Update_Test_Activated.run(() => {\n\t\t\tshowAlert('Successfully updated test activation status');\n\t\t\tcloseModal('Activate_Tests_Modal');\n\t\t\tresetWidget('test_activated_bulk');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_activated_bulk': test_activated_b, 'test_ids': JSBulkUpdateDelete.getIds()});\n\t}","jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n\t\tlet test_activated_b = test_activated_bulk.isChecked;\n\t\tBulk_Update_Test_Activated.run(() => {\n\t\t\tshowAlert('Successfully updated test activation status');\n\t\t\tcloseModal('Activate_Tests_Modal');\n\t\t\tresetWidget('test_activated_bulk');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_activated_bulk': test_activated_b, 'test_ids': JSBulkUpdateDelete.getIds()});\n\t}"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"JSBulkUpdateDelete.bulkUpdate"},"new":false},{"id":"Configured tests_JSBulkUpdateDelete.allowUpdate","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"62928debc18cc05f7bf4919d_629914528a009422ab1df065","pluginType":"JS","pluginId":"js-plugin","unpublishedAction":{"name":"allowUpdate","fullyQualifiedName":"JSBulkUpdateDelete.allowUpdate","datasource":{"userPermissions":[],"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isValid":true,"new":true},"pageId":"Configured tests","collectionId":"Configured tests_JSBulkUpdateDelete","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"() => !!configured_tests.selectedRows.length","jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => !!configured_tests.selectedRows.length"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"JSBulkUpdateDelete.allowUpdate"},"publishedAction":{"name":"allowUpdate","fullyQualifiedName":"JSBulkUpdateDelete.allowUpdate","datasource":{"userPermissions":[],"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isValid":true,"new":true},"pageId":"Configured tests","collectionId":"Configured tests_JSBulkUpdateDelete","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"() => !!configured_tests.selectedRows.length","jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => !!configured_tests.selectedRows.length"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"JSBulkUpdateDelete.allowUpdate"},"new":false},{"id":"Configured tests_JSBulkUpdateDelete.getIds","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"62928debc18cc05f7bf4919d_629914528a009422ab1df066","pluginType":"JS","pluginId":"js-plugin","unpublishedAction":{"name":"getIds","fullyQualifiedName":"JSBulkUpdateDelete.getIds","datasource":{"userPermissions":[],"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isValid":true,"new":true},"pageId":"Configured tests","collectionId":"Configured tests_JSBulkUpdateDelete","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"() => {\n\t\treturn `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`\n\t}","jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n\t\treturn `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`\n\t}"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"JSBulkUpdateDelete.getIds"},"publishedAction":{"name":"getIds","fullyQualifiedName":"JSBulkUpdateDelete.getIds","datasource":{"userPermissions":[],"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isValid":true,"new":true},"pageId":"Configured tests","collectionId":"Configured tests_JSBulkUpdateDelete","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"() => {\n\t\treturn `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`\n\t}","jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n\t\treturn `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`\n\t}"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"JSBulkUpdateDelete.getIds"},"new":false},{"id":"Configured tests_Bulk_Update_Test_Activated","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"62928debc18cc05f7bf4919d_629915ca8a009422ab1df069","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Bulk_Update_Test_Activated","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE dot.configured_tests SET test_activated = {{this.params.test_activated_bulk}} WHERE test_id in {{ this.params.test_ids }};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["this.params.test_activated_bulk","this.params.test_ids"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Bulk_Update_Test_Activated"},"publishedAction":{"name":"Bulk_Update_Test_Activated","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE dot.configured_tests SET test_activated = {{this.params.test_activated_bulk}} WHERE test_id in {{ this.params.test_ids }};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["this.params.test_activated_bulk","this.params.test_ids"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Bulk_Update_Test_Activated"},"new":false},{"id":"Configured tests_JSBulkUpdateDelete.bulkDelete","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"62928debc18cc05f7bf4919d_629970a48a009422ab1df08b","pluginType":"JS","pluginId":"js-plugin","unpublishedAction":{"name":"bulkDelete","fullyQualifiedName":"JSBulkUpdateDelete.bulkDelete","datasource":{"userPermissions":[],"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isValid":true,"new":true},"pageId":"Configured tests","collectionId":"Configured tests_JSBulkUpdateDelete","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"() => {\n\t\tBulk_Delete_Tests.run(() => {\n\t\t\tshowAlert('Successfully deleted tests');\n\t\t\tcloseModal('Delete_Tests_Modal');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_ids': JSBulkUpdateDelete.getIds()});\n\t}","jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n\t\tBulk_Delete_Tests.run(() => {\n\t\t\tshowAlert('Successfully deleted tests');\n\t\t\tcloseModal('Delete_Tests_Modal');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_ids': JSBulkUpdateDelete.getIds()});\n\t}"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"JSBulkUpdateDelete.bulkDelete"},"publishedAction":{"name":"bulkDelete","fullyQualifiedName":"JSBulkUpdateDelete.bulkDelete","datasource":{"userPermissions":[],"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isValid":true,"new":true},"pageId":"Configured tests","collectionId":"Configured tests_JSBulkUpdateDelete","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"() => {\n\t\tBulk_Delete_Tests.run(() => {\n\t\t\tshowAlert('Successfully deleted tests');\n\t\t\tcloseModal('Delete_Tests_Modal');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_ids': JSBulkUpdateDelete.getIds()});\n\t}","jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n\t\tBulk_Delete_Tests.run(() => {\n\t\t\tshowAlert('Successfully deleted tests');\n\t\t\tcloseModal('Delete_Tests_Modal');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_ids': JSBulkUpdateDelete.getIds()});\n\t}"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"JSBulkUpdateDelete.bulkDelete"},"new":false},{"id":"Configured tests_Bulk_Delete_Tests","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"62928debc18cc05f7bf4919d_629970f38a009422ab1df08d","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Bulk_Delete_Tests","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM dot.test_results_summary WHERE test_id in {{ this.params.test_ids }};\n\nDELETE FROM dot.test_results WHERE test_id in {{ this.params.test_ids }};\n\nDELETE FROM dot.configured_tests WHERE test_id in {{ this.params.test_ids }};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["this.params.test_ids"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Bulk_Delete_Tests"},"publishedAction":{"name":"Bulk_Delete_Tests","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM dot.test_results_summary WHERE test_id in {{ this.params.test_ids }};\n\nDELETE FROM dot.test_results WHERE test_id in {{ this.params.test_ids }};\n\nDELETE FROM dot.configured_tests WHERE test_id in {{ this.params.test_ids }};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["this.params.test_ids"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Bulk_Delete_Tests"},"new":false},{"id":"Configured tests_Columns_Dropdown_Add","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"62928debc18cc05f7bf4919d_629a38b38a009422ab1df0af","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Columns_Dropdown_Add","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n isc.column_name as \"label\",\n\t\tisc.column_name as \"value\"\nFROM \n INFORMATION_SCHEMA.COLUMNS isc,\n dot.configured_entities ce\nwhere\n ce.entity_name = isc.table_name \n and ce.entity_id = '{{entity_id__add.selectedOptionValue}}'\norder by column_name;","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["entity_id__add.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Columns_Dropdown_Add"},"publishedAction":{"name":"Columns_Dropdown_Add","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n isc.column_name as \"label\",\n\t\tisc.column_name as \"value\"\nFROM \n INFORMATION_SCHEMA.COLUMNS isc,\n dot.configured_entities ce\nwhere\n ce.entity_name = isc.table_name \n and ce.entity_id = '{{entity_id__add.selectedOptionValue}}'\norder by column_name;","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["entity_id__add.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Columns_Dropdown_Add"},"new":false},{"id":"Configured tests_Columns_dropdown_Edit","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"62928debc18cc05f7bf4919d_629a3bcc8a009422ab1df0b4","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Columns_dropdown_Edit","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n isc.column_name as \"label\",\n\t\tisc.column_name as \"value\"\nFROM \n INFORMATION_SCHEMA.COLUMNS isc,\n dot.configured_entities ce\nwhere\n ce.entity_name = isc.table_name \n and ce.entity_id = '{{entity_id.selectedOptionValue}}'\norder by column_name;","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["entity_id.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Columns_dropdown_Edit"},"publishedAction":{"name":"Columns_dropdown_Edit","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n isc.column_name as \"label\",\n\t\tisc.column_name as \"value\"\nFROM \n INFORMATION_SCHEMA.COLUMNS isc,\n dot.configured_entities ce\nwhere\n ce.entity_name = isc.table_name \n and ce.entity_id = '{{entity_id.selectedOptionValue}}'\norder by column_name;","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["entity_id.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Columns_dropdown_Edit"},"new":false},{"id":"Configured tests_Test_Type_Tool_Tip_Edit","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"62928debc18cc05f7bf4919d_629a9d038a009422ab1df0da","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Test_Type_Tool_Tip_Edit","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n description \nFROM \n\t\tdot.test_type\nwhere\n ce.entity_name = isc.table_name \n and test_type = '{{test_type.selectedOptionValue}}';","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["test_type.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Test_Type_Tool_Tip_Edit"},"publishedAction":{"name":"Test_Type_Tool_Tip_Edit","datasource":{"id":"dot_db_local","userPermissions":[],"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Configured tests","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n description \nFROM \n\t\tdot.test_type\nwhere\n ce.entity_name = isc.table_name \n and test_type = '{{test_type.selectedOptionValue}}';","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["test_type.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Test_Type_Tool_Tip_Edit"},"new":false}],"actionCollectionList":[{"id":"Configured tests_JSBulkUpdateDelete","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"62928debc18cc05f7bf4919d_629914458a009422ab1df061","unpublishedCollection":{"name":"JSBulkUpdateDelete","pageId":"Configured tests","pluginId":"js-plugin","pluginType":"JS","actionIds":[],"archivedActionIds":[],"actions":[],"archivedActions":[],"body":"export default {\n\tallowUpdate: () => !!configured_tests.selectedRows.length,\n\tgetIds: () => {\n\t\treturn `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`\n\t},\n\tbulkUpdate: () => {\n\t\tlet test_activated_b = test_activated_bulk.isChecked;\n\t\tBulk_Update_Test_Activated.run(() => {\n\t\t\tshowAlert('Successfully updated test activation status');\n\t\t\tcloseModal('Activate_Tests_Modal');\n\t\t\tresetWidget('test_activated_bulk');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_activated_bulk': test_activated_b, 'test_ids': this.getIds()});\n\t},\n\tbulkDelete: () => {\n\t\tBulk_Delete_Tests.run(() => {\n\t\t\tshowAlert('Successfully deleted tests');\n\t\t\tcloseModal('Delete_Tests_Modal');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_ids': this.getIds()});\n\t},\n}","variables":[]},"publishedCollection":{"name":"JSBulkUpdateDelete","pageId":"Configured tests","pluginId":"js-plugin","pluginType":"JS","actionIds":[],"archivedActionIds":[],"actions":[],"archivedActions":[],"body":"export default {\n\tallowUpdate: () => !!configured_tests.selectedRows.length,\n\tgetIds: () => {\n\t\treturn `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`\n\t},\n\tbulkUpdate: () => {\n\t\tlet test_activated_b = test_activated_bulk.isChecked;\n\t\tBulk_Update_Test_Activated.run(() => {\n\t\t\tshowAlert('Successfully updated test activation status');\n\t\t\tcloseModal('Activate_Tests_Modal');\n\t\t\tresetWidget('test_activated_bulk');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_activated_bulk': test_activated_b, 'test_ids': this.getIds()});\n\t},\n\tbulkDelete: () => {\n\t\tBulk_Delete_Tests.run(() => {\n\t\t\tshowAlert('Successfully deleted tests');\n\t\t\tcloseModal('Delete_Tests_Modal');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_ids': this.getIds()});\n\t},\n}","variables":[]},"new":false}],"invisibleActionFields":{"Configured tests_Test_Type_Tool_Tip_Edit":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Configured tests_Bulk_Delete_Tests":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Configured tests_Delete_Test":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Configured tests_Configured_tests_data":{"unpublishedUserSetOnLoad":true,"publishedUserSetOnLoad":true},"Configured tests_Edit_Test":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Configured tests_Columns_dropdown_Edit":{"unpublishedUserSetOnLoad":true,"publishedUserSetOnLoad":true},"Configured tests_Entities_dropdown":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Configured tests_Projects_dropdown":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Configured tests_Columns_Dropdown_Add":{"unpublishedUserSetOnLoad":true,"publishedUserSetOnLoad":true},"Configured tests_JSBulkUpdateDelete.bulkUpdate":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Configured tests_JSBulkUpdateDelete.bulkDelete":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Configured tests_Scenario_dropdown":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Configured tests_JSBulkUpdateDelete.getIds":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Configured tests_Bulk_Update_Test_Activated":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Configured tests_Add_Test":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Configured tests_Testtypes_dropdown":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Configured tests_JSBulkUpdateDelete.allowUpdate":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false}},"editModeTheme":{"name":"Classic","displayName":"Classic","new":true,"isSystemTheme":true},"publishedTheme":{"name":"Classic","displayName":"Classic","new":true,"isSystemTheme":true},"publishedLayoutmongoEscapedWidgets":{},"unpublishedLayoutmongoEscapedWidgets":{}} \ No newline at end of file +{"clientSchemaVersion":1.0,"serverSchemaVersion":5.0,"exportedApplication":{"name":"Data Observation Toolkit (DOT)","isPublic":true,"pages":[{"id":"Projects","isDefault":true},{"id":"Categories","isDefault":false},{"id":"Entities","isDefault":false},{"id":"Tests","isDefault":false}],"publishedPages":[{"id":"Projects","isDefault":true},{"id":"Categories","isDefault":false},{"id":"Entities","isDefault":false},{"id":"Tests","isDefault":false}],"viewMode":false,"appIsExample":false,"unreadCommentThreads":0.0,"color":"#F1DEFF","icon":"pie-chart","slug":"data-observation-toolkit-dot","evaluationVersion":2.0,"applicationVersion":2.0,"isManualUpdate":false,"deleted":false},"datasourceList":[{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"deleted":false,"gitSyncId":"627421964babdb1002f8325c_627421d24babdb1002f83263"}],"pageList":[{"unpublishedPage":{"name":"Tests","slug":"tests","layouts":[{"viewMode":false,"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1431.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":1150.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":59.0,"minHeight":1130.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"labelTextSize":"0.875rem","boxShadow":"none","backgroundColor":"#FFFFFF","widgetName":"Configured_Tests_Container","rightColumn":64.0,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0.0,"bottomRow":87.0,"parentRowSpace":10.0,"isVisible":"true","type":"CONTAINER_WIDGET","version":1.0,"parentId":"0","isLoading":false,"parentColumnSpace":19.75,"leftColumn":0.0,"borderRadius":"0px","children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":1020.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"IconButton2","onClick":"{{showModal('Test_Help')}}","buttonColor":"#3b82f6","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":0.0,"bottomRow":4.0,"tooltip":"Find out more about projects\n","parentRowSpace":10.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":29.111083984375,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":3.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":5.0,"iconName":"help","widgetId":"yc70otzr65","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"none","widgetName":"Add_Test_Button","onClick":"{{resetWidget('Add_configured_tests_form');\nshowModal('Add_Test_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"},{"key":"onClick"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":4.0,"bottomRow":8.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":51.0,"dynamicBindingPathList":[],"text":"Add test","isDisabled":"","key":"2ob5jed9vo","rightColumn":62.0,"isDefaultClickDisabled":true,"widgetId":"evkc3u31vk","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"none","widgetName":"Bulk_Delete_Button","onClick":"{{showModal('Delete_Tests_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":4.0,"bottomRow":8.0,"tooltip":"{{!JSFunctions.allowUpdate() ? 'First select the tests you want to delete':''}}","parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":40.0,"dynamicBindingPathList":[{"key":"isDisabled"},{"key":"tooltip"}],"text":"Delete tests","isDisabled":"{{!JSFunctions.allowUpdate()}}","key":"2ob5jed9vo","rightColumn":51.0,"isDefaultClickDisabled":true,"widgetId":"m8gxn5vx3a","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"none","multiRowSelection":true,"widgetName":"configured_tests","columnOrder":["customColumn2","test_activated","project_id","description","priority","entity_name","test_type","column_name","test_parameters","scenario_id","impact","proposed_remediation","entity_id","column_description","test_id","date_added","date_modified","last_updated_by"],"dynamicPropertyPathList":[{"key":"onPageChange"},{"key":"onRowSelected"},{"key":"primaryColumns.customColumn2.onClick"}],"isVisibleDownload":true,"topRow":10.0,"bottomRow":100.0,"parentRowSpace":10.0,"onPageChange":"{{Configured_tests_data.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"-1","parentColumnSpace":1.0,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"onSearchTextChanged"},{"key":"primaryColumns.customColumn2.onClick"},{"key":"onRowSelected"}],"dynamicBindingPathList":[{"key":"tableData"},{"key":"accentColor"},{"key":"primaryColumns.test_activated.computedValue"},{"key":"primaryColumns.project_id.computedValue"},{"key":"primaryColumns.test_id.computedValue"},{"key":"primaryColumns.scenario_id.computedValue"},{"key":"primaryColumns.priority.computedValue"},{"key":"primaryColumns.description.computedValue"},{"key":"primaryColumns.impact.computedValue"},{"key":"primaryColumns.proposed_remediation.computedValue"},{"key":"primaryColumns.entity_id.computedValue"},{"key":"primaryColumns.test_type.computedValue"},{"key":"primaryColumns.column_name.computedValue"},{"key":"primaryColumns.column_description.computedValue"},{"key":"primaryColumns.test_parameters.computedValue"},{"key":"primaryColumns.date_added.computedValue"},{"key":"primaryColumns.date_modified.computedValue"},{"key":"primaryColumns.last_updated_by.computedValue"},{"key":"derivedColumns.customColumn2.menuColor"},{"key":"primaryColumns.customColumn2.menuColor"},{"key":"derivedColumns.customColumn2.borderRadius"},{"key":"derivedColumns.customColumn2.boxShadow"},{"key":"derivedColumns.customColumn2.buttonColor"},{"key":"primaryColumns.customColumn2.buttonColor"},{"key":"derivedColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.entity_name.computedValue"}],"leftColumn":0.0,"primaryColumns":{"test_activated":{"index":0.0,"width":150.0,"id":"test_activated","horizontalAlignment":"CENTER","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_activated","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_activated ? '✓' : ''))}}","cellBackground":""},"project_id":{"index":1.0,"width":150.0,"id":"project_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"project_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.project_id))}}","cellBackground":""},"test_id":{"index":2.0,"width":150.0,"id":"test_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_id))}}","cellBackground":""},"scenario_id":{"index":3.0,"width":150.0,"id":"scenario_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"scenario_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.scenario_id))}}","cellBackground":""},"priority":{"index":4.0,"width":150.0,"id":"priority","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"priority","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.priority))}}","cellBackground":""},"description":{"index":5.0,"width":150.0,"id":"description","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"description","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.description))}}","cellBackground":""},"impact":{"index":6.0,"width":150.0,"id":"impact","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"impact","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.impact))}}","cellBackground":""},"proposed_remediation":{"index":7.0,"width":150.0,"id":"proposed_remediation","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"proposed_remediation","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.proposed_remediation))}}","cellBackground":""},"entity_id":{"index":8.0,"width":150.0,"id":"entity_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.entity_id))}}","cellBackground":""},"test_type":{"index":9.0,"width":150.0,"id":"test_type","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_type","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_type))}}","cellBackground":""},"column_name":{"index":10.0,"width":150.0,"id":"column_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"column_name","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.column_name))}}","cellBackground":""},"column_description":{"index":11.0,"width":150.0,"id":"column_description","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"column_description","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.column_description))}}","cellBackground":""},"test_parameters":{"index":12.0,"width":150.0,"id":"test_parameters","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_parameters","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_parameters))}}","cellBackground":""},"date_added":{"index":13.0,"width":150.0,"id":"date_added","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"date_added","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.date_added))}}","cellBackground":""},"date_modified":{"index":14.0,"width":150.0,"id":"date_modified","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"date_modified","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.date_modified))}}","cellBackground":""},"last_updated_by":{"index":15.0,"width":150.0,"id":"last_updated_by","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"last_updated_by","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.last_updated_by))}}","cellBackground":""},"customColumn2":{"index":17.0,"width":150.0,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","menuColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","borderRadius":"0px","boxShadow":"none","iconName":"","onClick":"{{storeValue(\"test_type\",\"original\", false); storeValue(\"entity_id\",\"original\", false); Entity_Columns_dropdown.run(); Test_parameters_sample.run(); showModal('Edit_Test_Modal')}}","buttonColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","buttonLabel":"{{configured_tests.sanitizedTableData.map((currentRow) => ( 'Edit'))}}","buttonVariant":"SECONDARY"},"entity_name":{"index":16.0,"width":150.0,"id":"entity_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_name","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.entity_name))}}","cellBackground":""}},"delimiter":",","onRowSelected":"","derivedColumns":{"customColumn2":{"index":17.0,"width":150.0,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","menuColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","borderRadius":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","boxShadow":"{{configured_tests.sanitizedTableData.map((currentRow) => ( 'none'))}}","iconName":"edit","onClick":"{{showModal('Edit_Test_Modal')}}","buttonColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","buttonLabel":"{{configured_tests.sanitizedTableData.map((currentRow) => ( 'Edit'))}}"}},"labelTextSize":"0.875rem","rightColumn":64.0,"textSize":"0.875rem","widgetId":"jabdu9f16g","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisibleFilters":true,"tableData":"{{Configured_tests_data.data}}","isVisible":"true","label":"Data","searchKey":"","version":3.0,"parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"isLoading":false,"isVisibleCompactMode":true,"onSearchTextChanged":"{{Configured_tests_data.run()}}","horizontalAlignment":"LEFT","isVisibleSearch":true,"childStylesheet":{"button":{"buttonColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"menuButton":{"menuColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"iconButton":{"menuColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"}},"borderRadius":"0.375rem","isVisiblePagination":true,"primaryColumnId":"test_id","verticalAlignment":"CENTER","columnSizeMap":{"task":245.0,"deliveryAddress":170.0,"step":62.0,"id":228.0,"status":75.0,"customColumn2":80.0,"customColumn1":83.0,"description":301.0,"priority":77.0,"entity_name":213.0,"project_id":102.0}},{"boxShadow":"none","widgetName":"order_by_label","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":4.0,"bottomRow":8.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":19.75,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Order By :","labelTextSize":"0.875rem","rightColumn":5.0,"textAlign":"LEFT","widgetId":"l8pgl90klz","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","fontSize":"0.80rem"},{"boxShadow":"none","widgetName":"title__main","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Tests","labelTextSize":"0.875rem","rightColumn":3.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"refresh_btn","onClick":"{{Configured_tests_data.run()}}","buttonColor":"#03B365","dynamicPropertyPathList":[{"key":"borderRadius"}],"topRow":4.0,"bottomRow":8.0,"parentRowSpace":10.0,"type":"ICON_BUTTON_WIDGET","parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":62.0,"dynamicBindingPathList":[],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":64.0,"iconName":"refresh","widgetId":"xp5u9a9nzq","isVisible":"true","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"9999px","buttonVariant":"TERTIARY"},{"boxShadow":"none","widgetName":"col_select","isFilterable":true,"dynamicPropertyPathList":[{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":4.0,"bottomRow":8.0,"parentRowSpace":10.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"test_id","animateLoading":true,"parentColumnSpace":22.171875,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":5.0,"dynamicBindingPathList":[{"key":"isVisible"},{"key":"accentColor"}],"options":"[\n\t{\n\t\t\"label\": \"test_id\",\n\t\t\"value\": \"test_id\"\n\t},\n\t{\n\t\t\"label\": \"description\",\n\t\t\"value\": \"description\"\n\t},\n\t{\n\t\t\"label\": \"test_activated\",\n\t\t\"value\": \"test_activated\"\n\t}\n]","placeholderText":"Select option","isDisabled":false,"key":"un5y91u42x","labelTextSize":"0.875rem","isRequired":false,"rightColumn":18.0,"widgetId":"kqo2g4nu86","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"{{Configured_tests_data.data.length > 0}}","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","onOptionChange":"{{Configured_tests_data.run()}}"},{"boxShadow":"none","widgetName":"order_select","isFilterable":true,"dynamicPropertyPathList":[{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":4.0,"bottomRow":8.0,"parentRowSpace":10.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"ASC","animateLoading":true,"parentColumnSpace":22.171875,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":18.0,"dynamicBindingPathList":[{"key":"isVisible"},{"key":"accentColor"}],"options":"[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]","placeholderText":"Select option","isDisabled":false,"key":"un5y91u42x","labelTextSize":"0.875rem","isRequired":false,"rightColumn":27.0,"widgetId":"abax6hf704","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"{{Configured_tests_data.data.length > 0}}","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","onOptionChange":"{{Configured_tests_data.run()}}"},{"boxShadow":"none","widgetName":"Bulk_update_Test_Activated","onClick":"{{showModal('Activate_Tests_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":4.0,"bottomRow":8.0,"tooltip":"{{!JSFunctions.allowUpdate() ? 'First select the tests you want to update':''}}","parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":29.0,"dynamicBindingPathList":[{"key":"isDisabled"},{"key":"tooltip"}],"text":"Activate/Deactivate tests","isDisabled":"{{!JSFunctions.allowUpdate()}}","key":"2ob5jed9vo","rightColumn":40.0,"isDefaultClickDisabled":true,"widgetId":"7puon64f02","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"}]}]},{"boxShadow":"none","widgetName":"Delete_Tests_Modal","dynamicPropertyPathList":[{"key":"onClose"}],"topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onClose"}],"leftColumn":21.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Canvas3","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":240.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Text12Copy","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":6.875,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Warning: This will also delete any related test results","labelTextSize":"0.875rem","rightColumn":63.0,"textAlign":"LEFT","widgetId":"fixqpc5ejk","isVisible":"true","fontStyle":"ITALIC","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"Alert_text","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Delete Tests","labelTextSize":"0.875rem","rightColumn":41.0,"textAlign":"LEFT","widgetId":"35yoxo4oec","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button1","onClick":"{{closeModal('Delete_Tests_Modal')}}","dynamicPropertyPathList":[],"buttonColor":"#03B365","topRow":17.0,"bottomRow":21.0,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[],"text":"Cancel","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":46.0,"isDefaultClickDisabled":true,"widgetId":"lryg8kw537","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","buttonVariant":"PRIMARY"},{"boxShadow":"none","widgetName":"Delete_Button","onClick":"{{JSFunctions.bulkDelete();resetWidget('configured_tests')}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#F22B2B","topRow":17.0,"bottomRow":21.0,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":48.0,"dynamicBindingPathList":[],"text":"Confirm","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":64.0,"isDefaultClickDisabled":true,"widgetId":"qq02lh7ust","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","buttonVariant":"PRIMARY"},{"boxShadow":"none","widgetName":"Text12","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":6.875,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Are you sure you want to delete selected tests?","labelTextSize":"0.875rem","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","isVisible":"true","version":1.0,"parentId":"i3whp03wf0","isLoading":false,"borderRadius":"0px"}],"height":240.0,"labelTextSize":"0.875rem","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"0px","width":456.0},{"boxShadow":"none","widgetName":"Add_Test_Modal","dynamicPropertyPathList":[{"key":"onClose"}],"topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onClose"}],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Canvas4","topRow":0.0,"bottomRow":1350.0,"parentRowSpace":1.0,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":852.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Add_configured_tests_form","backgroundColor":"white","rightColumn":63.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"5sr8herbsh","topRow":4.0,"bottomRow":133.0,"parentRowSpace":10.0,"isVisible":"true","type":"FORM_WIDGET","parentId":"9rhv3ioohq","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas2CopyCopy","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"23cekw8te4","containerStyle":"none","topRow":0.0,"bottomRow":710.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"5sr8herbsh","minHeight":460.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"column_name__add","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"},{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":46.0,"bottomRow":50.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"isVisible"},{"key":"options"}],"labelPosition":"Left","options":"{{Entity_Columns_dropdown.data}}","placeholderText":"Select value","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"84nba58c4d","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"{{JSFunctions.testUsesColumn(test_type__add.selectedOptionValue)}}","version":1.0,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{storeValue('selectValue','changed',false)}}"},{"boxShadow":"none","widgetName":"test_parameters_add_label","dynamicPropertyPathList":[{"key":"isVisible"}],"topRow":51.0,"bottomRow":55.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[{"key":"isVisible"}],"text":"Test parameters","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"e7fpxdmbas","isVisible":"{{JSFunctions.testUsesParameters(test_type__add.selectedOptionValue)}}","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_parameters__add","dynamicPropertyPathList":[{"key":"isVisible"},{"key":"isRequired"}],"displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":51.0,"bottomRow":63.0,"tooltip":"","parentRowSpace":10.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"isVisible"},{"key":"defaultText"},{"key":"placeholderText"},{"key":"isRequired"}],"labelStyle":"","inputType":"TEXT","placeholderText":"{{ test_type__add.selectedOptionValue == undefined || test_type__add.selectedOptionValue == '' || JSFunctions.testUsesParameters(test_type__add.selectedOptionValue) == false ? '' : JSON.stringify(JSON.parse((\"{\" + Test_parameters_sample.data[0].json_sample)+\"}\"), null, 1) ;\n}}","isDisabled":false,"key":"xsmln3d0zi","validation":"","labelTextSize":"0.875rem","isRequired":"{{JSFunctions.testUsesParameters(test_type__add.selectedOptionValue)}}","rightColumn":63.0,"widgetId":"0vsmrnpgzx","accentColor":"{{appsmith.theme.colors.primaryColor}}","errorMessage":"Invalid input","isVisible":"{{JSFunctions.testUsesParameters(test_type__add.selectedOptionValue)}}","label":"","version":2.0,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"regex":"","borderRadius":"0px","iconAlign":"left","defaultText":"{{appsmith.store.test_type !=\"changed\" ? \"\" : \"\"}}"},{"tabId":"","boxShadow":"NONE","widgetName":"buttons__add_label","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3.svg","topRow":63.0,"bottomRow":69.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":0.859375,"leftColumn":0.0,"children":[{"rightColumn":55.0,"widgetName":"Canvas7Copy","detachFromLayout":true,"widgetId":"yry0xubm38","containerStyle":"none","bottomRow":60.0,"topRow":0.0,"parentRowSpace":1.0,"isVisible":true,"type":"CANVAS_WIDGET","canExtend":false,"version":1.0,"parentId":"iekbyiuyrt","props":{"containerStyle":"none","canExtend":false,"detachFromLayout":true,"children":[]},"isLoading":false,"minHeight":4.0,"renderMode":"CANVAS","parentColumnSpace":1.0,"leftColumn":0.0,"children":[{"boxShadow":"none","widgetName":"Button2Copy","onClick":"{{closeModal('Add_Test_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":0.859375,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":47.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"xbq47k8pyb","rightColumn":64.0,"isDefaultClickDisabled":true,"widgetId":"8od8m0d991","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"yry0xubm38","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"resetFormOnClick":false,"boxShadow":"none","widgetName":"add_button","onClick":"{{Add_Test.run(() => { Configured_tests_data.run() ;closeModal('Add_Test_Modal');resetWidget('configured_tests')}, (error) => showAlert(`Error while adding test! \\n ${error}`,'error'))}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"FORM_BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"parentColumnSpace":0.859375,"leftColumn":22.10909090909091,"dynamicBindingPathList":[],"text":"Add Test","labelTextSize":"0.875rem","rightColumn":45.38181818181818,"isDefaultClickDisabled":true,"widgetId":"o9vf33rshp","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"yry0xubm38","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"0px","buttonVariant":"PRIMARY"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"reset_button","onClick":"","dynamicPropertyPathList":[],"buttonColor":"#03B365","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"FORM_BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"parentColumnSpace":0.859375,"leftColumn":0.0,"dynamicBindingPathList":[],"text":"Reset","labelTextSize":"0.875rem","rightColumn":20.945454545454545,"isDefaultClickDisabled":true,"widgetId":"04zb7vtzej","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"yry0xubm38","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"0px","buttonVariant":"SECONDARY"}]}],"borderWidth":"0","key":"ax0nu1bkg1","backgroundColor":"#FFFFFF","rightColumn":64.0,"widgetId":"iekbyiuyrt","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false},{"boxShadow":"none","widgetName":"test_type__add","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":42.0,"bottomRow":46.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"}],"labelPosition":"Left","options":"{{Testtypes_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"m85yad4rzn","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{resetWidget('test_parameters__add'); Test_parameters_sample.run(); Test_parameters_sample.run()}}"},{"boxShadow":"none","widgetName":"priority__add","isFilterable":false,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":21.0,"bottomRow":25.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"5","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"}],"labelPosition":"Left","options":"[\n {\"label\":\"1\", \"value\":\"1\"},\n {\"label\":\"2\", \"value\":\"2\"},\n\t {\"label\":\"3\", \"value\":\"3\"},\n\t {\"label\":\"4\", \"value\":\"4\"},\n\t {\"label\":\"5\", \"value\":\"5\"},\n\t {\"label\":\"6\", \"value\":\"6\"},\n {\"label\":\"7\", \"value\":\"7\"},\n\t {\"label\":\"8\", \"value\":\"8\"},\n\t {\"label\":\"9\", \"value\":\"9\"},\n\t {\"label\":\"10\", \"value\":\"10\"}\n\t \n]","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63.0,"widgetId":"gpyyu1qaqc","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"scenario_id__add","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":16.0,"bottomRow":20.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"}],"labelPosition":"Left","options":"{{Scenario_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63.0,"widgetId":"gtlpb903a5","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"column_name__add_label","dynamicPropertyPathList":[{"key":"isVisible"}],"topRow":46.0,"bottomRow":50.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[{"key":"isVisible"}],"text":"Column name","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"xot49u0zg3","isVisible":"{{JSFunctions.testUsesColumn(test_type__add.selectedOptionValue)}}","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_type__add_label","dynamicPropertyPathList":[],"topRow":41.0,"bottomRow":45.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Test type","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"nuhu3r9aqe","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"entity__add_label","topRow":36.0,"bottomRow":40.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Entity","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"j8wxd9dp81","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"remediation__add_label","topRow":31.0,"bottomRow":35.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Remediation","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"u0nzp5rxtm","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"proposed_remediation__add","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":31.0,"bottomRow":35.0,"parentRowSpace":10.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"c62ltocpde","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2.0,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":""},{"boxShadow":"none","widgetName":"impact__add_label","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Impact","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"mws99dmlod","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"impact__add","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"roc5pxt957","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2.0,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":""},{"boxShadow":"none","widgetName":"priority__add_label","topRow":21.0,"bottomRow":25.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Priority","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"dct6xo38p4","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description__add_label","topRow":6.0,"bottomRow":10.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Description","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"dzk9gc3sn3","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_activated__add_label","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Test activated?","labelTextSize":"0.875rem","rightColumn":16.0,"textAlign":"RIGHT","widgetId":"48ss6m9mvr","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"project__add_label","topRow":11.0,"bottomRow":15.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Project","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"4do6b5wc8u","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"scenario__add_label","topRow":16.0,"bottomRow":20.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Scenario","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"zwj0zk5v5d","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description__add","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":6.0,"bottomRow":10.0,"parentRowSpace":10.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[{"key":"onTextChanged"}],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","placeholderText":"Enter a test description","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":true,"onTextChanged":"","rightColumn":63.0,"widgetId":"g4r8p8rktn","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2.0,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":""},{"boxShadow":"none","widgetName":"project_id__add","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":11.0,"bottomRow":15.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"}],"labelPosition":"Left","options":"{{Projects_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63.0,"widgetId":"nfecm4c4o2","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"entity_id__add","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":36.0,"bottomRow":40.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"}],"labelPosition":"Left","options":"{{Entities_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"zqsy9kjq09","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{resetWidget('column_name__add'); Entity_Columns_dropdown.run()}}"},{"widgetName":"test_activated__add","dynamicPropertyPathList":[{"key":"defaultCheckedState"}],"displayName":"Checkbox","iconSVG":"/static/media/icon.aaab032b.svg","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"CHECKBOX_WIDGET","alignWidget":"LEFT","hideCard":false,"animateLoading":true,"parentColumnSpace":8.345703125,"dynamicTriggerPathList":[],"leftColumn":18.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"}],"labelPosition":"Right","isDisabled":false,"key":"ghkmfs0se1","isRequired":false,"rightColumn":25.0,"widgetId":"9kwfvwqq2b","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":1.0,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultCheckedState":"true"}]}]},{"widgetName":"title__add","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":8.125,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Add Test","key":"ih9plfos5c","rightColumn":17.0,"textAlign":"LEFT","widgetId":"aep0d3w9ub","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9rhv3ioohq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.25rem"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","isVisible":"true","version":1.0,"parentId":"vmorzie6eq","isLoading":false,"borderRadius":"0px"}],"height":852.0,"labelTextSize":"0.875rem","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"0px","width":662.0},{"boxShadow":"none","widgetName":"Edit_Test_Modal","isCanvas":true,"dynamicPropertyPathList":[{"key":"onClose"}],"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","topRow":21.0,"bottomRow":45.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":8.173828125,"dynamicTriggerPathList":[{"key":"onClose"}],"leftColumn":38.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas6","displayName":"Canvas","topRow":0.0,"bottomRow":780.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":782.0,"parentColumnSpace":1.0,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Edit_configured_tests_formCopy","backgroundColor":"white","rightColumn":63.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"y6ds8uxh4v","topRow":4.0,"bottomRow":76.0,"parentRowSpace":10.0,"isVisible":"{{!!configured_tests.selectedRow.test_id}}","type":"FORM_WIDGET","parentId":"je98hr71pu","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"isVisible"}],"borderRadius":"0px","children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas2Copy","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"9bhffofmqh","containerStyle":"none","topRow":0.0,"bottomRow":710.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"y6ds8uxh4v","minHeight":460.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"test_parameters_label","dynamicPropertyPathList":[{"key":"isVisible"}],"topRow":51.0,"bottomRow":55.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[{"key":"isVisible"}],"text":"Test parameters","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"f3u4ldeu22","isVisible":"{{JSFunctions.testUsesParameters(test_type.selectedOptionValue)}}","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_parameters","dynamicPropertyPathList":[{"key":"isVisible"},{"key":"isRequired"}],"displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":51.0,"bottomRow":62.0,"tooltip":"","parentRowSpace":10.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"},{"key":"accentColor"},{"key":"isRequired"},{"key":"placeholderText"},{"key":"isVisible"}],"labelStyle":"","inputType":"TEXT","placeholderText":"{{ JSON.stringify(JSON.parse((\"{\" + Test_parameters_sample.data[0].json_sample)+\"}\"), null, 1) ;\n}}\t","isDisabled":false,"key":"xsmln3d0zi","validation":"","labelTextSize":"0.875rem","isRequired":"{{JSFunctions.testUsesParameters(test_type.selectedOptionValue);}}","rightColumn":63.0,"widgetId":"950bx92vxg","accentColor":"{{appsmith.theme.colors.primaryColor}}","errorMessage":"Invalid input","isVisible":"{{JSFunctions.testUsesParameters(test_type.selectedOptionValue);}}","label":"","version":2.0,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"regex":"","borderRadius":"0px","iconAlign":"left","defaultText":"{{appsmith.store.test_type !=\"changed\" ? JSON.stringify(configured_tests.selectedRow.test_parameters,null,1) : ''; }}"},{"tabId":"","boxShadow":"NONE","widgetName":"Edit_buttons_container","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3.svg","topRow":63.0,"bottomRow":69.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":0.859375,"leftColumn":0.0,"children":[{"rightColumn":55.0,"widgetName":"Canvas7","detachFromLayout":true,"widgetId":"fkdkowa341","containerStyle":"none","bottomRow":60.0,"topRow":0.0,"parentRowSpace":1.0,"isVisible":true,"type":"CANVAS_WIDGET","canExtend":false,"version":1.0,"parentId":"oxsxa7mz6i","props":{"containerStyle":"none","canExtend":false,"detachFromLayout":true,"children":[]},"isLoading":false,"minHeight":4.0,"renderMode":"CANVAS","parentColumnSpace":1.0,"leftColumn":0.0,"children":[{"boxShadow":"none","widgetName":"Edit_Close_button","onClick":"{{closeModal('Edit_Test_Modal'); resetWidget('configured_tests')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":0.859375,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":47.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"xbq47k8pyb","rightColumn":64.0,"isDefaultClickDisabled":true,"widgetId":"t3tqs11i4e","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"fkdkowa341","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"resetFormOnClick":false,"boxShadow":"none","widgetName":"Edit_Update_Button","onClick":"{{Edit_Test.run(() => { Configured_tests_data.run() ;closeModal('Edit_Test_Modal');resetWidget('configured_tests')}, (error) => showAlert(`Error while updating test! \\n ${error}`,'error'))}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"FORM_BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"parentColumnSpace":0.859375,"leftColumn":22.0,"dynamicBindingPathList":[],"text":"Update","labelTextSize":"0.875rem","rightColumn":45.0,"isDefaultClickDisabled":true,"widgetId":"wifw3xta4o","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"fkdkowa341","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"0px","buttonVariant":"PRIMARY"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"Edit_Reset_Button","onClick":"","dynamicPropertyPathList":[],"buttonColor":"#03B365","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"FORM_BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"parentColumnSpace":0.859375,"leftColumn":0.0,"dynamicBindingPathList":[],"text":"Reset","labelTextSize":"0.875rem","rightColumn":20.945454545454545,"isDefaultClickDisabled":true,"widgetId":"ar84i0p37h","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"fkdkowa341","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"0px","buttonVariant":"SECONDARY"}]}],"borderWidth":"0","key":"ax0nu1bkg1","backgroundColor":"#FFFFFF","rightColumn":64.0,"widgetId":"oxsxa7mz6i","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false},{"boxShadow":"none","widgetName":"test_type","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":41.0,"bottomRow":45.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.test_type.toString(); }}","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Testtypes_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"0udd3otgd1","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{storeValue('test_type','changed',false);\tTest_parameters_sample.run()}}"},{"boxShadow":"none","widgetName":"priority","isFilterable":false,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":21.0,"bottomRow":25.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.priority.toString()}}","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"[\n {\"label\":\"1\", \"value\":\"1\"},\n {\"label\":\"2\", \"value\":\"2\"},\n\t {\"label\":\"3\", \"value\":\"3\"},\n\t {\"label\":\"4\", \"value\":\"4\"},\n\t {\"label\":\"5\", \"value\":\"5\"},\n\t {\"label\":\"6\", \"value\":\"6\"},\n {\"label\":\"7\", \"value\":\"7\"},\n\t {\"label\":\"8\", \"value\":\"8\"},\n\t {\"label\":\"9\", \"value\":\"9\"},\n\t {\"label\":\"10\", \"value\":\"10\"}\n\t \n]","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63.0,"widgetId":"fw1j0puk4u","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"scenario_id","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":16.0,"bottomRow":20.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.scenario_id.toString()}}","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Scenario_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63.0,"widgetId":"xf227a5k2x","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"column_name_label","dynamicPropertyPathList":[{"key":"isVisible"}],"topRow":46.0,"bottomRow":50.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[{"key":"isVisible"}],"text":"Column name","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"l3cyqk3sj5","isVisible":"{{JSFunctions.testUsesColumn(test_type.selectedOptionValue)}}","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_type_label","dynamicPropertyPathList":[],"topRow":41.0,"bottomRow":45.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Test type","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"8126innnli","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"entity_label","topRow":36.0,"bottomRow":40.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Entity","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"xxne3k95re","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"remediation_label","topRow":31.0,"bottomRow":35.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Remediation","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"sep9atyjrz","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"proposed_remediation","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":31.0,"bottomRow":35.0,"parentRowSpace":10.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"},{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","placeholderText":"","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"64wi2smmqv","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2.0,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":"{{configured_tests.selectedRow.proposed_remediation.toString()}}"},{"boxShadow":"none","widgetName":"impact_label","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Impact","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"w95qf4wbbh","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"impact","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"},{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"te6aytmoby","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2.0,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":"{{configured_tests.selectedRow.impact.toString()}}"},{"boxShadow":"none","widgetName":"priority_label","topRow":21.0,"bottomRow":25.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Priority","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"cdh0l55671","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description_label","topRow":6.0,"bottomRow":10.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Description","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"3feekhrifa","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_activated_label","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Test activated?","labelTextSize":"0.875rem","rightColumn":16.0,"textAlign":"RIGHT","widgetId":"fhyvhgi2kv","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"project_label","topRow":11.0,"bottomRow":15.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Project","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"5636o88gjy","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"scenario_label","topRow":16.0,"bottomRow":20.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Scenario","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"427t2nfwg4","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":6.0,"bottomRow":10.0,"parentRowSpace":10.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[{"key":"onTextChanged"}],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"},{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":true,"onTextChanged":"","rightColumn":63.0,"widgetId":"tfjrwsdz52","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2.0,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":"{{configured_tests.selectedRow.description.toString()}}"},{"boxShadow":"none","widgetName":"project_id","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":11.0,"bottomRow":15.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.project_id.toString()}}","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Projects_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63.0,"widgetId":"65r2vzaur8","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"entity_id","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":36.0,"bottomRow":40.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.entity_id.toString()}}","animateLoading":false,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Entities_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"izx9fzc8pn","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{storeValue('entity_id','changed',false);resetWidget(column_name__edit); Entity_Columns_dropdown.run()}}"},{"widgetName":"test_activated","dynamicPropertyPathList":[{"key":"defaultCheckedState"}],"displayName":"Checkbox","iconSVG":"/static/media/icon.aaab032b.svg","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"CHECKBOX_WIDGET","alignWidget":"LEFT","hideCard":false,"animateLoading":true,"parentColumnSpace":8.345703125,"dynamicTriggerPathList":[],"leftColumn":18.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultCheckedState"}],"labelPosition":"Right","isDisabled":false,"key":"ghkmfs0se1","isRequired":false,"rightColumn":25.0,"widgetId":"khj2erpxi6","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":1.0,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultCheckedState":"{{configured_tests.selectedRow.test_activated === '✓' ? true : false}}"},{"boxShadow":"none","widgetName":"column_name__edit","isFilterable":true,"dynamicPropertyPathList":[{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":46.0,"bottomRow":50.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{appsmith.store.entity_id == \"original\" ? configured_tests.selectedRow.column_name : \"\"}}","animateLoading":true,"parentColumnSpace":7.861328125,"dynamicTriggerPathList":[],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"},{"key":"isVisible"}],"labelPosition":"Left","options":"{{Entity_Columns_dropdown.data}}","placeholderText":"","isDisabled":false,"key":"jd8s2sjaxp","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"l8cxmijtp5","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"{{JSFunctions.testUsesColumn(test_type.selectedOptionValue)}}","version":1.0,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}]}]},{"boxShadow":"none","widgetName":"close_icon","onClick":"{{closeModal('Edit_Test_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","topRow":0.0,"bottomRow":4.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":61.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"vjnergaobe","rightColumn":64.0,"iconName":"cross","widgetId":"0prs9d2nih","isVisible":true,"version":1.0,"parentId":"je98hr71pu","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"title","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":0.0,"bottomRow":4.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Edit Test","key":"oq4bpr35vs","rightColumn":41.0,"textAlign":"LEFT","widgetId":"57kk9tsddv","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"je98hr71pu","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"}],"isDisabled":false,"key":"synj2bi74d","rightColumn":196.171875,"detachFromLayout":true,"widgetId":"je98hr71pu","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"c14yy2u4yy","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"kyrf1m3b6j","height":782.0,"rightColumn":62.0,"detachFromLayout":true,"widgetId":"c14yy2u4yy","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":690.0},{"boxShadow":"none","widgetName":"Activate_Tests_Modal","isCanvas":true,"dynamicPropertyPathList":[{"key":"onClose"}],"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","topRow":27.0,"bottomRow":51.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClose"}],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas8","displayName":"Canvas","topRow":0.0,"bottomRow":200.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":190.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton2a","onClick":"{{closeModal('Activate_Tests_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","topRow":0.0,"bottomRow":4.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":62.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"stdiwmax70","rightColumn":64.0,"iconName":"cross","widgetId":"00dnxpxcjh","isVisible":true,"version":1.0,"parentId":"a7axo8fac8","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Activate_Tests_Form","isCanvas":true,"displayName":"Form","iconSVG":"/static/media/icon.ea3e08d1.svg","topRow":0.0,"bottomRow":18.0,"parentRowSpace":10.0,"type":"FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":6.9375,"leftColumn":4.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas9","displayName":"Canvas","topRow":0.0,"bottomRow":390.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":false,"hideCard":true,"minHeight":400.0,"parentColumnSpace":1.0,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"widgetName":"Text27","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Test activation","key":"6b5xi9jrls","rightColumn":48.0,"textAlign":"LEFT","widgetId":"pmvwma9e7p","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"ysscf8xzcv","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.25rem"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"bulk_update_tests","onClick":"{{JSFunctions.bulkUpdate(); resetWidget('configured_tests')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":12.0,"bottomRow":16.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":2.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Update ","key":"frf7athfec","rightColumn":59.0,"isDefaultClickDisabled":true,"widgetId":"6hh3v0i7ub","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"ysscf8xzcv","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"PRIMARY"},{"widgetName":"test_activated_bulk","dynamicPropertyPathList":[{"key":"defaultCheckedState"}],"displayName":"Checkbox","iconSVG":"/static/media/icon.aaab032b.svg","topRow":6.0,"bottomRow":10.0,"parentRowSpace":10.0,"type":"CHECKBOX_WIDGET","alignWidget":"LEFT","hideCard":false,"animateLoading":true,"parentColumnSpace":4.890625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"}],"labelPosition":"Right","isDisabled":false,"key":"e53whmzmfk","isRequired":false,"rightColumn":49.0,"widgetId":"32vuz2wi90","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"Activate tests","version":1.0,"parentId":"ysscf8xzcv","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultCheckedState":"true"}],"key":"3czhpgabad","rightColumn":166.5,"detachFromLayout":true,"widgetId":"ysscf8xzcv","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"o4d52pu954","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"rq5jcq01gh","backgroundColor":"#FFFFFF","rightColumn":62.0,"widgetId":"o4d52pu954","isVisible":true,"parentId":"a7axo8fac8","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"isDisabled":false,"key":"3czhpgabad","rightColumn":471.0,"detachFromLayout":true,"widgetId":"a7axo8fac8","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"3yro4n84bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"9j5ksppfl9","height":190.0,"rightColumn":43.0,"detachFromLayout":true,"widgetId":"3yro4n84bq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":464.0},{"boxShadow":"none","widgetName":"Test_Help","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","searchTags":["dialog","popup","notification"],"topRow":17.0,"bottomRow":41.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":29.578125,"leftColumn":17.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas10","displayName":"Canvas","topRow":0.0,"bottomRow":860.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":868.0,"parentColumnSpace":1.0,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton3","onClick":"{{closeModal('Test_Help')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":56.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":64.0,"iconName":"cross","widgetId":"gju2pxak2n","isVisible":true,"version":1.0,"parentId":"lg9t8q2l02","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"Text28","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Tests","key":"lwygtopls1","isDeprecated":false,"rightColumn":41.0,"textAlign":"LEFT","widgetId":"97p90gzohw","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"lg9t8q2l02","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button2","onClick":"{{closeModal('Test_Help')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","searchTags":["click","submit"],"topRow":79.0,"bottomRow":83.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":46.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"rpgyrik825","isDeprecated":false,"rightColumn":62.0,"isDefaultClickDisabled":true,"widgetId":"emnz2paixl","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"lg9t8q2l02","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"RichTextEditor1","displayName":"Rich Text Editor","iconSVG":"/static/media/icon.b35e139c.svg","labelText":"","searchTags":["input","rte"],"topRow":6.0,"bottomRow":77.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"RICH_TEXT_EDITOR_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":16.75,"dynamicTriggerPathList":[],"isToolbarHidden":true,"leftColumn":1.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"labelPosition":"Left","inputType":"html","isDisabled":true,"key":"xnsohys11k","isRequired":false,"isDeprecated":false,"rightColumn":62.0,"isDefaultClickDisabled":true,"widgetId":"1ad1wvey5j","isVisible":true,"version":1.0,"parentId":"lg9t8q2l02","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultText":"

The tests DOT will run are defined here.  

\n\n

Test fields

\n\n\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n
FieldDescriptionExample
test_activatedA toggle to turn a tests on/off without having to delete them.
project_idThe project, as defined under 'Projects'\n\t\t\t

ballroom_dancing

\n\t\t\t
descriptionDescription for the testTest that dancing shoes type is not null
priorityPriority of the test (1-10) where 1 indicates test fails of this test need urgent attention. Useful for dashboarding3
entityThe entity (database view as defined under 'Entities') that the test will run againstfandango_events
test_typeType of tests DOT performs. You will be prompted from a drop-down to set thisnot_null
column_nameColumn name a test should apply. Note, this isn't mandatory for all test typesdancing_shoes
test_parametersJSON record defining parameters for the test\n\t\t\t

{

\n\n\t\t\t

    form_name: 'dance_survey'

\n\n\t\t\t

}

\n\t\t\t
scenario_idInconsistent or Problematic (IoP) data scenario. You will be prompted from a drop-down to set this. These scenarios can be modified/extended by updating the data in the dot.scenarios tableINCONSISTENT-1
proposed_remediationOptional field to indicate remediation for tests that failEscalate to dance development team
\n\n

 

\n\n

Bulk Activating/Deactivating tests

\n\n

As well as activating and deactivating tests by editing individual tests, you can also bulk-select tests using the radio button on the far-left of the table, then clicking the 'Activate/Deactivate' button above the table.
\n
\nBulk Deletion of tests

\n\n

Similar to bulk activation/deactivation, you can select multiple tests and delete them by clicking the 'Delete tests' button above the table.

\n"}],"isDisabled":false,"key":"po978p5dvy","isDeprecated":false,"rightColumn":709.875,"detachFromLayout":true,"widgetId":"lg9t8q2l02","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"7l6rph2c1u","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"oicy2sed8g","height":868.0,"isDeprecated":false,"rightColumn":41.0,"detachFromLayout":true,"widgetId":"7l6rph2c1u","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":1084.0}]},"layoutOnLoadActions":[[{"id":"Tests_Test_Types_That_Use_Parameters","name":"Test_Types_That_Use_Parameters","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0}],[{"id":"Tests_Entities_dropdown","name":"Entities_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0},{"id":"Tests_Projects_dropdown","name":"Projects_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0},{"id":"Tests_Scenario_dropdown","name":"Scenario_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0},{"id":"Tests_Testtypes_dropdown","name":"Testtypes_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0}],[{"id":"Tests_Configured_tests_data","name":"Configured_tests_data","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["(configured_tests.pageNo - 1) * configured_tests.pageSize","col_select.selectedOptionValue","order_select.selectedOptionValue","configured_tests.searchText || \"\"","configured_tests.pageSize"],"timeoutInMillisecond":10000.0},{"id":"Tests_Test_Types_That_Use_Column","name":"Test_Types_That_Use_Column","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0}]],"validOnPageLoadActions":true,"id":"Tests","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":false},"publishedPage":{"name":"Tests","slug":"tests","layouts":[{"viewMode":false,"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1431.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":1150.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":59.0,"minHeight":1130.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"labelTextSize":"0.875rem","boxShadow":"none","backgroundColor":"#FFFFFF","widgetName":"Configured_Tests_Container","rightColumn":64.0,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0.0,"bottomRow":87.0,"parentRowSpace":10.0,"isVisible":"true","type":"CONTAINER_WIDGET","version":1.0,"parentId":"0","isLoading":false,"parentColumnSpace":19.75,"leftColumn":0.0,"borderRadius":"0px","children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":1020.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"IconButton2","onClick":"{{showModal('Test_Help')}}","buttonColor":"#3b82f6","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":0.0,"bottomRow":4.0,"tooltip":"Find out more about projects\n","parentRowSpace":10.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":29.111083984375,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":3.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":5.0,"iconName":"help","widgetId":"yc70otzr65","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"none","widgetName":"Add_Test_Button","onClick":"{{resetWidget('Add_configured_tests_form');\nshowModal('Add_Test_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"},{"key":"onClick"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":4.0,"bottomRow":8.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":51.0,"dynamicBindingPathList":[],"text":"Add test","isDisabled":"","key":"2ob5jed9vo","rightColumn":62.0,"isDefaultClickDisabled":true,"widgetId":"evkc3u31vk","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"none","widgetName":"Bulk_Delete_Button","onClick":"{{showModal('Delete_Tests_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":4.0,"bottomRow":8.0,"tooltip":"{{!JSFunctions.allowUpdate() ? 'First select the tests you want to delete':''}}","parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":40.0,"dynamicBindingPathList":[{"key":"isDisabled"},{"key":"tooltip"}],"text":"Delete tests","isDisabled":"{{!JSFunctions.allowUpdate()}}","key":"2ob5jed9vo","rightColumn":51.0,"isDefaultClickDisabled":true,"widgetId":"m8gxn5vx3a","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"none","multiRowSelection":true,"widgetName":"configured_tests","columnOrder":["customColumn2","test_activated","project_id","description","priority","entity_name","test_type","column_name","test_parameters","scenario_id","impact","proposed_remediation","entity_id","column_description","test_id","date_added","date_modified","last_updated_by"],"dynamicPropertyPathList":[{"key":"onPageChange"},{"key":"onRowSelected"},{"key":"primaryColumns.customColumn2.onClick"}],"isVisibleDownload":true,"topRow":10.0,"bottomRow":100.0,"parentRowSpace":10.0,"onPageChange":"{{Configured_tests_data.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"-1","parentColumnSpace":1.0,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"onSearchTextChanged"},{"key":"primaryColumns.customColumn2.onClick"},{"key":"onRowSelected"}],"dynamicBindingPathList":[{"key":"tableData"},{"key":"accentColor"},{"key":"primaryColumns.test_activated.computedValue"},{"key":"primaryColumns.project_id.computedValue"},{"key":"primaryColumns.test_id.computedValue"},{"key":"primaryColumns.scenario_id.computedValue"},{"key":"primaryColumns.priority.computedValue"},{"key":"primaryColumns.description.computedValue"},{"key":"primaryColumns.impact.computedValue"},{"key":"primaryColumns.proposed_remediation.computedValue"},{"key":"primaryColumns.entity_id.computedValue"},{"key":"primaryColumns.test_type.computedValue"},{"key":"primaryColumns.column_name.computedValue"},{"key":"primaryColumns.column_description.computedValue"},{"key":"primaryColumns.test_parameters.computedValue"},{"key":"primaryColumns.date_added.computedValue"},{"key":"primaryColumns.date_modified.computedValue"},{"key":"primaryColumns.last_updated_by.computedValue"},{"key":"derivedColumns.customColumn2.menuColor"},{"key":"primaryColumns.customColumn2.menuColor"},{"key":"derivedColumns.customColumn2.borderRadius"},{"key":"derivedColumns.customColumn2.boxShadow"},{"key":"derivedColumns.customColumn2.buttonColor"},{"key":"primaryColumns.customColumn2.buttonColor"},{"key":"derivedColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.entity_name.computedValue"}],"leftColumn":0.0,"primaryColumns":{"test_activated":{"index":0.0,"width":150.0,"id":"test_activated","horizontalAlignment":"CENTER","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_activated","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_activated ? '✓' : ''))}}","cellBackground":""},"project_id":{"index":1.0,"width":150.0,"id":"project_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"project_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.project_id))}}","cellBackground":""},"test_id":{"index":2.0,"width":150.0,"id":"test_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_id))}}","cellBackground":""},"scenario_id":{"index":3.0,"width":150.0,"id":"scenario_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"scenario_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.scenario_id))}}","cellBackground":""},"priority":{"index":4.0,"width":150.0,"id":"priority","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"priority","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.priority))}}","cellBackground":""},"description":{"index":5.0,"width":150.0,"id":"description","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"description","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.description))}}","cellBackground":""},"impact":{"index":6.0,"width":150.0,"id":"impact","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"impact","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.impact))}}","cellBackground":""},"proposed_remediation":{"index":7.0,"width":150.0,"id":"proposed_remediation","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"proposed_remediation","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.proposed_remediation))}}","cellBackground":""},"entity_id":{"index":8.0,"width":150.0,"id":"entity_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.entity_id))}}","cellBackground":""},"test_type":{"index":9.0,"width":150.0,"id":"test_type","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_type","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_type))}}","cellBackground":""},"column_name":{"index":10.0,"width":150.0,"id":"column_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"column_name","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.column_name))}}","cellBackground":""},"column_description":{"index":11.0,"width":150.0,"id":"column_description","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"column_description","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.column_description))}}","cellBackground":""},"test_parameters":{"index":12.0,"width":150.0,"id":"test_parameters","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_parameters","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_parameters))}}","cellBackground":""},"date_added":{"index":13.0,"width":150.0,"id":"date_added","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"date_added","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.date_added))}}","cellBackground":""},"date_modified":{"index":14.0,"width":150.0,"id":"date_modified","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"date_modified","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.date_modified))}}","cellBackground":""},"last_updated_by":{"index":15.0,"width":150.0,"id":"last_updated_by","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"last_updated_by","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.last_updated_by))}}","cellBackground":""},"customColumn2":{"index":17.0,"width":150.0,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","menuColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","borderRadius":"0px","boxShadow":"none","iconName":"","onClick":"{{storeValue(\"test_type\",\"original\", false); storeValue(\"entity_id\",\"original\", false); Entity_Columns_dropdown.run(); Test_parameters_sample.run(); showModal('Edit_Test_Modal')}}","buttonColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","buttonLabel":"{{configured_tests.sanitizedTableData.map((currentRow) => ( 'Edit'))}}","buttonVariant":"SECONDARY"},"entity_name":{"index":16.0,"width":150.0,"id":"entity_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_name","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.entity_name))}}","cellBackground":""}},"delimiter":",","onRowSelected":"","derivedColumns":{"customColumn2":{"index":17.0,"width":150.0,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","menuColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","borderRadius":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","boxShadow":"{{configured_tests.sanitizedTableData.map((currentRow) => ( 'none'))}}","iconName":"edit","onClick":"{{showModal('Edit_Test_Modal')}}","buttonColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","buttonLabel":"{{configured_tests.sanitizedTableData.map((currentRow) => ( 'Edit'))}}"}},"labelTextSize":"0.875rem","rightColumn":64.0,"textSize":"0.875rem","widgetId":"jabdu9f16g","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisibleFilters":true,"tableData":"{{Configured_tests_data.data}}","isVisible":"true","label":"Data","searchKey":"","version":3.0,"parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"isLoading":false,"isVisibleCompactMode":true,"onSearchTextChanged":"{{Configured_tests_data.run()}}","horizontalAlignment":"LEFT","isVisibleSearch":true,"childStylesheet":{"button":{"buttonColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"menuButton":{"menuColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"iconButton":{"menuColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"}},"borderRadius":"0.375rem","isVisiblePagination":true,"primaryColumnId":"test_id","verticalAlignment":"CENTER","columnSizeMap":{"task":245.0,"deliveryAddress":170.0,"step":62.0,"id":228.0,"status":75.0,"customColumn2":80.0,"customColumn1":83.0,"description":301.0,"priority":77.0,"entity_name":213.0,"project_id":102.0}},{"boxShadow":"none","widgetName":"order_by_label","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":4.0,"bottomRow":8.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":19.75,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Order By :","labelTextSize":"0.875rem","rightColumn":5.0,"textAlign":"LEFT","widgetId":"l8pgl90klz","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","fontSize":"0.80rem"},{"boxShadow":"none","widgetName":"title__main","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Tests","labelTextSize":"0.875rem","rightColumn":3.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"refresh_btn","onClick":"{{Configured_tests_data.run()}}","buttonColor":"#03B365","dynamicPropertyPathList":[{"key":"borderRadius"}],"topRow":4.0,"bottomRow":8.0,"parentRowSpace":10.0,"type":"ICON_BUTTON_WIDGET","parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":62.0,"dynamicBindingPathList":[],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":64.0,"iconName":"refresh","widgetId":"xp5u9a9nzq","isVisible":"true","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"9999px","buttonVariant":"TERTIARY"},{"boxShadow":"none","widgetName":"col_select","isFilterable":true,"dynamicPropertyPathList":[{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":4.0,"bottomRow":8.0,"parentRowSpace":10.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"test_id","animateLoading":true,"parentColumnSpace":22.171875,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":5.0,"dynamicBindingPathList":[{"key":"isVisible"},{"key":"accentColor"}],"options":"[\n\t{\n\t\t\"label\": \"test_id\",\n\t\t\"value\": \"test_id\"\n\t},\n\t{\n\t\t\"label\": \"description\",\n\t\t\"value\": \"description\"\n\t},\n\t{\n\t\t\"label\": \"test_activated\",\n\t\t\"value\": \"test_activated\"\n\t}\n]","placeholderText":"Select option","isDisabled":false,"key":"un5y91u42x","labelTextSize":"0.875rem","isRequired":false,"rightColumn":18.0,"widgetId":"kqo2g4nu86","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"{{Configured_tests_data.data.length > 0}}","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","onOptionChange":"{{Configured_tests_data.run()}}"},{"boxShadow":"none","widgetName":"order_select","isFilterable":true,"dynamicPropertyPathList":[{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":4.0,"bottomRow":8.0,"parentRowSpace":10.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"ASC","animateLoading":true,"parentColumnSpace":22.171875,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":18.0,"dynamicBindingPathList":[{"key":"isVisible"},{"key":"accentColor"}],"options":"[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]","placeholderText":"Select option","isDisabled":false,"key":"un5y91u42x","labelTextSize":"0.875rem","isRequired":false,"rightColumn":27.0,"widgetId":"abax6hf704","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"{{Configured_tests_data.data.length > 0}}","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","onOptionChange":"{{Configured_tests_data.run()}}"},{"boxShadow":"none","widgetName":"Bulk_update_Test_Activated","onClick":"{{showModal('Activate_Tests_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":4.0,"bottomRow":8.0,"tooltip":"{{!JSFunctions.allowUpdate() ? 'First select the tests you want to update':''}}","parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":29.0,"dynamicBindingPathList":[{"key":"isDisabled"},{"key":"tooltip"}],"text":"Activate/Deactivate tests","isDisabled":"{{!JSFunctions.allowUpdate()}}","key":"2ob5jed9vo","rightColumn":40.0,"isDefaultClickDisabled":true,"widgetId":"7puon64f02","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"}]}]},{"boxShadow":"none","widgetName":"Delete_Tests_Modal","dynamicPropertyPathList":[{"key":"onClose"}],"topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onClose"}],"leftColumn":21.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Canvas3","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":240.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Text12Copy","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":6.875,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Warning: This will also delete any related test results","labelTextSize":"0.875rem","rightColumn":63.0,"textAlign":"LEFT","widgetId":"fixqpc5ejk","isVisible":"true","fontStyle":"ITALIC","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"Alert_text","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Delete Tests","labelTextSize":"0.875rem","rightColumn":41.0,"textAlign":"LEFT","widgetId":"35yoxo4oec","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button1","onClick":"{{closeModal('Delete_Tests_Modal')}}","dynamicPropertyPathList":[],"buttonColor":"#03B365","topRow":17.0,"bottomRow":21.0,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[],"text":"Cancel","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":46.0,"isDefaultClickDisabled":true,"widgetId":"lryg8kw537","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","buttonVariant":"PRIMARY"},{"boxShadow":"none","widgetName":"Delete_Button","onClick":"{{JSFunctions.bulkDelete();resetWidget('configured_tests')}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#F22B2B","topRow":17.0,"bottomRow":21.0,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":48.0,"dynamicBindingPathList":[],"text":"Confirm","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":64.0,"isDefaultClickDisabled":true,"widgetId":"qq02lh7ust","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","buttonVariant":"PRIMARY"},{"boxShadow":"none","widgetName":"Text12","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":6.875,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Are you sure you want to delete selected tests?","labelTextSize":"0.875rem","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","isVisible":"true","version":1.0,"parentId":"i3whp03wf0","isLoading":false,"borderRadius":"0px"}],"height":240.0,"labelTextSize":"0.875rem","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"0px","width":456.0},{"boxShadow":"none","widgetName":"Add_Test_Modal","dynamicPropertyPathList":[{"key":"onClose"}],"topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onClose"}],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Canvas4","topRow":0.0,"bottomRow":1350.0,"parentRowSpace":1.0,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":852.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Add_configured_tests_form","backgroundColor":"white","rightColumn":63.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"5sr8herbsh","topRow":4.0,"bottomRow":133.0,"parentRowSpace":10.0,"isVisible":"true","type":"FORM_WIDGET","parentId":"9rhv3ioohq","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas2CopyCopy","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"23cekw8te4","containerStyle":"none","topRow":0.0,"bottomRow":710.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"5sr8herbsh","minHeight":460.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"column_name__add","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"},{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":46.0,"bottomRow":50.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"isVisible"},{"key":"options"}],"labelPosition":"Left","options":"{{Entity_Columns_dropdown.data}}","placeholderText":"Select value","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"84nba58c4d","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"{{JSFunctions.testUsesColumn(test_type__add.selectedOptionValue)}}","version":1.0,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{storeValue('selectValue','changed',false)}}"},{"boxShadow":"none","widgetName":"test_parameters_add_label","dynamicPropertyPathList":[{"key":"isVisible"}],"topRow":51.0,"bottomRow":55.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[{"key":"isVisible"}],"text":"Test parameters","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"e7fpxdmbas","isVisible":"{{JSFunctions.testUsesParameters(test_type__add.selectedOptionValue)}}","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_parameters__add","dynamicPropertyPathList":[{"key":"isVisible"},{"key":"isRequired"}],"displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":51.0,"bottomRow":63.0,"tooltip":"","parentRowSpace":10.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"isVisible"},{"key":"defaultText"},{"key":"placeholderText"},{"key":"isRequired"}],"labelStyle":"","inputType":"TEXT","placeholderText":"{{ test_type__add.selectedOptionValue == undefined || test_type__add.selectedOptionValue == '' || JSFunctions.testUsesParameters(test_type__add.selectedOptionValue) == false ? '' : JSON.stringify(JSON.parse((\"{\" + Test_parameters_sample.data[0].json_sample)+\"}\"), null, 1) ;\n}}","isDisabled":false,"key":"xsmln3d0zi","validation":"","labelTextSize":"0.875rem","isRequired":"{{JSFunctions.testUsesParameters(test_type__add.selectedOptionValue)}}","rightColumn":63.0,"widgetId":"0vsmrnpgzx","accentColor":"{{appsmith.theme.colors.primaryColor}}","errorMessage":"Invalid input","isVisible":"{{JSFunctions.testUsesParameters(test_type__add.selectedOptionValue)}}","label":"","version":2.0,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"regex":"","borderRadius":"0px","iconAlign":"left","defaultText":"{{appsmith.store.test_type !=\"changed\" ? \"\" : \"\"}}"},{"tabId":"","boxShadow":"NONE","widgetName":"buttons__add_label","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3.svg","topRow":63.0,"bottomRow":69.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":0.859375,"leftColumn":0.0,"children":[{"rightColumn":55.0,"widgetName":"Canvas7Copy","detachFromLayout":true,"widgetId":"yry0xubm38","containerStyle":"none","bottomRow":60.0,"topRow":0.0,"parentRowSpace":1.0,"isVisible":true,"type":"CANVAS_WIDGET","canExtend":false,"version":1.0,"parentId":"iekbyiuyrt","props":{"containerStyle":"none","canExtend":false,"detachFromLayout":true,"children":[]},"isLoading":false,"minHeight":4.0,"renderMode":"CANVAS","parentColumnSpace":1.0,"leftColumn":0.0,"children":[{"boxShadow":"none","widgetName":"Button2Copy","onClick":"{{closeModal('Add_Test_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":0.859375,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":47.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"xbq47k8pyb","rightColumn":64.0,"isDefaultClickDisabled":true,"widgetId":"8od8m0d991","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"yry0xubm38","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"resetFormOnClick":false,"boxShadow":"none","widgetName":"add_button","onClick":"{{Add_Test.run(() => { Configured_tests_data.run() ;closeModal('Add_Test_Modal');resetWidget('configured_tests')}, (error) => showAlert(`Error while adding test! \\n ${error}`,'error'))}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"FORM_BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"parentColumnSpace":0.859375,"leftColumn":22.10909090909091,"dynamicBindingPathList":[],"text":"Add Test","labelTextSize":"0.875rem","rightColumn":45.38181818181818,"isDefaultClickDisabled":true,"widgetId":"o9vf33rshp","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"yry0xubm38","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"0px","buttonVariant":"PRIMARY"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"reset_button","onClick":"","dynamicPropertyPathList":[],"buttonColor":"#03B365","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"FORM_BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"parentColumnSpace":0.859375,"leftColumn":0.0,"dynamicBindingPathList":[],"text":"Reset","labelTextSize":"0.875rem","rightColumn":20.945454545454545,"isDefaultClickDisabled":true,"widgetId":"04zb7vtzej","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"yry0xubm38","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"0px","buttonVariant":"SECONDARY"}]}],"borderWidth":"0","key":"ax0nu1bkg1","backgroundColor":"#FFFFFF","rightColumn":64.0,"widgetId":"iekbyiuyrt","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false},{"boxShadow":"none","widgetName":"test_type__add","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":42.0,"bottomRow":46.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"}],"labelPosition":"Left","options":"{{Testtypes_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"m85yad4rzn","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{resetWidget('test_parameters__add'); Test_parameters_sample.run(); Test_parameters_sample.run()}}"},{"boxShadow":"none","widgetName":"priority__add","isFilterable":false,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":21.0,"bottomRow":25.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"5","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"}],"labelPosition":"Left","options":"[\n {\"label\":\"1\", \"value\":\"1\"},\n {\"label\":\"2\", \"value\":\"2\"},\n\t {\"label\":\"3\", \"value\":\"3\"},\n\t {\"label\":\"4\", \"value\":\"4\"},\n\t {\"label\":\"5\", \"value\":\"5\"},\n\t {\"label\":\"6\", \"value\":\"6\"},\n {\"label\":\"7\", \"value\":\"7\"},\n\t {\"label\":\"8\", \"value\":\"8\"},\n\t {\"label\":\"9\", \"value\":\"9\"},\n\t {\"label\":\"10\", \"value\":\"10\"}\n\t \n]","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63.0,"widgetId":"gpyyu1qaqc","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"scenario_id__add","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":16.0,"bottomRow":20.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"}],"labelPosition":"Left","options":"{{Scenario_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63.0,"widgetId":"gtlpb903a5","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"column_name__add_label","dynamicPropertyPathList":[{"key":"isVisible"}],"topRow":46.0,"bottomRow":50.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[{"key":"isVisible"}],"text":"Column name","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"xot49u0zg3","isVisible":"{{JSFunctions.testUsesColumn(test_type__add.selectedOptionValue)}}","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_type__add_label","dynamicPropertyPathList":[],"topRow":41.0,"bottomRow":45.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Test type","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"nuhu3r9aqe","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"entity__add_label","topRow":36.0,"bottomRow":40.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Entity","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"j8wxd9dp81","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"remediation__add_label","topRow":31.0,"bottomRow":35.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Remediation","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"u0nzp5rxtm","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"proposed_remediation__add","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":31.0,"bottomRow":35.0,"parentRowSpace":10.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"c62ltocpde","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2.0,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":""},{"boxShadow":"none","widgetName":"impact__add_label","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Impact","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"mws99dmlod","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"impact__add","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"roc5pxt957","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2.0,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":""},{"boxShadow":"none","widgetName":"priority__add_label","topRow":21.0,"bottomRow":25.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Priority","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"dct6xo38p4","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description__add_label","topRow":6.0,"bottomRow":10.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Description","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"dzk9gc3sn3","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_activated__add_label","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Test activated?","labelTextSize":"0.875rem","rightColumn":16.0,"textAlign":"RIGHT","widgetId":"48ss6m9mvr","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"project__add_label","topRow":11.0,"bottomRow":15.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Project","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"4do6b5wc8u","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"scenario__add_label","topRow":16.0,"bottomRow":20.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Scenario","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"zwj0zk5v5d","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"23cekw8te4","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description__add","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":6.0,"bottomRow":10.0,"parentRowSpace":10.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[{"key":"onTextChanged"}],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","placeholderText":"Enter a test description","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":true,"onTextChanged":"","rightColumn":63.0,"widgetId":"g4r8p8rktn","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2.0,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":""},{"boxShadow":"none","widgetName":"project_id__add","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":11.0,"bottomRow":15.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"}],"labelPosition":"Left","options":"{{Projects_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63.0,"widgetId":"nfecm4c4o2","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"entity_id__add","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":36.0,"bottomRow":40.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"}],"labelPosition":"Left","options":"{{Entities_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"zqsy9kjq09","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"23cekw8te4","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{resetWidget('column_name__add'); Entity_Columns_dropdown.run()}}"},{"widgetName":"test_activated__add","dynamicPropertyPathList":[{"key":"defaultCheckedState"}],"displayName":"Checkbox","iconSVG":"/static/media/icon.aaab032b.svg","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"CHECKBOX_WIDGET","alignWidget":"LEFT","hideCard":false,"animateLoading":true,"parentColumnSpace":8.345703125,"dynamicTriggerPathList":[],"leftColumn":18.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"}],"labelPosition":"Right","isDisabled":false,"key":"ghkmfs0se1","isRequired":false,"rightColumn":25.0,"widgetId":"9kwfvwqq2b","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":1.0,"parentId":"23cekw8te4","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultCheckedState":"true"}]}]},{"widgetName":"title__add","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":8.125,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Add Test","key":"ih9plfos5c","rightColumn":17.0,"textAlign":"LEFT","widgetId":"aep0d3w9ub","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9rhv3ioohq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.25rem"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","isVisible":"true","version":1.0,"parentId":"vmorzie6eq","isLoading":false,"borderRadius":"0px"}],"height":852.0,"labelTextSize":"0.875rem","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"0px","width":662.0},{"boxShadow":"none","widgetName":"Edit_Test_Modal","isCanvas":true,"dynamicPropertyPathList":[{"key":"onClose"}],"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","topRow":21.0,"bottomRow":45.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":8.173828125,"dynamicTriggerPathList":[{"key":"onClose"}],"leftColumn":38.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas6","displayName":"Canvas","topRow":0.0,"bottomRow":780.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":782.0,"parentColumnSpace":1.0,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Edit_configured_tests_formCopy","backgroundColor":"white","rightColumn":63.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"y6ds8uxh4v","topRow":4.0,"bottomRow":76.0,"parentRowSpace":10.0,"isVisible":"{{!!configured_tests.selectedRow.test_id}}","type":"FORM_WIDGET","parentId":"je98hr71pu","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"isVisible"}],"borderRadius":"0px","children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas2Copy","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"9bhffofmqh","containerStyle":"none","topRow":0.0,"bottomRow":710.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"y6ds8uxh4v","minHeight":460.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"test_parameters_label","dynamicPropertyPathList":[{"key":"isVisible"}],"topRow":51.0,"bottomRow":55.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[{"key":"isVisible"}],"text":"Test parameters","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"f3u4ldeu22","isVisible":"{{JSFunctions.testUsesParameters(test_type.selectedOptionValue)}}","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_parameters","dynamicPropertyPathList":[{"key":"isVisible"},{"key":"isRequired"}],"displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":51.0,"bottomRow":62.0,"tooltip":"","parentRowSpace":10.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"},{"key":"accentColor"},{"key":"isRequired"},{"key":"placeholderText"},{"key":"isVisible"}],"labelStyle":"","inputType":"TEXT","placeholderText":"{{ JSON.stringify(JSON.parse((\"{\" + Test_parameters_sample.data[0].json_sample)+\"}\"), null, 1) ;\n}}\t","isDisabled":false,"key":"xsmln3d0zi","validation":"","labelTextSize":"0.875rem","isRequired":"{{JSFunctions.testUsesParameters(test_type.selectedOptionValue);}}","rightColumn":63.0,"widgetId":"950bx92vxg","accentColor":"{{appsmith.theme.colors.primaryColor}}","errorMessage":"Invalid input","isVisible":"{{JSFunctions.testUsesParameters(test_type.selectedOptionValue);}}","label":"","version":2.0,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"regex":"","borderRadius":"0px","iconAlign":"left","defaultText":"{{appsmith.store.test_type !=\"changed\" ? JSON.stringify(configured_tests.selectedRow.test_parameters,null,1) : ''; }}"},{"tabId":"","boxShadow":"NONE","widgetName":"Edit_buttons_container","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3.svg","topRow":63.0,"bottomRow":69.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":0.859375,"leftColumn":0.0,"children":[{"rightColumn":55.0,"widgetName":"Canvas7","detachFromLayout":true,"widgetId":"fkdkowa341","containerStyle":"none","bottomRow":60.0,"topRow":0.0,"parentRowSpace":1.0,"isVisible":true,"type":"CANVAS_WIDGET","canExtend":false,"version":1.0,"parentId":"oxsxa7mz6i","props":{"containerStyle":"none","canExtend":false,"detachFromLayout":true,"children":[]},"isLoading":false,"minHeight":4.0,"renderMode":"CANVAS","parentColumnSpace":1.0,"leftColumn":0.0,"children":[{"boxShadow":"none","widgetName":"Edit_Close_button","onClick":"{{closeModal('Edit_Test_Modal'); resetWidget('configured_tests')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":0.859375,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":47.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"xbq47k8pyb","rightColumn":64.0,"isDefaultClickDisabled":true,"widgetId":"t3tqs11i4e","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"fkdkowa341","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"resetFormOnClick":false,"boxShadow":"none","widgetName":"Edit_Update_Button","onClick":"{{Edit_Test.run(() => { Configured_tests_data.run() ;closeModal('Edit_Test_Modal');resetWidget('configured_tests')}, (error) => showAlert(`Error while updating test! \\n ${error}`,'error'))}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"FORM_BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"parentColumnSpace":0.859375,"leftColumn":22.0,"dynamicBindingPathList":[],"text":"Update","labelTextSize":"0.875rem","rightColumn":45.0,"isDefaultClickDisabled":true,"widgetId":"wifw3xta4o","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"fkdkowa341","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"0px","buttonVariant":"PRIMARY"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"Edit_Reset_Button","onClick":"","dynamicPropertyPathList":[],"buttonColor":"#03B365","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"FORM_BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"parentColumnSpace":0.859375,"leftColumn":0.0,"dynamicBindingPathList":[],"text":"Reset","labelTextSize":"0.875rem","rightColumn":20.945454545454545,"isDefaultClickDisabled":true,"widgetId":"ar84i0p37h","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"fkdkowa341","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"0px","buttonVariant":"SECONDARY"}]}],"borderWidth":"0","key":"ax0nu1bkg1","backgroundColor":"#FFFFFF","rightColumn":64.0,"widgetId":"oxsxa7mz6i","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false},{"boxShadow":"none","widgetName":"test_type","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":41.0,"bottomRow":45.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.test_type.toString(); }}","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Testtypes_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"0udd3otgd1","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{storeValue('test_type','changed',false);\tTest_parameters_sample.run()}}"},{"boxShadow":"none","widgetName":"priority","isFilterable":false,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":21.0,"bottomRow":25.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.priority.toString()}}","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"[\n {\"label\":\"1\", \"value\":\"1\"},\n {\"label\":\"2\", \"value\":\"2\"},\n\t {\"label\":\"3\", \"value\":\"3\"},\n\t {\"label\":\"4\", \"value\":\"4\"},\n\t {\"label\":\"5\", \"value\":\"5\"},\n\t {\"label\":\"6\", \"value\":\"6\"},\n {\"label\":\"7\", \"value\":\"7\"},\n\t {\"label\":\"8\", \"value\":\"8\"},\n\t {\"label\":\"9\", \"value\":\"9\"},\n\t {\"label\":\"10\", \"value\":\"10\"}\n\t \n]","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63.0,"widgetId":"fw1j0puk4u","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"scenario_id","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":16.0,"bottomRow":20.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.scenario_id.toString()}}","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Scenario_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63.0,"widgetId":"xf227a5k2x","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"column_name_label","dynamicPropertyPathList":[{"key":"isVisible"}],"topRow":46.0,"bottomRow":50.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[{"key":"isVisible"}],"text":"Column name","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"l3cyqk3sj5","isVisible":"{{JSFunctions.testUsesColumn(test_type.selectedOptionValue)}}","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_type_label","dynamicPropertyPathList":[],"topRow":41.0,"bottomRow":45.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Test type","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"8126innnli","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"entity_label","topRow":36.0,"bottomRow":40.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Entity","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"xxne3k95re","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"remediation_label","topRow":31.0,"bottomRow":35.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Remediation","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"sep9atyjrz","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"proposed_remediation","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":31.0,"bottomRow":35.0,"parentRowSpace":10.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"},{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","placeholderText":"","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"64wi2smmqv","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2.0,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":"{{configured_tests.selectedRow.proposed_remediation.toString()}}"},{"boxShadow":"none","widgetName":"impact_label","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Impact","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"w95qf4wbbh","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"impact","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"},{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"te6aytmoby","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2.0,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":"{{configured_tests.selectedRow.impact.toString()}}"},{"boxShadow":"none","widgetName":"priority_label","topRow":21.0,"bottomRow":25.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Priority","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"cdh0l55671","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description_label","topRow":6.0,"bottomRow":10.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Description","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"3feekhrifa","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"test_activated_label","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Test activated?","labelTextSize":"0.875rem","rightColumn":16.0,"textAlign":"RIGHT","widgetId":"fhyvhgi2kv","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"project_label","topRow":11.0,"bottomRow":15.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Project","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"5636o88gjy","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"scenario_label","topRow":16.0,"bottomRow":20.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":0.0,"dynamicBindingPathList":[],"text":"Scenario","labelTextSize":"0.875rem","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"427t2nfwg4","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"9bhffofmqh","isLoading":false,"borderRadius":"0px","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","topRow":6.0,"bottomRow":10.0,"parentRowSpace":10.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":false,"parentColumnSpace":10.5390625,"dynamicTriggerPathList":[{"key":"onTextChanged"}],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"},{"key":"accentColor"}],"labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"xsmln3d0zi","validation":"true","labelTextSize":"0.875rem","isRequired":true,"onTextChanged":"","rightColumn":63.0,"widgetId":"tfjrwsdz52","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"true","label":"","version":2.0,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"borderRadius":"0px","iconAlign":"left","defaultText":"{{configured_tests.selectedRow.description.toString()}}"},{"boxShadow":"none","widgetName":"project_id","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":11.0,"bottomRow":15.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.project_id.toString()}}","animateLoading":true,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Projects_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"b6gheq32cd","labelTextSize":"0.875rem","isRequired":true,"rightColumn":63.0,"widgetId":"65r2vzaur8","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"entity_id","isFilterable":true,"dynamicPropertyPathList":[{"key":"onOptionChange"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":36.0,"bottomRow":40.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{configured_tests.selectedRow.entity_id.toString()}}","animateLoading":false,"parentColumnSpace":6.408203125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{Entities_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"8axs1fu8up","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"izx9fzc8pn","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","onOptionChange":"{{storeValue('entity_id','changed',false);resetWidget(column_name__edit); Entity_Columns_dropdown.run()}}"},{"widgetName":"test_activated","dynamicPropertyPathList":[{"key":"defaultCheckedState"}],"displayName":"Checkbox","iconSVG":"/static/media/icon.aaab032b.svg","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"CHECKBOX_WIDGET","alignWidget":"LEFT","hideCard":false,"animateLoading":true,"parentColumnSpace":8.345703125,"dynamicTriggerPathList":[],"leftColumn":18.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultCheckedState"}],"labelPosition":"Right","isDisabled":false,"key":"ghkmfs0se1","isRequired":false,"rightColumn":25.0,"widgetId":"khj2erpxi6","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":1.0,"parentId":"9bhffofmqh","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultCheckedState":"{{configured_tests.selectedRow.test_activated === '✓' ? true : false}}"},{"boxShadow":"none","widgetName":"column_name__edit","isFilterable":true,"dynamicPropertyPathList":[{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":46.0,"bottomRow":50.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{appsmith.store.entity_id == \"original\" ? configured_tests.selectedRow.column_name : \"\"}}","animateLoading":true,"parentColumnSpace":7.861328125,"dynamicTriggerPathList":[],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"},{"key":"isVisible"}],"labelPosition":"Left","options":"{{Entity_Columns_dropdown.data}}","placeholderText":"","isDisabled":false,"key":"jd8s2sjaxp","labelTextSize":"0.875rem","isRequired":false,"rightColumn":63.0,"widgetId":"l8cxmijtp5","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":"{{JSFunctions.testUsesColumn(test_type.selectedOptionValue)}}","version":1.0,"parentId":"9bhffofmqh","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}]}]},{"boxShadow":"none","widgetName":"close_icon","onClick":"{{closeModal('Edit_Test_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","topRow":0.0,"bottomRow":4.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":61.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"vjnergaobe","rightColumn":64.0,"iconName":"cross","widgetId":"0prs9d2nih","isVisible":true,"version":1.0,"parentId":"je98hr71pu","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"title","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":0.0,"bottomRow":4.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Edit Test","key":"oq4bpr35vs","rightColumn":41.0,"textAlign":"LEFT","widgetId":"57kk9tsddv","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"je98hr71pu","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"}],"isDisabled":false,"key":"synj2bi74d","rightColumn":196.171875,"detachFromLayout":true,"widgetId":"je98hr71pu","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"c14yy2u4yy","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"kyrf1m3b6j","height":782.0,"rightColumn":62.0,"detachFromLayout":true,"widgetId":"c14yy2u4yy","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":690.0},{"boxShadow":"none","widgetName":"Activate_Tests_Modal","isCanvas":true,"dynamicPropertyPathList":[{"key":"onClose"}],"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","topRow":27.0,"bottomRow":51.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClose"}],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas8","displayName":"Canvas","topRow":0.0,"bottomRow":200.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":190.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton2a","onClick":"{{closeModal('Activate_Tests_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","topRow":0.0,"bottomRow":4.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":62.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"stdiwmax70","rightColumn":64.0,"iconName":"cross","widgetId":"00dnxpxcjh","isVisible":true,"version":1.0,"parentId":"a7axo8fac8","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Activate_Tests_Form","isCanvas":true,"displayName":"Form","iconSVG":"/static/media/icon.ea3e08d1.svg","topRow":0.0,"bottomRow":18.0,"parentRowSpace":10.0,"type":"FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":6.9375,"leftColumn":4.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas9","displayName":"Canvas","topRow":0.0,"bottomRow":390.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":false,"hideCard":true,"minHeight":400.0,"parentColumnSpace":1.0,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"widgetName":"Text27","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Test activation","key":"6b5xi9jrls","rightColumn":48.0,"textAlign":"LEFT","widgetId":"pmvwma9e7p","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"ysscf8xzcv","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.25rem"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"bulk_update_tests","onClick":"{{JSFunctions.bulkUpdate(); resetWidget('configured_tests')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":12.0,"bottomRow":16.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":2.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Update ","key":"frf7athfec","rightColumn":59.0,"isDefaultClickDisabled":true,"widgetId":"6hh3v0i7ub","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"ysscf8xzcv","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"PRIMARY"},{"widgetName":"test_activated_bulk","dynamicPropertyPathList":[{"key":"defaultCheckedState"}],"displayName":"Checkbox","iconSVG":"/static/media/icon.aaab032b.svg","topRow":6.0,"bottomRow":10.0,"parentRowSpace":10.0,"type":"CHECKBOX_WIDGET","alignWidget":"LEFT","hideCard":false,"animateLoading":true,"parentColumnSpace":4.890625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"}],"labelPosition":"Right","isDisabled":false,"key":"e53whmzmfk","isRequired":false,"rightColumn":49.0,"widgetId":"32vuz2wi90","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"Activate tests","version":1.0,"parentId":"ysscf8xzcv","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultCheckedState":"true"}],"key":"3czhpgabad","rightColumn":166.5,"detachFromLayout":true,"widgetId":"ysscf8xzcv","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"o4d52pu954","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"rq5jcq01gh","backgroundColor":"#FFFFFF","rightColumn":62.0,"widgetId":"o4d52pu954","isVisible":true,"parentId":"a7axo8fac8","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"isDisabled":false,"key":"3czhpgabad","rightColumn":471.0,"detachFromLayout":true,"widgetId":"a7axo8fac8","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"3yro4n84bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"9j5ksppfl9","height":190.0,"rightColumn":43.0,"detachFromLayout":true,"widgetId":"3yro4n84bq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":464.0},{"boxShadow":"none","widgetName":"Test_Help","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","searchTags":["dialog","popup","notification"],"topRow":17.0,"bottomRow":41.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":29.578125,"leftColumn":17.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas10","displayName":"Canvas","topRow":0.0,"bottomRow":860.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":868.0,"parentColumnSpace":1.0,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton3","onClick":"{{closeModal('Test_Help')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":56.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":64.0,"iconName":"cross","widgetId":"gju2pxak2n","isVisible":true,"version":1.0,"parentId":"lg9t8q2l02","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"Text28","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Tests","key":"lwygtopls1","isDeprecated":false,"rightColumn":41.0,"textAlign":"LEFT","widgetId":"97p90gzohw","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"lg9t8q2l02","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button2","onClick":"{{closeModal('Test_Help')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","searchTags":["click","submit"],"topRow":79.0,"bottomRow":83.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":46.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"rpgyrik825","isDeprecated":false,"rightColumn":62.0,"isDefaultClickDisabled":true,"widgetId":"emnz2paixl","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"lg9t8q2l02","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"RichTextEditor1","displayName":"Rich Text Editor","iconSVG":"/static/media/icon.b35e139c.svg","labelText":"","searchTags":["input","rte"],"topRow":6.0,"bottomRow":77.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"RICH_TEXT_EDITOR_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":16.75,"dynamicTriggerPathList":[],"isToolbarHidden":true,"leftColumn":1.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"labelPosition":"Left","inputType":"html","isDisabled":true,"key":"xnsohys11k","isRequired":false,"isDeprecated":false,"rightColumn":62.0,"isDefaultClickDisabled":true,"widgetId":"1ad1wvey5j","isVisible":true,"version":1.0,"parentId":"lg9t8q2l02","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultText":"

The tests DOT will run are defined here. 

\n\n

Test fields

\n\n\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n
FieldDescriptionExample
test_activatedA toggle to turn a tests on/off without having to delete them.
project_idThe project, as defined under 'Projects'\n\t\t\t

ballroom_dancing

\n\t\t\t
descriptionDescription for the testTest that dancing shoes type is not null
priorityPriority of the test (1-10) where 1 indicates test fails of this test need urgent attention. Useful for dashboarding3
entityThe entity (database view as defined under 'Entities') that the test will run againstfandango_events
test_typeType of tests DOT performs. You will be prompted from a drop-down to set thisnot_null
column_nameColumn name a test should apply. Note, this isn't mandatory for all test typesdancing_shoes
test_parametersJSON record defining parameters for the test\n\t\t\t

{

\n\n\t\t\t

    form_name: 'dance_survey'

\n\n\t\t\t

}

\n\t\t\t
scenario_idInconsistent or Problematic (IoP) data scenario. You will be prompted from a drop-down to set this. These scenarios can be modified/extended by updating the data in the dot.scenarios tableINCONSISTENT-1
proposed_remediationOptional field to indicate remediation for tests that failEscalate to dance development team
\n\n

 

\n\n

Bulk Activating/Deactivating tests

\n\n

As well as activating and deactivating tests by editing individual tests, you can also bulk-select tests using the radio button on the far-left of the table, then clicking the 'Activate/Deactivate' button above the table.
\n
\nBulk Deletion of tests

\n\n

Similar to bulk activation/deactivation, you can select multiple tests and delete them by clicking the 'Delete tests' button above the table.

\n"}],"isDisabled":false,"key":"po978p5dvy","isDeprecated":false,"rightColumn":709.875,"detachFromLayout":true,"widgetId":"lg9t8q2l02","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"7l6rph2c1u","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"oicy2sed8g","height":868.0,"isDeprecated":false,"rightColumn":41.0,"detachFromLayout":true,"widgetId":"7l6rph2c1u","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":1084.0}]},"layoutOnLoadActions":[[{"id":"Tests_Test_Types_That_Use_Parameters","name":"Test_Types_That_Use_Parameters","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0}],[{"id":"Tests_Entities_dropdown","name":"Entities_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0},{"id":"Tests_Projects_dropdown","name":"Projects_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0},{"id":"Tests_Scenario_dropdown","name":"Scenario_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0},{"id":"Tests_Testtypes_dropdown","name":"Testtypes_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0}],[{"id":"Tests_Configured_tests_data","name":"Configured_tests_data","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["(configured_tests.pageNo - 1) * configured_tests.pageSize","col_select.selectedOptionValue","order_select.selectedOptionValue","configured_tests.searchText || \"\"","configured_tests.pageSize"],"timeoutInMillisecond":10000.0},{"id":"Tests_Test_Types_That_Use_Column","name":"Test_Types_That_Use_Column","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0}]],"validOnPageLoadActions":true,"id":"Tests","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":false},"deleted":false,"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e28f5e3ca9d4fca99f56c"},{"unpublishedPage":{"name":"Projects","slug":"projects","layouts":[{"viewMode":false,"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1174.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":980.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":59.0,"minHeight":900.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container1","borderColor":"#fff","dynamicPropertyPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"topRow":0.0,"bottomRow":86.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":880.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"Text16","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"}],"text":"Projects","labelTextSize":"0.875rem","rightColumn":4.0,"disableLink":false,"textAlign":"LEFT","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"{{appsmith.theme.colors.primaryColor}}","widgetId":"xp5u9a9nzq","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","leftColumn":60.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"buttonVariant":"PRIMARY","isDisabled":false},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":7.0,"isSortable":true,"onPageChange":"{{SelectQuery.run()}}","type":"TABLE_WIDGET","animateLoading":true,"dynamicBindingPathList":[{"key":"tableData"},{"key":"derivedColumns.customColumn1.buttonLabel"},{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"accentColor"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"primaryColumns.customColumn1.borderRadius"},{"key":"primaryColumns.project_id.computedValue"},{"key":"primaryColumns.description.computedValue"},{"key":"primaryColumns.active.computedValue"},{"key":"primaryColumns.project_schema.computedValue"},{"key":"primaryColumns.contacts.computedValue"},{"key":"derivedColumns.customColumn2.boxShadow"},{"key":"primaryColumns.customColumn2.boxShadow"},{"key":"derivedColumns.customColumn2.borderRadius"},{"key":"primaryColumns.customColumn2.borderRadius"},{"key":"derivedColumns.customColumn2.buttonColor"},{"key":"primaryColumns.customColumn2.buttonColor"},{"key":"derivedColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.date_added.computedValue"},{"key":"primaryColumns.date_modified.computedValue"},{"key":"primaryColumns.last_updated_by.computedValue"}],"leftColumn":0.0,"delimiter":",","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisibleFilters":true,"isVisible":"true","enableClientSideSearch":true,"version":3.0,"totalRecordsCount":0.0,"isLoading":false,"onSearchTextChanged":"{{SelectQuery.run()}}","childStylesheet":{"button":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}"},"iconButton":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","menuColor":"{{appsmith.theme.colors.primaryColor}}"},"menuButton":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","menuColor":"{{appsmith.theme.colors.primaryColor}}"}},"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","primaryColumnId":"project_id","columnSizeMap":{"task":245.0,"step":62.0,"status":75.0,"description":390.0,"created_on":290.0,"date_added":177.0},"widgetName":"data_table","defaultPageSize":0.0,"columnOrder":["customColumn2","customColumn1","project_id","active","description","project_schema","contacts","date_added","date_modified","last_updated_by"],"dynamicPropertyPathList":[{"key":"primaryColumns.customColumn1.borderRadius"}],"displayName":"Table","bottomRow":86.0,"parentRowSpace":10.0,"defaultSelectedRow":"0","hideCard":false,"parentColumnSpace":16.3125,"dynamicTriggerPathList":[{"key":"primaryColumns.customColumn1.onClick"},{"key":"onPageChange"},{"key":"onSearchTextChanged"},{"key":"onSort"},{"key":"primaryColumns.customColumn2.onClick"}],"primaryColumns":{"customColumn1":{"isCellVisible":true,"boxShadow":"none","isDerived":true,"computedValue":"","onClick":"{{showModal('Delete_Modal')}}","buttonColor":"#DD4B34","buttonStyle":"rgb(3, 179, 101)","index":5.0,"isVisible":true,"label":"Delete","labelColor":"#FFFFFF","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Delete'))}}","columnType":"button","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","menuColor":"#03B365","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF","buttonVariant":"SECONDARY"},"project_id":{"index":0.0,"width":150.0,"id":"project_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"project_id","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.project_id))}}","cellBackground":""},"description":{"index":1.0,"width":150.0,"id":"description","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"description","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.description))}}","cellBackground":""},"active":{"index":3.0,"width":150.0,"id":"active","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"active","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.active ? '✓' : ''))}}","cellBackground":""},"project_schema":{"index":4.0,"width":150.0,"id":"project_schema","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"project_schema","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.project_schema))}}","cellBackground":""},"contacts":{"index":5.0,"width":150.0,"id":"contacts","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"contacts","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.contacts))}}","cellBackground":""},"customColumn2":{"index":7.0,"width":150.0,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","boxShadow":"{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","buttonColor":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Edit'))}}","onClick":"{{showModal('Edit_Modal')}}","buttonVariant":"SECONDARY"},"date_added":{"index":5.0,"width":150.0,"id":"date_added","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"date","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"date_added","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.date_added))}}","cellBackground":"","iconName":""},"date_modified":{"index":6.0,"width":150.0,"id":"date_modified","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"date","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"date_modified","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.date_modified))}}","cellBackground":"","iconName":""},"last_updated_by":{"index":7.0,"width":150.0,"id":"last_updated_by","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"last_updated_by","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.last_updated_by))}}","cellBackground":""}},"key":"zba5qel0au","derivedColumns":{"customColumn1":{"isCellVisible":true,"boxShadow":"none","isDerived":true,"computedValue":"","onClick":"{{showModal('Delete_Modal')}}","buttonColor":"#DD4B34","buttonStyle":"rgb(3, 179, 101)","index":5.0,"isVisible":true,"label":"Delete","labelColor":"#FFFFFF","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Delete'))}}","columnType":"button","borderRadius":"0px","menuColor":"#03B365","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF"},"customColumn2":{"index":7.0,"width":150.0,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","boxShadow":"{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","buttonColor":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Edit'))}}"}},"labelTextSize":"0.875rem","rightColumn":64.0,"textSize":"0.875rem","widgetId":"m2y9g15vra","tableData":"{{SelectQuery.data}}","label":"Data","searchKey":"","parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"renderMode":"CANVAS","horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER"},{"boxShadow":"none","widgetName":"Add_Test_Button","onClick":"{{showModal('Insert_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":49.0,"dynamicBindingPathList":[],"text":"Add project","isDisabled":"","key":"2ob5jed9vo","rightColumn":60.0,"isDefaultClickDisabled":true,"widgetId":"q2nplo7shi","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"none","widgetName":"IconButton2","onClick":"{{showModal('Help')}}","buttonColor":"#3b82f6","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"tooltip":"Find out more about projects\n","parentRowSpace":10.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":29.111083984375,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":4.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":6.0,"iconName":"help","widgetId":"voej6bbkxb","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"}]}],"borderWidth":"0","labelTextSize":"0.875rem","backgroundColor":"#FFFFFF","rightColumn":63.0,"widgetId":"mvubsemxfo","containerStyle":"card","isVisible":"true","version":1.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"Delete_Modal","topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas3","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":240.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Alert_text","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Delete Row","labelTextSize":"0.875rem","rightColumn":41.0,"textAlign":"LEFT","widgetId":"35yoxo4oec","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button1","onClick":"{{closeModal('Delete_Modal')}}","dynamicPropertyPathList":[],"buttonColor":"#2E3D49","topRow":17.0,"bottomRow":21.0,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"text":"Cancel","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":46.0,"isDefaultClickDisabled":true,"widgetId":"lryg8kw537","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"none","widgetName":"Delete_Button","onClick":"{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#DD4B34","topRow":17.0,"bottomRow":21.0,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":46.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"text":"Confirm","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":64.0,"isDefaultClickDisabled":true,"widgetId":"qq02lh7ust","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"PRIMARY"},{"boxShadow":"none","widgetName":"Text12","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":6.875,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[{"key":"text"}],"text":"Are you sure you want to delete the \"{{project_id_edit.text}}\" project?","labelTextSize":"0.875rem","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","isVisible":"true","fontStyle":"","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"1rem"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","isVisible":"true","version":1.0,"parentId":"i3whp03wf0","isLoading":false,"borderRadius":"0px"}],"height":240.0,"labelTextSize":"0.875rem","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":456.0},{"boxShadow":"none","widgetName":"Insert_Modal","topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Canvas4","topRow":0.0,"bottomRow":630.0,"parentRowSpace":1.0,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":604.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"schema":{"__root_schema__":{"children":{"project_id":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.project_id))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"Brac","isCustomField":false,"accessor":"project_id","identifier":"project_id","position":1.0,"originalIdentifier":"project_id","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Project Id"},"description":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.description))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"Brac project","isCustomField":false,"accessor":"description","identifier":"description","position":2.0,"originalIdentifier":"description","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Description"},"created_on":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.created_on))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"2021-12-07T00:00:00Z","isCustomField":false,"accessor":"created_on","identifier":"created_on","position":3.0,"originalIdentifier":"created_on","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Created On"},"active":{"children":{},"dataType":"boolean","defaultValue":"{{((sourceData, formData, fieldState) => (`true`))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Switch","sourceData":true,"isCustomField":false,"accessor":"active","identifier":"active","position":0.0,"originalIdentifier":"active","boxShadow":"none","accentColor":"{{appsmith.theme.colors.primaryColor}}","alignWidget":"LEFT","isDisabled":false,"isRequired":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Active"},"project_schema":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.project_schema))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Select","sourceData":"public","isCustomField":false,"accessor":"project_schema","identifier":"project_schema","position":4.0,"originalIdentifier":"project_schema","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":true,"label":"Project Schema","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{DB_Schemas_dropdown.data}}"},"contacts":{"children":{},"dataType":"null","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.contacts))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","isCustomField":false,"accessor":"contacts","identifier":"contacts","position":5.0,"originalIdentifier":"contacts","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Contacts"}},"dataType":"object","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Object","sourceData":{"project_id":"Brac","description":"Brac project","created_on":"2021-12-07T00:00:00Z","active":true,"project_schema":"public"},"isCustomField":false,"accessor":"__root_schema__","identifier":"__root_schema__","position":-1.0,"originalIdentifier":"__root_schema__","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none","isDisabled":false,"isRequired":false,"isVisible":true,"labelTextSize":"0.875rem","label":""}},"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"insert_form","submitButtonStyles":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","buttonVariant":"PRIMARY"},"dynamicPropertyPathList":[{"key":"schema.__root_schema__.children.date_of_birth.defaultValue"},{"key":"schema.__root_schema__.children.col5.defaultValue"},{"key":"schema.__root_schema__.children.col4.defaultValue"},{"key":"onSubmit"},{"key":"schema.__root_schema__.children.active.defaultValue"}],"displayName":"JSON Form","iconSVG":"/static/media/icon.6bacf7df.svg","onSubmit":"{{InsertQuery.run(\n\t() => SelectQuery.run()\n\t\t\t\t\t.then(() => closeModal('Insert_Modal')), \n\t(error) => showAlert(`Error while inserting resource!\\n ${error}`,'error'))\n}}","topRow":0.0,"bottomRow":59.0,"fieldLimitExceeded":false,"parentRowSpace":10.0,"title":"Insert Project","type":"JSON_FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":8.125,"dynamicTriggerPathList":[{"key":"onSubmit"}],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"schema.__root_schema__.defaultValue"},{"key":"schema.__root_schema__.borderRadius"},{"key":"schema.__root_schema__.cellBorderRadius"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"submitButtonStyles.buttonColor"},{"key":"submitButtonStyles.borderRadius"},{"key":"resetButtonStyles.borderRadius"},{"key":"resetButtonStyles.buttonColor"},{"key":"schema.__root_schema__.children.project_id.defaultValue"},{"key":"schema.__root_schema__.children.project_id.borderRadius"},{"key":"schema.__root_schema__.children.project_id.accentColor"},{"key":"schema.__root_schema__.children.description.defaultValue"},{"key":"schema.__root_schema__.children.description.borderRadius"},{"key":"schema.__root_schema__.children.description.accentColor"},{"key":"schema.__root_schema__.children.created_on.defaultValue"},{"key":"schema.__root_schema__.children.created_on.borderRadius"},{"key":"schema.__root_schema__.children.created_on.accentColor"},{"key":"schema.__root_schema__.children.active.defaultValue"},{"key":"schema.__root_schema__.children.active.accentColor"},{"key":"schema.__root_schema__.children.project_schema.defaultValue"},{"key":"schema.__root_schema__.children.project_schema.borderRadius"},{"key":"schema.__root_schema__.children.project_schema.accentColor"},{"key":"schema.__root_schema__.children.contacts.defaultValue"},{"key":"schema.__root_schema__.children.contacts.borderRadius"},{"key":"schema.__root_schema__.children.contacts.accentColor"},{"key":"schema.__root_schema__.children.project_schema.options"}],"sourceData":"{}","showReset":true,"resetButtonLabel":"Reset","key":"h9l9ozr8op","labelTextSize":"0.875rem","backgroundColor":"#fff","rightColumn":64.0,"autoGenerateForm":true,"widgetId":"o8oiq6vwkk","resetButtonStyles":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","buttonVariant":"SECONDARY"},"isVisible":"true","version":1.0,"parentId":"9rhv3ioohq","renderMode":"CANVAS","isLoading":false,"scrollContents":true,"fixedFooter":true,"submitButtonLabel":"Submit","childStylesheet":{"CHECKBOX":{"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"ARRAY":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none"},"CURRENCY_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"DATEPICKER":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"PHONE_NUMBER_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"OBJECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none"},"MULTISELECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"SELECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"NUMBER_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"PASSWORD_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"EMAIL_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"RADIO_GROUP":{"boxShadow":"none","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"SWITCH":{"boxShadow":"none","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"TEXT_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"MULTILINE_TEXT_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"}},"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","isVisible":"true","version":1.0,"parentId":"vmorzie6eq","isLoading":false,"borderRadius":"0px"}],"height":604.0,"labelTextSize":"0.875rem","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"0px","width":532.0},{"boxShadow":"none","widgetName":"Edit_Modal","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","searchTags":["dialog","popup","notification"],"topRow":24.0,"bottomRow":48.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":17.902099609375,"leftColumn":18.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas5","displayName":"Canvas","topRow":0.0,"bottomRow":550.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":556.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton1","onClick":"{{closeModal('Edit_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":56.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"9joaqbu71a","isDeprecated":false,"rightColumn":64.0,"iconName":"cross","widgetId":"geice3cprs","isVisible":true,"version":1.0,"parentId":"sexi2d6ncw","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"Text17","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Edit Project","key":"xaw88jk3n3","isDeprecated":false,"rightColumn":23.0,"textAlign":"LEFT","widgetId":"kw6asb7fdj","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"sexi2d6ncw","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"edit_form","isCanvas":true,"displayName":"Form","iconSVG":"/static/media/icon.ea3e08d1.svg","searchTags":["group"],"topRow":6.0,"bottomRow":52.0,"parentRowSpace":10.0,"type":"FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":9.1875,"leftColumn":1.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas6","displayName":"Canvas","topRow":0.0,"bottomRow":430.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":false,"hideCard":true,"minHeight":400.0,"parentColumnSpace":1.0,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"widgetName":"Text19CopyCopy","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":25.0,"bottomRow":29.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":7.01904296875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Contacts","key":"xaw88jk3n3","isDeprecated":false,"rightColumn":24.0,"textAlign":"LEFT","widgetId":"mlvyhr5x9t","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"contacts_edit","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","searchTags":["form","text input","number","textarea"],"topRow":25.0,"bottomRow":34.0,"parentRowSpace":10.0,"labelWidth":5.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":true,"parentColumnSpace":7.15234375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":26.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultText"}],"labelPosition":"Left","labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"102badep9z","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"widgetId":"61tgu2vd6a","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":2.0,"parentId":"h3rsii419p","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","iconAlign":"left","defaultText":"{{data_table.selectedRow.contacts}}"},{"widgetName":"Text18Copy","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":6.619140625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Project actived?","key":"xaw88jk3n3","isDeprecated":false,"rightColumn":24.0,"textAlign":"LEFT","widgetId":"v6ohs8z8vg","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.875rem"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"close_button","onClick":"{{closeModal('Edit_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":37.0,"bottomRow":41.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":45.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","key":"th8mawd2a2","isDeprecated":false,"rightColumn":63.0,"isDefaultClickDisabled":true,"widgetId":"8vcvnxan88","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY"},{"boxShadow":"none","widgetName":"project_description_edit","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","searchTags":["form","text input","number","textarea"],"topRow":10.0,"bottomRow":19.0,"parentRowSpace":10.0,"labelWidth":5.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":true,"parentColumnSpace":7.15234375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":26.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultText"}],"labelPosition":"Left","labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"102badep9z","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"widgetId":"77gof699us","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":2.0,"parentId":"h3rsii419p","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","iconAlign":"left","defaultText":"{{data_table.selectedRow.description}}"},{"widgetName":"Text19Copy","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":20.0,"bottomRow":24.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":7.01904296875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Project DB schema","key":"xaw88jk3n3","isDeprecated":false,"rightColumn":24.0,"textAlign":"LEFT","widgetId":"xy02j5y794","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.875rem"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"update_button","onClick":"{{EditQuery.run(\n\t() => SelectQuery.run()\n\t\t\t\t\t.then(() => closeModal('Edit_Modal')), \n\t(error) => showAlert(`Error while updating resource!\\n ${error}`,'error'))\n}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":37.0,"bottomRow":41.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":23.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Update","key":"th8mawd2a2","isDeprecated":false,"rightColumn":43.0,"isDefaultClickDisabled":true,"widgetId":"4hz03ebke5","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"PRIMARY"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"reset_button","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":37.0,"bottomRow":41.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"leftColumn":1.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Reset","key":"th8mawd2a2","isDeprecated":false,"rightColumn":20.0,"isDefaultClickDisabled":true,"widgetId":"j7aoquehsk","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY"},{"boxShadow":"none","widgetName":"project_id_edit","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","searchTags":["form","text input","number","textarea"],"topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"labelWidth":5.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":true,"parentColumnSpace":7.15234375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":26.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultText"}],"labelPosition":"Left","labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"102badep9z","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"widgetId":"p0oya185g4","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":2.0,"parentId":"h3rsii419p","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","iconAlign":"left","defaultText":"{{data_table.selectedRow.project_id}}"},{"widgetName":"Text18","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":6.619140625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Project ID","key":"xaw88jk3n3","isDeprecated":false,"rightColumn":17.0,"textAlign":"LEFT","widgetId":"6k5g7fe18o","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.875rem"},{"widgetName":"Text19","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":14.0,"bottomRow":18.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":7.01904296875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Description","key":"xaw88jk3n3","isDeprecated":false,"rightColumn":17.0,"textAlign":"LEFT","widgetId":"2ipkijb019","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.875rem"},{"widgetName":"active_edit","dynamicPropertyPathList":[{"key":"defaultCheckedState"}],"displayName":"Checkbox","iconSVG":"/static/media/icon.aaab032b.svg","searchTags":["boolean"],"topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"CHECKBOX_WIDGET","alignWidget":"LEFT","hideCard":false,"animateLoading":true,"parentColumnSpace":6.68798828125,"dynamicTriggerPathList":[],"leftColumn":24.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultCheckedState"}],"labelPosition":"Left","isDisabled":false,"key":"yq6mb2a4bo","isRequired":false,"isDeprecated":false,"rightColumn":31.0,"widgetId":"artqv4il98","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultCheckedState":"{{data_table.selectedRow.active === '✓' ? true : false}}"},{"boxShadow":"none","widgetName":"project_schema_edit","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","searchTags":["dropdown"],"topRow":20.0,"bottomRow":24.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{data_table.selectedRow.project_schema}}","animateLoading":true,"parentColumnSpace":7.21875,"dynamicTriggerPathList":[],"leftColumn":26.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{DB_Schemas_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"u0o6ppj7qr","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":64.0,"widgetId":"889psuscyt","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"h3rsii419p","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"13bo1g4gtz","isDeprecated":false,"rightColumn":220.5,"detachFromLayout":true,"widgetId":"h3rsii419p","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"zps0d9hzzk","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"66xecwsadr","backgroundColor":"#FFFFFF","isDeprecated":false,"rightColumn":60.0,"widgetId":"zps0d9hzzk","isVisible":true,"parentId":"sexi2d6ncw","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"isDisabled":false,"key":"13bo1g4gtz","isDeprecated":false,"rightColumn":429.650390625,"detachFromLayout":true,"widgetId":"sexi2d6ncw","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"whtrxfoobb","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"sexijq1t4i","height":556.0,"isDeprecated":false,"rightColumn":42.0,"detachFromLayout":true,"widgetId":"whtrxfoobb","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":474.0},{"boxShadow":"none","widgetName":"Help","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","searchTags":["dialog","popup","notification"],"topRow":14.0,"bottomRow":38.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":29.111083984375,"leftColumn":17.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas7","displayName":"Canvas","topRow":0.0,"bottomRow":890.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":862.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton3","onClick":"{{closeModal('Help')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":0.0,"bottomRow":4.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":56.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":64.0,"iconName":"cross","widgetId":"mgyd6d1k6x","isVisible":true,"version":1.0,"parentId":"vro0hnj538","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"Text20","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":0.0,"bottomRow":4.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Projects ","key":"lwygtopls1","isDeprecated":false,"rightColumn":41.0,"textAlign":"LEFT","widgetId":"yzig8e2b2m","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"vro0hnj538","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button2","onClick":"{{closeModal('Help')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","searchTags":["click","submit"],"topRow":79.0,"bottomRow":83.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":46.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"rpgyrik825","isDeprecated":false,"rightColumn":62.0,"isDefaultClickDisabled":true,"widgetId":"zpdlhwk8oy","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"vro0hnj538","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"RichTextEditor1","dynamicPropertyPathList":[{"key":"borderRadius"}],"displayName":"Rich Text Editor","iconSVG":"/static/media/icon.b35e139c.svg","labelText":"","searchTags":["input","rte"],"topRow":8.0,"bottomRow":77.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"RICH_TEXT_EDITOR_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":11.78125,"dynamicTriggerPathList":[],"isToolbarHidden":true,"leftColumn":2.0,"dynamicBindingPathList":[{"key":"boxShadow"},{"key":"borderRadius"}],"labelPosition":"Left","inputType":"markdown","isDisabled":true,"key":"xnsohys11k","isRequired":false,"isDeprecated":false,"rightColumn":62.0,"isDefaultClickDisabled":true,"widgetId":"5fxbwrret9","isVisible":true,"version":1.0,"parentId":"vro0hnj538","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultText":"

Each run of DOT will test data for a given project. Typically a project relates to a database where the data is, but it can also be a useful way to split DOT runs into different data groups.

\n\n

Project fields

\n\n\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n
FieldDescriptionExample
project_idIdentifier for the projectballroom_dancing
activeFlag to indicate if the project is active for scanning. Useful for quickly activating/deactivating all tests for a given project
descriptionMore details for the project\n\t\t\t

This project tests data as gathered by the ballroom dancing monitoring initiative

\n\t\t\t
\n\n

 

\n"}],"isDisabled":false,"key":"po978p5dvy","isDeprecated":false,"rightColumn":698.666015625,"detachFromLayout":true,"widgetId":"vro0hnj538","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"0wq0nmlup5","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"oicy2sed8g","height":862.0,"isDeprecated":false,"rightColumn":41.0,"detachFromLayout":true,"widgetId":"0wq0nmlup5","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":766.0}]},"layoutOnLoadActions":[[{"id":"Projects_SelectQuery","name":"SelectQuery","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["data_table.sortOrder.column || 'project_id'","data_table.sortOrder.order || 'ASC'","data_table.pageSize","data_table.searchText || \"\"","(data_table.pageNo - 1) * data_table.pageSize"],"timeoutInMillisecond":10000.0}],[{"id":"Projects_DB_Schemas_dropdown","name":"DB_Schemas_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0}]],"validOnPageLoadActions":true,"id":"Projects","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":false},"publishedPage":{"name":"Projects","slug":"projects","layouts":[{"viewMode":false,"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1174.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":980.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":59.0,"minHeight":900.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container1","borderColor":"#fff","dynamicPropertyPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"topRow":0.0,"bottomRow":86.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":880.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"Text16","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"}],"text":"Projects","labelTextSize":"0.875rem","rightColumn":4.0,"disableLink":false,"textAlign":"LEFT","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"{{appsmith.theme.colors.primaryColor}}","widgetId":"xp5u9a9nzq","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","leftColumn":60.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"buttonVariant":"PRIMARY","isDisabled":false},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":7.0,"isSortable":true,"onPageChange":"{{SelectQuery.run()}}","type":"TABLE_WIDGET","animateLoading":true,"dynamicBindingPathList":[{"key":"tableData"},{"key":"derivedColumns.customColumn1.buttonLabel"},{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"accentColor"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"primaryColumns.customColumn1.borderRadius"},{"key":"primaryColumns.project_id.computedValue"},{"key":"primaryColumns.description.computedValue"},{"key":"primaryColumns.active.computedValue"},{"key":"primaryColumns.project_schema.computedValue"},{"key":"primaryColumns.contacts.computedValue"},{"key":"derivedColumns.customColumn2.boxShadow"},{"key":"primaryColumns.customColumn2.boxShadow"},{"key":"derivedColumns.customColumn2.borderRadius"},{"key":"primaryColumns.customColumn2.borderRadius"},{"key":"derivedColumns.customColumn2.buttonColor"},{"key":"primaryColumns.customColumn2.buttonColor"},{"key":"derivedColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.date_added.computedValue"},{"key":"primaryColumns.date_modified.computedValue"},{"key":"primaryColumns.last_updated_by.computedValue"}],"leftColumn":0.0,"delimiter":",","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisibleFilters":true,"isVisible":"true","enableClientSideSearch":true,"version":3.0,"totalRecordsCount":0.0,"isLoading":false,"onSearchTextChanged":"{{SelectQuery.run()}}","childStylesheet":{"button":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}"},"iconButton":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","menuColor":"{{appsmith.theme.colors.primaryColor}}"},"menuButton":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","menuColor":"{{appsmith.theme.colors.primaryColor}}"}},"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","primaryColumnId":"project_id","columnSizeMap":{"task":245.0,"step":62.0,"status":75.0,"description":390.0,"created_on":290.0,"date_added":177.0},"widgetName":"data_table","defaultPageSize":0.0,"columnOrder":["customColumn2","customColumn1","project_id","active","description","project_schema","contacts","date_added","date_modified","last_updated_by"],"dynamicPropertyPathList":[{"key":"primaryColumns.customColumn1.borderRadius"}],"displayName":"Table","bottomRow":86.0,"parentRowSpace":10.0,"defaultSelectedRow":"0","hideCard":false,"parentColumnSpace":16.3125,"dynamicTriggerPathList":[{"key":"primaryColumns.customColumn1.onClick"},{"key":"onPageChange"},{"key":"onSearchTextChanged"},{"key":"onSort"},{"key":"primaryColumns.customColumn2.onClick"}],"primaryColumns":{"customColumn1":{"isCellVisible":true,"boxShadow":"none","isDerived":true,"computedValue":"","onClick":"{{showModal('Delete_Modal')}}","buttonColor":"#DD4B34","buttonStyle":"rgb(3, 179, 101)","index":5.0,"isVisible":true,"label":"Delete","labelColor":"#FFFFFF","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Delete'))}}","columnType":"button","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","menuColor":"#03B365","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF","buttonVariant":"SECONDARY"},"project_id":{"index":0.0,"width":150.0,"id":"project_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"project_id","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.project_id))}}","cellBackground":""},"description":{"index":1.0,"width":150.0,"id":"description","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"description","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.description))}}","cellBackground":""},"active":{"index":3.0,"width":150.0,"id":"active","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"active","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.active ? '✓' : ''))}}","cellBackground":""},"project_schema":{"index":4.0,"width":150.0,"id":"project_schema","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"project_schema","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.project_schema))}}","cellBackground":""},"contacts":{"index":5.0,"width":150.0,"id":"contacts","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"contacts","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.contacts))}}","cellBackground":""},"customColumn2":{"index":7.0,"width":150.0,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","boxShadow":"{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","buttonColor":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Edit'))}}","onClick":"{{showModal('Edit_Modal')}}","buttonVariant":"SECONDARY"},"date_added":{"index":5.0,"width":150.0,"id":"date_added","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"date","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"date_added","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.date_added))}}","cellBackground":"","iconName":""},"date_modified":{"index":6.0,"width":150.0,"id":"date_modified","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"date","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"date_modified","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.date_modified))}}","cellBackground":"","iconName":""},"last_updated_by":{"index":7.0,"width":150.0,"id":"last_updated_by","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"last_updated_by","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.last_updated_by))}}","cellBackground":""}},"key":"zba5qel0au","derivedColumns":{"customColumn1":{"isCellVisible":true,"boxShadow":"none","isDerived":true,"computedValue":"","onClick":"{{showModal('Delete_Modal')}}","buttonColor":"#DD4B34","buttonStyle":"rgb(3, 179, 101)","index":5.0,"isVisible":true,"label":"Delete","labelColor":"#FFFFFF","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Delete'))}}","columnType":"button","borderRadius":"0px","menuColor":"#03B365","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF"},"customColumn2":{"index":7.0,"width":150.0,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","boxShadow":"{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","buttonColor":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Edit'))}}"}},"labelTextSize":"0.875rem","rightColumn":64.0,"textSize":"0.875rem","widgetId":"m2y9g15vra","tableData":"{{SelectQuery.data}}","label":"Data","searchKey":"","parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"renderMode":"CANVAS","horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER"},{"boxShadow":"none","widgetName":"Add_Test_Button","onClick":"{{showModal('Insert_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":49.0,"dynamicBindingPathList":[],"text":"Add project","isDisabled":"","key":"2ob5jed9vo","rightColumn":60.0,"isDefaultClickDisabled":true,"widgetId":"q2nplo7shi","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"none","widgetName":"IconButton2","onClick":"{{showModal('Help')}}","buttonColor":"#3b82f6","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"tooltip":"Find out more about projects\n","parentRowSpace":10.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":29.111083984375,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":4.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":6.0,"iconName":"help","widgetId":"voej6bbkxb","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"}]}],"borderWidth":"0","labelTextSize":"0.875rem","backgroundColor":"#FFFFFF","rightColumn":63.0,"widgetId":"mvubsemxfo","containerStyle":"card","isVisible":"true","version":1.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"Delete_Modal","topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas3","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":240.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Alert_text","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Delete Row","labelTextSize":"0.875rem","rightColumn":41.0,"textAlign":"LEFT","widgetId":"35yoxo4oec","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button1","onClick":"{{closeModal('Delete_Modal')}}","dynamicPropertyPathList":[],"buttonColor":"#2E3D49","topRow":17.0,"bottomRow":21.0,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"text":"Cancel","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":46.0,"isDefaultClickDisabled":true,"widgetId":"lryg8kw537","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"none","widgetName":"Delete_Button","onClick":"{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#DD4B34","topRow":17.0,"bottomRow":21.0,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":46.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"text":"Confirm","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":64.0,"isDefaultClickDisabled":true,"widgetId":"qq02lh7ust","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"PRIMARY"},{"boxShadow":"none","widgetName":"Text12","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":6.875,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[{"key":"text"}],"text":"Are you sure you want to delete the \"{{project_id_edit.text}}\" project?","labelTextSize":"0.875rem","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","isVisible":"true","fontStyle":"","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"1rem"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","isVisible":"true","version":1.0,"parentId":"i3whp03wf0","isLoading":false,"borderRadius":"0px"}],"height":240.0,"labelTextSize":"0.875rem","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":456.0},{"boxShadow":"none","widgetName":"Insert_Modal","topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Canvas4","topRow":0.0,"bottomRow":630.0,"parentRowSpace":1.0,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":604.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"schema":{"__root_schema__":{"children":{"project_id":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.project_id))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"Brac","isCustomField":false,"accessor":"project_id","identifier":"project_id","position":1.0,"originalIdentifier":"project_id","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Project Id"},"description":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.description))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"Brac project","isCustomField":false,"accessor":"description","identifier":"description","position":2.0,"originalIdentifier":"description","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Description"},"created_on":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.created_on))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"2021-12-07T00:00:00Z","isCustomField":false,"accessor":"created_on","identifier":"created_on","position":3.0,"originalIdentifier":"created_on","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Created On"},"active":{"children":{},"dataType":"boolean","defaultValue":"{{((sourceData, formData, fieldState) => (`true`))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Switch","sourceData":true,"isCustomField":false,"accessor":"active","identifier":"active","position":0.0,"originalIdentifier":"active","boxShadow":"none","accentColor":"{{appsmith.theme.colors.primaryColor}}","alignWidget":"LEFT","isDisabled":false,"isRequired":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Active"},"project_schema":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.project_schema))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Select","sourceData":"public","isCustomField":false,"accessor":"project_schema","identifier":"project_schema","position":4.0,"originalIdentifier":"project_schema","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":true,"label":"Project Schema","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{DB_Schemas_dropdown.data}}"},"contacts":{"children":{},"dataType":"null","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.contacts))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","isCustomField":false,"accessor":"contacts","identifier":"contacts","position":5.0,"originalIdentifier":"contacts","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Contacts"}},"dataType":"object","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Object","sourceData":{"project_id":"Brac","description":"Brac project","created_on":"2021-12-07T00:00:00Z","active":true,"project_schema":"public"},"isCustomField":false,"accessor":"__root_schema__","identifier":"__root_schema__","position":-1.0,"originalIdentifier":"__root_schema__","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none","isDisabled":false,"isRequired":false,"isVisible":true,"labelTextSize":"0.875rem","label":""}},"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"insert_form","submitButtonStyles":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","buttonVariant":"PRIMARY"},"dynamicPropertyPathList":[{"key":"schema.__root_schema__.children.date_of_birth.defaultValue"},{"key":"schema.__root_schema__.children.col5.defaultValue"},{"key":"schema.__root_schema__.children.col4.defaultValue"},{"key":"onSubmit"},{"key":"schema.__root_schema__.children.active.defaultValue"}],"displayName":"JSON Form","iconSVG":"/static/media/icon.6bacf7df.svg","onSubmit":"{{InsertQuery.run(\n\t() => SelectQuery.run()\n\t\t\t\t\t.then(() => closeModal('Insert_Modal')), \n\t(error) => showAlert(`Error while inserting resource!\\n ${error}`,'error'))\n}}","topRow":0.0,"bottomRow":59.0,"fieldLimitExceeded":false,"parentRowSpace":10.0,"title":"Insert Project","type":"JSON_FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":8.125,"dynamicTriggerPathList":[{"key":"onSubmit"}],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"schema.__root_schema__.defaultValue"},{"key":"schema.__root_schema__.borderRadius"},{"key":"schema.__root_schema__.cellBorderRadius"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"submitButtonStyles.buttonColor"},{"key":"submitButtonStyles.borderRadius"},{"key":"resetButtonStyles.borderRadius"},{"key":"resetButtonStyles.buttonColor"},{"key":"schema.__root_schema__.children.project_id.defaultValue"},{"key":"schema.__root_schema__.children.project_id.borderRadius"},{"key":"schema.__root_schema__.children.project_id.accentColor"},{"key":"schema.__root_schema__.children.description.defaultValue"},{"key":"schema.__root_schema__.children.description.borderRadius"},{"key":"schema.__root_schema__.children.description.accentColor"},{"key":"schema.__root_schema__.children.created_on.defaultValue"},{"key":"schema.__root_schema__.children.created_on.borderRadius"},{"key":"schema.__root_schema__.children.created_on.accentColor"},{"key":"schema.__root_schema__.children.active.defaultValue"},{"key":"schema.__root_schema__.children.active.accentColor"},{"key":"schema.__root_schema__.children.project_schema.defaultValue"},{"key":"schema.__root_schema__.children.project_schema.borderRadius"},{"key":"schema.__root_schema__.children.project_schema.accentColor"},{"key":"schema.__root_schema__.children.contacts.defaultValue"},{"key":"schema.__root_schema__.children.contacts.borderRadius"},{"key":"schema.__root_schema__.children.contacts.accentColor"},{"key":"schema.__root_schema__.children.project_schema.options"}],"sourceData":"{}","showReset":true,"resetButtonLabel":"Reset","key":"h9l9ozr8op","labelTextSize":"0.875rem","backgroundColor":"#fff","rightColumn":64.0,"autoGenerateForm":true,"widgetId":"o8oiq6vwkk","resetButtonStyles":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","buttonVariant":"SECONDARY"},"isVisible":"true","version":1.0,"parentId":"9rhv3ioohq","renderMode":"CANVAS","isLoading":false,"scrollContents":true,"fixedFooter":true,"submitButtonLabel":"Submit","childStylesheet":{"CHECKBOX":{"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"ARRAY":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none"},"CURRENCY_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"DATEPICKER":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"PHONE_NUMBER_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"OBJECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none"},"MULTISELECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"SELECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"NUMBER_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"PASSWORD_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"EMAIL_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"RADIO_GROUP":{"boxShadow":"none","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"SWITCH":{"boxShadow":"none","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"TEXT_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"MULTILINE_TEXT_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"}},"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","isVisible":"true","version":1.0,"parentId":"vmorzie6eq","isLoading":false,"borderRadius":"0px"}],"height":604.0,"labelTextSize":"0.875rem","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"0px","width":532.0},{"boxShadow":"none","widgetName":"Edit_Modal","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","searchTags":["dialog","popup","notification"],"topRow":24.0,"bottomRow":48.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":17.902099609375,"leftColumn":18.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas5","displayName":"Canvas","topRow":0.0,"bottomRow":550.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":556.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton1","onClick":"{{closeModal('Edit_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":56.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"9joaqbu71a","isDeprecated":false,"rightColumn":64.0,"iconName":"cross","widgetId":"geice3cprs","isVisible":true,"version":1.0,"parentId":"sexi2d6ncw","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"Text17","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Edit Project","key":"xaw88jk3n3","isDeprecated":false,"rightColumn":23.0,"textAlign":"LEFT","widgetId":"kw6asb7fdj","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"sexi2d6ncw","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"edit_form","isCanvas":true,"displayName":"Form","iconSVG":"/static/media/icon.ea3e08d1.svg","searchTags":["group"],"topRow":6.0,"bottomRow":52.0,"parentRowSpace":10.0,"type":"FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":9.1875,"leftColumn":1.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas6","displayName":"Canvas","topRow":0.0,"bottomRow":430.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":false,"hideCard":true,"minHeight":400.0,"parentColumnSpace":1.0,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"widgetName":"Text19CopyCopy","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":25.0,"bottomRow":29.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":7.01904296875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Contacts","key":"xaw88jk3n3","isDeprecated":false,"rightColumn":24.0,"textAlign":"LEFT","widgetId":"mlvyhr5x9t","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"contacts_edit","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","searchTags":["form","text input","number","textarea"],"topRow":25.0,"bottomRow":34.0,"parentRowSpace":10.0,"labelWidth":5.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":true,"parentColumnSpace":7.15234375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":26.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultText"}],"labelPosition":"Left","labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"102badep9z","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"widgetId":"61tgu2vd6a","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":2.0,"parentId":"h3rsii419p","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","iconAlign":"left","defaultText":"{{data_table.selectedRow.contacts}}"},{"widgetName":"Text18Copy","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":6.619140625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Project actived?","key":"xaw88jk3n3","isDeprecated":false,"rightColumn":24.0,"textAlign":"LEFT","widgetId":"v6ohs8z8vg","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.875rem"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"close_button","onClick":"{{closeModal('Edit_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":37.0,"bottomRow":41.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":45.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","key":"th8mawd2a2","isDeprecated":false,"rightColumn":63.0,"isDefaultClickDisabled":true,"widgetId":"8vcvnxan88","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY"},{"boxShadow":"none","widgetName":"project_description_edit","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","searchTags":["form","text input","number","textarea"],"topRow":10.0,"bottomRow":19.0,"parentRowSpace":10.0,"labelWidth":5.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":true,"parentColumnSpace":7.15234375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":26.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultText"}],"labelPosition":"Left","labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"102badep9z","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"widgetId":"77gof699us","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":2.0,"parentId":"h3rsii419p","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","iconAlign":"left","defaultText":"{{data_table.selectedRow.description}}"},{"widgetName":"Text19Copy","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":20.0,"bottomRow":24.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":7.01904296875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Project DB schema","key":"xaw88jk3n3","isDeprecated":false,"rightColumn":24.0,"textAlign":"LEFT","widgetId":"xy02j5y794","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.875rem"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"update_button","onClick":"{{EditQuery.run(\n\t() => SelectQuery.run()\n\t\t\t\t\t.then(() => closeModal('Edit_Modal')), \n\t(error) => showAlert(`Error while updating resource!\\n ${error}`,'error'))\n}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":37.0,"bottomRow":41.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":23.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Update","key":"th8mawd2a2","isDeprecated":false,"rightColumn":43.0,"isDefaultClickDisabled":true,"widgetId":"4hz03ebke5","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"PRIMARY"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"reset_button","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":37.0,"bottomRow":41.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"leftColumn":1.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Reset","key":"th8mawd2a2","isDeprecated":false,"rightColumn":20.0,"isDefaultClickDisabled":true,"widgetId":"j7aoquehsk","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY"},{"boxShadow":"none","widgetName":"project_id_edit","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","searchTags":["form","text input","number","textarea"],"topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"labelWidth":5.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":true,"parentColumnSpace":7.15234375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":26.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultText"}],"labelPosition":"Left","labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"102badep9z","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"widgetId":"p0oya185g4","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":2.0,"parentId":"h3rsii419p","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","iconAlign":"left","defaultText":"{{data_table.selectedRow.project_id}}"},{"widgetName":"Text18","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":6.619140625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Project ID","key":"xaw88jk3n3","isDeprecated":false,"rightColumn":17.0,"textAlign":"LEFT","widgetId":"6k5g7fe18o","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.875rem"},{"widgetName":"Text19","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":14.0,"bottomRow":18.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":7.01904296875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Description","key":"xaw88jk3n3","isDeprecated":false,"rightColumn":17.0,"textAlign":"LEFT","widgetId":"2ipkijb019","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.875rem"},{"widgetName":"active_edit","dynamicPropertyPathList":[{"key":"defaultCheckedState"}],"displayName":"Checkbox","iconSVG":"/static/media/icon.aaab032b.svg","searchTags":["boolean"],"topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"CHECKBOX_WIDGET","alignWidget":"LEFT","hideCard":false,"animateLoading":true,"parentColumnSpace":6.68798828125,"dynamicTriggerPathList":[],"leftColumn":24.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultCheckedState"}],"labelPosition":"Left","isDisabled":false,"key":"yq6mb2a4bo","isRequired":false,"isDeprecated":false,"rightColumn":31.0,"widgetId":"artqv4il98","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":1.0,"parentId":"h3rsii419p","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultCheckedState":"{{data_table.selectedRow.active === '✓' ? true : false}}"},{"boxShadow":"none","widgetName":"project_schema_edit","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","searchTags":["dropdown"],"topRow":20.0,"bottomRow":24.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{data_table.selectedRow.project_schema}}","animateLoading":true,"parentColumnSpace":7.21875,"dynamicTriggerPathList":[],"leftColumn":26.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"options"},{"key":"defaultOptionValue"}],"labelPosition":"Left","options":"{{DB_Schemas_dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"u0o6ppj7qr","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":64.0,"widgetId":"889psuscyt","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"h3rsii419p","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"13bo1g4gtz","isDeprecated":false,"rightColumn":220.5,"detachFromLayout":true,"widgetId":"h3rsii419p","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"zps0d9hzzk","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"66xecwsadr","backgroundColor":"#FFFFFF","isDeprecated":false,"rightColumn":60.0,"widgetId":"zps0d9hzzk","isVisible":true,"parentId":"sexi2d6ncw","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"isDisabled":false,"key":"13bo1g4gtz","isDeprecated":false,"rightColumn":429.650390625,"detachFromLayout":true,"widgetId":"sexi2d6ncw","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"whtrxfoobb","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"sexijq1t4i","height":556.0,"isDeprecated":false,"rightColumn":42.0,"detachFromLayout":true,"widgetId":"whtrxfoobb","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":474.0},{"boxShadow":"none","widgetName":"Help","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","searchTags":["dialog","popup","notification"],"topRow":14.0,"bottomRow":38.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":29.111083984375,"leftColumn":17.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas7","displayName":"Canvas","topRow":0.0,"bottomRow":890.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":862.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton3","onClick":"{{closeModal('Help')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":0.0,"bottomRow":4.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":56.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":64.0,"iconName":"cross","widgetId":"mgyd6d1k6x","isVisible":true,"version":1.0,"parentId":"vro0hnj538","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"Text20","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":0.0,"bottomRow":4.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Projects ","key":"lwygtopls1","isDeprecated":false,"rightColumn":41.0,"textAlign":"LEFT","widgetId":"yzig8e2b2m","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"vro0hnj538","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button2","onClick":"{{closeModal('Help')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","searchTags":["click","submit"],"topRow":79.0,"bottomRow":83.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":46.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"rpgyrik825","isDeprecated":false,"rightColumn":62.0,"isDefaultClickDisabled":true,"widgetId":"zpdlhwk8oy","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"vro0hnj538","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"RichTextEditor1","dynamicPropertyPathList":[{"key":"borderRadius"}],"displayName":"Rich Text Editor","iconSVG":"/static/media/icon.b35e139c.svg","labelText":"","searchTags":["input","rte"],"topRow":8.0,"bottomRow":77.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"RICH_TEXT_EDITOR_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":11.78125,"dynamicTriggerPathList":[],"isToolbarHidden":true,"leftColumn":2.0,"dynamicBindingPathList":[{"key":"boxShadow"},{"key":"borderRadius"}],"labelPosition":"Left","inputType":"markdown","isDisabled":true,"key":"xnsohys11k","isRequired":false,"isDeprecated":false,"rightColumn":62.0,"isDefaultClickDisabled":true,"widgetId":"5fxbwrret9","isVisible":true,"version":1.0,"parentId":"vro0hnj538","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultText":"

Each run of DOT will test data for a given project. Typically a project relates to a database where the data is, but it can also be a useful way to split DOT runs into different data groups.

\n\n

Project fields

\n\n\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n
FieldDescriptionExample
project_idIdentifier for the projectballroom_dancing
activeFlag to indicate if the project is active for scanning. Useful for quickly activating/deactivating all tests for a given project
descriptionMore details for the project\n\t\t\t

This project tests data as gathered by the ballroom dancing monitoring initiative

\n\t\t\t
\n\n

 

\n"}],"isDisabled":false,"key":"po978p5dvy","isDeprecated":false,"rightColumn":698.666015625,"detachFromLayout":true,"widgetId":"vro0hnj538","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"0wq0nmlup5","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"oicy2sed8g","height":862.0,"isDeprecated":false,"rightColumn":41.0,"detachFromLayout":true,"widgetId":"0wq0nmlup5","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":766.0}]},"layoutOnLoadActions":[[{"id":"Projects_SelectQuery","name":"SelectQuery","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["data_table.sortOrder.column || 'project_id'","data_table.sortOrder.order || 'ASC'","data_table.pageSize","data_table.searchText || \"\"","(data_table.pageNo - 1) * data_table.pageSize"],"timeoutInMillisecond":10000.0}],[{"id":"Projects_DB_Schemas_dropdown","name":"DB_Schemas_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0}]],"validOnPageLoadActions":true,"id":"Projects","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":false},"deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b0a7abc6fbda2fd153a63b"},{"unpublishedPage":{"name":"Entities","slug":"entities","layouts":[{"viewMode":false,"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1174.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":890.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":59.0,"minHeight":900.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container1","borderColor":"#fff","dynamicPropertyPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"topRow":0.0,"bottomRow":86.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":870.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"Text16","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"}],"text":"Entities","labelTextSize":"0.875rem","rightColumn":4.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"{{appsmith.theme.colors.primaryColor}}","widgetId":"xp5u9a9nzq","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","leftColumn":60.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"buttonVariant":"PRIMARY","isDisabled":false},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":6.0,"isSortable":true,"onPageChange":"{{SelectQuery.run()}}","type":"TABLE_WIDGET","animateLoading":true,"dynamicBindingPathList":[{"key":"tableData"},{"key":"derivedColumns.customColumn1.buttonLabel"},{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"accentColor"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"primaryColumns.customColumn1.borderRadius"},{"key":"primaryColumns.entity_id.computedValue"},{"key":"primaryColumns.entity_name.computedValue"},{"key":"primaryColumns.entity_category.computedValue"},{"key":"primaryColumns.entity_definition.computedValue"},{"key":"primaryColumns.date_added.computedValue"},{"key":"primaryColumns.date_modified.computedValue"},{"key":"primaryColumns.last_updated_by.computedValue"},{"key":"derivedColumns.customColumn2.boxShadow"},{"key":"primaryColumns.customColumn2.boxShadow"},{"key":"derivedColumns.customColumn2.borderRadius"},{"key":"primaryColumns.customColumn2.borderRadius"},{"key":"derivedColumns.customColumn2.buttonColor"},{"key":"primaryColumns.customColumn2.buttonColor"},{"key":"derivedColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.entity_category_description.computedValue"}],"leftColumn":0.0,"delimiter":",","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisibleFilters":true,"isVisible":"true","enableClientSideSearch":true,"version":3.0,"totalRecordsCount":0.0,"isLoading":false,"onSearchTextChanged":"{{SelectQuery.run()}}","childStylesheet":{"button":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}"},"iconButton":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","menuColor":"{{appsmith.theme.colors.primaryColor}}"},"menuButton":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","menuColor":"{{appsmith.theme.colors.primaryColor}}"}},"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","primaryColumnId":"entity_id","columnSizeMap":{"task":245.0,"step":62.0,"status":75.0,"entity_name":275.0,"entity_definition":691.0,"entity_category_description":431.0},"widgetName":"data_table","defaultPageSize":0.0,"columnOrder":["customColumn2","customColumn1","entity_id","entity_name","entity_category","entity_category_description","entity_definition","date_added","date_modified","last_updated_by"],"dynamicPropertyPathList":[{"key":"primaryColumns.customColumn1.borderRadius"}],"displayName":"Table","bottomRow":85.0,"parentRowSpace":10.0,"defaultSelectedRow":"0","hideCard":false,"parentColumnSpace":16.3125,"dynamicTriggerPathList":[{"key":"primaryColumns.customColumn1.onClick"},{"key":"onPageChange"},{"key":"onSearchTextChanged"},{"key":"onSort"},{"key":"primaryColumns.customColumn2.onClick"}],"primaryColumns":{"customColumn1":{"isCellVisible":true,"boxShadow":"none","isDerived":true,"computedValue":"","onClick":"{{showModal('Delete_Modal')}}","buttonColor":"#DD4B34","buttonStyle":"rgb(3, 179, 101)","index":5.0,"isVisible":true,"label":"Delete","labelColor":"#FFFFFF","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Delete'))}}","columnType":"button","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","menuColor":"#03B365","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF","buttonVariant":"SECONDARY"},"entity_id":{"index":0.0,"width":150.0,"id":"entity_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_id","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_id))}}","cellBackground":""},"entity_name":{"index":1.0,"width":150.0,"id":"entity_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_name","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_name))}}","cellBackground":""},"entity_category":{"index":2.0,"width":150.0,"id":"entity_category","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_category","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_category))}}","cellBackground":""},"entity_definition":{"index":3.0,"width":150.0,"id":"entity_definition","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_definition","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_definition))}}","cellBackground":""},"date_added":{"index":4.0,"width":150.0,"id":"date_added","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"date_added","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.date_added))}}","cellBackground":""},"date_modified":{"index":5.0,"width":150.0,"id":"date_modified","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"date_modified","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.date_modified))}}","cellBackground":""},"last_updated_by":{"index":6.0,"width":150.0,"id":"last_updated_by","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"last_updated_by","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.last_updated_by))}}","cellBackground":""},"customColumn2":{"index":8.0,"width":150.0,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","boxShadow":"{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","buttonColor":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Edit'))}}","onClick":"{{showModal('Edit_Modal')}}","buttonVariant":"SECONDARY"},"entity_category_description":{"index":7.0,"width":150.0,"id":"entity_category_description","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_category_description","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_category_description))}}","cellBackground":""}},"key":"zba5qel0au","derivedColumns":{"customColumn1":{"isCellVisible":true,"boxShadow":"none","isDerived":true,"computedValue":"","onClick":"{{showModal('Delete_Modal')}}","buttonColor":"#DD4B34","buttonStyle":"rgb(3, 179, 101)","index":5.0,"isVisible":true,"label":"Delete","labelColor":"#FFFFFF","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Delete'))}}","columnType":"button","borderRadius":"0px","menuColor":"#03B365","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF"},"customColumn2":{"index":8.0,"width":150.0,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","boxShadow":"{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","buttonColor":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Edit'))}}","onClick":"{{showModal('Edit_Modal')}}"}},"labelTextSize":"0.875rem","rightColumn":64.0,"textSize":"0.875rem","widgetId":"m2y9g15vra","tableData":"{{SelectQuery.data}}","label":"Data","searchKey":"","parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"renderMode":"CANVAS","horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER"},{"boxShadow":"none","widgetName":"Add_Test_Button","onClick":"{{showModal('Insert_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":49.0,"dynamicBindingPathList":[],"text":"Add entity","isDisabled":"","key":"2ob5jed9vo","rightColumn":60.0,"isDefaultClickDisabled":true,"widgetId":"ki95pgtj09","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"none","widgetName":"IconButton2","onClick":"{{showModal('Help_Entities')}}","buttonColor":"#3b82f6","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"tooltip":"Find out more about projects\n","parentRowSpace":10.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":29.111083984375,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":4.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":6.0,"iconName":"help","widgetId":"zjrq8w12dz","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"}]}],"borderWidth":"0","labelTextSize":"0.875rem","backgroundColor":"#FFFFFF","rightColumn":64.0,"widgetId":"mvubsemxfo","containerStyle":"card","isVisible":"true","version":1.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"Delete_Modal","topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas3","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":240.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Alert_text","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Delete Row","labelTextSize":"0.875rem","rightColumn":41.0,"textAlign":"LEFT","widgetId":"35yoxo4oec","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button1","onClick":"{{closeModal('Delete_Modal')}}","dynamicPropertyPathList":[],"buttonColor":"#2E3D49","topRow":17.0,"bottomRow":21.0,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"text":"Cancel","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":46.0,"isDefaultClickDisabled":true,"widgetId":"lryg8kw537","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"none","widgetName":"Delete_Button","onClick":"{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#DD4B34","topRow":17.0,"bottomRow":21.0,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":46.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"text":"Confirm","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":64.0,"isDefaultClickDisabled":true,"widgetId":"qq02lh7ust","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"PRIMARY"},{"boxShadow":"none","widgetName":"Text12","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":6.875,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[{"key":"text"}],"text":"Are you sure you want to delete the \"{{entity_name.text}}\"\" entitiy?","labelTextSize":"0.875rem","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","isVisible":"true","fontStyle":"","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"1rem"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","isVisible":"true","version":1.0,"parentId":"i3whp03wf0","isLoading":false,"borderRadius":"0px"}],"height":240.0,"labelTextSize":"0.875rem","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":456.0},{"boxShadow":"none","widgetName":"Insert_Modal","topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Canvas4","topRow":0.0,"bottomRow":610.0,"parentRowSpace":1.0,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":604.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"schema":{"__root_schema__":{"children":{"entity_id":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_id))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"173793ff-491d-4c73-8d0b-3903a82d3796","isCustomField":false,"accessor":"entity_id","identifier":"entity_id","position":0.0,"originalIdentifier":"entity_id","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Entity Id"},"entity_name":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_name))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"hhview_visits","isCustomField":false,"accessor":"entity_name","identifier":"entity_name","position":1.0,"originalIdentifier":"entity_name","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Entity Name"},"entity_category":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_category))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Select","sourceData":"core","isCustomField":false,"accessor":"entity_category","identifier":"entity_category","position":2.0,"originalIdentifier":"entity_category","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":true,"label":"Entity Category","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Entity_Categories_Dropdown.data}}"},"entity_definition":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_definition))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Multiline Text Input","sourceData":"{{ config(materialized='view') }}\n{% set schema = %}\nselect *\nfrom {{ schema }}.hhview_visits","isCustomField":false,"accessor":"entity_definition","identifier":"entity_definition","position":3.0,"originalIdentifier":"entity_definition","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Entity Definition"},"date_added":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.date_added))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"2021-12-07T00:00:00Z","isCustomField":false,"accessor":"date_added","identifier":"date_added","position":4.0,"originalIdentifier":"date_added","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Date Added"},"date_modified":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.date_modified))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"2021-12-07T00:00:00Z","isCustomField":false,"accessor":"date_modified","identifier":"date_modified","position":5.0,"originalIdentifier":"date_modified","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Date Modified"},"last_updated_by":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.last_updated_by))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"Matt","isCustomField":false,"accessor":"last_updated_by","identifier":"last_updated_by","position":6.0,"originalIdentifier":"last_updated_by","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Last Updated By"},"entity_category_description":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_category_description))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"Core entities such as chw, patient, etc","isCustomField":false,"accessor":"entity_category_description","identifier":"entity_category_description","position":7.0,"originalIdentifier":"entity_category_description","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Entity Category Description"}},"dataType":"object","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Object","sourceData":{"entity_id":"173793ff-491d-4c73-8d0b-3903a82d3796","entity_name":"hhview_visits","entity_category":"core","entity_definition":"{{ config(materialized='view') }}\n{% set schema = %}\nselect *\nfrom {{ schema }}.hhview_visits","date_added":"2021-12-07T00:00:00Z","date_modified":"2021-12-07T00:00:00Z","last_updated_by":"Matt","entity_category_description":"Core entities such as chw, patient, etc"},"isCustomField":false,"accessor":"__root_schema__","identifier":"__root_schema__","position":-1.0,"originalIdentifier":"__root_schema__","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none","isDisabled":false,"isRequired":false,"isVisible":true,"labelTextSize":"0.875rem","label":""}},"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"insert_form","submitButtonStyles":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","buttonVariant":"PRIMARY"},"dynamicPropertyPathList":[{"key":"schema.__root_schema__.children.date_of_birth.defaultValue"},{"key":"schema.__root_schema__.children.col5.defaultValue"},{"key":"schema.__root_schema__.children.col4.defaultValue"},{"key":"onSubmit"}],"displayName":"JSON Form","iconSVG":"/static/media/icon.6bacf7df.svg","onSubmit":"{{InsertQuery.run(\n\t() => SelectQuery.run()\n\t\t\t\t\t.then(() => closeModal('Insert_Modal')), \n\t(error) => showAlert(`Error while inserting resource!\\n ${error}`,'error'))\n}}","topRow":0.0,"bottomRow":59.0,"fieldLimitExceeded":false,"parentRowSpace":10.0,"title":"Insert Entity","type":"JSON_FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":8.125,"dynamicTriggerPathList":[{"key":"onSubmit"}],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"schema.__root_schema__.defaultValue"},{"key":"schema.__root_schema__.borderRadius"},{"key":"schema.__root_schema__.cellBorderRadius"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"submitButtonStyles.buttonColor"},{"key":"submitButtonStyles.borderRadius"},{"key":"resetButtonStyles.borderRadius"},{"key":"resetButtonStyles.buttonColor"},{"key":"schema.__root_schema__.children.entity_id.defaultValue"},{"key":"schema.__root_schema__.children.entity_id.borderRadius"},{"key":"schema.__root_schema__.children.entity_id.accentColor"},{"key":"schema.__root_schema__.children.entity_name.defaultValue"},{"key":"schema.__root_schema__.children.entity_name.borderRadius"},{"key":"schema.__root_schema__.children.entity_name.accentColor"},{"key":"schema.__root_schema__.children.entity_category.defaultValue"},{"key":"schema.__root_schema__.children.entity_category.borderRadius"},{"key":"schema.__root_schema__.children.entity_category.accentColor"},{"key":"schema.__root_schema__.children.entity_definition.defaultValue"},{"key":"schema.__root_schema__.children.entity_definition.sourceData"},{"key":"schema.__root_schema__.children.entity_definition.borderRadius"},{"key":"schema.__root_schema__.children.entity_definition.accentColor"},{"key":"schema.__root_schema__.children.date_added.defaultValue"},{"key":"schema.__root_schema__.children.date_added.borderRadius"},{"key":"schema.__root_schema__.children.date_added.accentColor"},{"key":"schema.__root_schema__.children.date_modified.defaultValue"},{"key":"schema.__root_schema__.children.date_modified.borderRadius"},{"key":"schema.__root_schema__.children.date_modified.accentColor"},{"key":"schema.__root_schema__.children.last_updated_by.defaultValue"},{"key":"schema.__root_schema__.children.last_updated_by.borderRadius"},{"key":"schema.__root_schema__.children.last_updated_by.accentColor"},{"key":"schema.__root_schema__.children.entity_category_description.defaultValue"},{"key":"schema.__root_schema__.children.entity_category_description.borderRadius"},{"key":"schema.__root_schema__.children.entity_category_description.accentColor"},{"key":"schema.__root_schema__.sourceData.entity_definition"},{"key":"schema.__root_schema__.children.entity_category.options"}],"sourceData":"{}","showReset":true,"resetButtonLabel":"Reset","key":"h9l9ozr8op","labelTextSize":"0.875rem","backgroundColor":"#fff","rightColumn":64.0,"autoGenerateForm":true,"widgetId":"o8oiq6vwkk","resetButtonStyles":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","buttonVariant":"SECONDARY"},"isVisible":"true","version":1.0,"parentId":"9rhv3ioohq","renderMode":"CANVAS","isLoading":false,"scrollContents":true,"fixedFooter":true,"submitButtonLabel":"Submit","childStylesheet":{"CHECKBOX":{"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"ARRAY":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none"},"CURRENCY_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"DATEPICKER":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"PHONE_NUMBER_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"OBJECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none"},"MULTISELECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"SELECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"NUMBER_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"PASSWORD_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"EMAIL_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"RADIO_GROUP":{"boxShadow":"none","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"SWITCH":{"boxShadow":"none","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"TEXT_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"MULTILINE_TEXT_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"}},"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","isVisible":"true","version":1.0,"parentId":"vmorzie6eq","isLoading":false,"borderRadius":"0px"}],"height":604.0,"labelTextSize":"0.875rem","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"0px","width":532.0},{"boxShadow":"none","widgetName":"Edit_Modal","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","searchTags":["dialog","popup","notification"],"topRow":15.0,"bottomRow":39.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":17.902099609375,"leftColumn":13.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas5","displayName":"Canvas","topRow":0.0,"bottomRow":680.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":682.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton1","onClick":"{{closeModal('Edit_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":54.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"5sd0j49vsy","isDeprecated":false,"rightColumn":62.0,"iconName":"cross","widgetId":"o0f4ngegv6","isVisible":true,"version":1.0,"parentId":"eq1lb5q0bf","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"Text17","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Edit entity","key":"xaqcpsuf8a","isDeprecated":false,"rightColumn":41.0,"textAlign":"LEFT","widgetId":"gly7itjxag","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"eq1lb5q0bf","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Form1","isCanvas":true,"displayName":"Form","iconSVG":"/static/media/icon.ea3e08d1.svg","searchTags":["group"],"topRow":7.0,"bottomRow":64.0,"parentRowSpace":10.0,"type":"FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":12.3125,"leftColumn":1.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas6","displayName":"Canvas","topRow":0.0,"bottomRow":550.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":false,"hideCard":true,"minHeight":400.0,"parentColumnSpace":1.0,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"widgetName":"Text18CopyCopy","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":15.0,"bottomRow":19.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":7.9599609375,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Definition","key":"xaqcpsuf8a","isDeprecated":false,"rightColumn":17.0,"textAlign":"LEFT","widgetId":"npsh1uyyhl","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"2adojvqxx2","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1rem"},{"widgetName":"Text18Copy","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":9.0,"bottomRow":13.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":7.9599609375,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Category","key":"xaqcpsuf8a","isDeprecated":false,"rightColumn":17.0,"textAlign":"LEFT","widgetId":"4kq11qblww","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"2adojvqxx2","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1rem"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"FormButton2Copy","onClick":"{{closeModal('Edit_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":49.0,"bottomRow":53.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":45.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","key":"0q5pnr6dj7","isDeprecated":false,"rightColumn":63.0,"isDefaultClickDisabled":true,"widgetId":"zfsmbwfosg","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"2adojvqxx2","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"FormButton1","onClick":"{{EditQuery.run(\n\t() => SelectQuery.run()\n\t\t\t\t\t.then(() => closeModal('Edit_Modal')), \n\t(error) => showAlert(`Error while updating resource!\\n ${error}`,'error'))\n}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":49.0,"bottomRow":53.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":23.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Submit","key":"0q5pnr6dj7","isDeprecated":false,"rightColumn":42.0,"isDefaultClickDisabled":true,"widgetId":"f0lzp7gjpa","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"2adojvqxx2","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"PRIMARY"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"FormButton2","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":49.0,"bottomRow":53.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"leftColumn":1.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Reset","key":"0q5pnr6dj7","isDeprecated":false,"rightColumn":20.0,"isDefaultClickDisabled":true,"widgetId":"7ur044xbtl","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"2adojvqxx2","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY"},{"widgetName":"Text18","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":3.0,"bottomRow":7.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":7.9599609375,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Name","key":"xaqcpsuf8a","isDeprecated":false,"rightColumn":17.0,"textAlign":"LEFT","widgetId":"ir06wg759v","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"2adojvqxx2","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1rem"},{"boxShadow":"none","widgetName":"entity_name","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","searchTags":["form","text input","number","textarea"],"topRow":3.0,"bottomRow":7.0,"parentRowSpace":10.0,"labelWidth":5.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":true,"parentColumnSpace":7.9599609375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":20.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultText"}],"labelPosition":"Left","labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"16t26bw4f5","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"widgetId":"nfv85ixsob","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":2.0,"parentId":"2adojvqxx2","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","iconAlign":"left","defaultText":"{{data_table.selectedRow.entity_name}}"},{"boxShadow":"none","widgetName":"entity_category","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","searchTags":["dropdown"],"topRow":9.0,"bottomRow":13.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{data_table.selectedRow.entity_category}}","animateLoading":true,"parentColumnSpace":7.9599609375,"dynamicTriggerPathList":[],"leftColumn":20.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultOptionValue"},{"key":"options"}],"labelPosition":"Left","options":"{{Entity_Categories_Dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"u0o6ppj7qr","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"widgetId":"hlpvn2135p","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"2adojvqxx2","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"entity_definition","dynamicPropertyPathList":[{"key":"onSubmit"}],"displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","onSubmit":"{{EditQuery.run(\n\t() => SelectQuery.run()\n\t\t\t\t\t.then(() => closeModal('Edit_Modal')), \n\t(error) => showAlert(`Error while updating resource!\\n ${error}`,'error'))\n}}","searchTags":["form","text input","number","textarea"],"topRow":15.0,"bottomRow":47.0,"parentRowSpace":10.0,"labelWidth":5.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":true,"parentColumnSpace":6.61767578125,"dynamicTriggerPathList":[{"key":"onSubmit"}],"resetOnSubmit":true,"leftColumn":20.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultText"}],"labelPosition":"Left","labelStyle":"","inputType":"TEXT","placeholderText":"\\{\\{ config(materialized='view') \\}\\}\n{% set schema = %}\n\\n\\nselect *\nfrom \\{\\{schema \\}\\}.ancview_delivery","maxChars":"1000","isDisabled":false,"key":"16t26bw4f5","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"widgetId":"n4l0kvjpnr","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":2.0,"parentId":"2adojvqxx2","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","iconAlign":"left","defaultText":"{{data_table.selectedRow.entity_definition}}"}],"key":"sr9fogr1ou","isDeprecated":false,"rightColumn":295.5,"detachFromLayout":true,"widgetId":"2adojvqxx2","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"s0j15vhfrb","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"e6t34yr0m2","backgroundColor":"#FFFFFF","isDeprecated":false,"rightColumn":58.0,"widgetId":"s0j15vhfrb","isVisible":true,"parentId":"eq1lb5q0bf","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"isDisabled":false,"key":"sr9fogr1ou","isDeprecated":false,"rightColumn":429.650390625,"detachFromLayout":true,"widgetId":"eq1lb5q0bf","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"wclmmfhlja","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"v2nflhfp55","height":682.0,"isDeprecated":false,"rightColumn":37.0,"detachFromLayout":true,"widgetId":"wclmmfhlja","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":510.0},{"boxShadow":"none","widgetName":"Help_Entities","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","searchTags":["dialog","popup","notification"],"topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":29.578125,"leftColumn":17.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas7","displayName":"Canvas","topRow":0.0,"bottomRow":700.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":700.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton3","onClick":"{{closeModal('Help_Entities')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":56.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":64.0,"iconName":"cross","widgetId":"b6d9xr1u0q","isVisible":true,"version":1.0,"parentId":"q3aczdo3qy","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"Help","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Entities","key":"lwygtopls1","isDeprecated":false,"rightColumn":41.0,"textAlign":"LEFT","widgetId":"t75w4ihf0t","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"q3aczdo3qy","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button2","onClick":"{{closeModal('Help_Entities')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","searchTags":["click","submit"],"topRow":62.0,"bottomRow":66.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":47.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"rpgyrik825","isDeprecated":false,"rightColumn":63.0,"isDefaultClickDisabled":true,"widgetId":"ow1l1alzl3","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"q3aczdo3qy","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"RichTextEditor1","displayName":"Rich Text Editor","iconSVG":"/static/media/icon.b35e139c.svg","labelText":"","searchTags":["input","rte"],"topRow":7.0,"bottomRow":61.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"RICH_TEXT_EDITOR_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":11.75,"dynamicTriggerPathList":[],"isToolbarHidden":true,"leftColumn":1.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"labelPosition":"Left","inputType":"html","isDisabled":true,"key":"xnsohys11k","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"isDefaultClickDisabled":true,"widgetId":"hee6vgf7k5","isVisible":true,"version":1.0,"parentId":"q3aczdo3qy","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultText":"

Entities are database views which contain the data DOT will test. You provide the SQL for these views and DOT will generate them automatically. Typically each view is a select statement onto an underlying database table or view, but you can also use SQL to combine data from multiple objects.

\n\n

Entity fields

\n\n\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n
FieldDescriptionExample
entity_nameEntity namefandango_events
entity_categoryEntity category, using categories defined in DOT categoriesflamenco_dance
entity_definitionThe SQL statement which gets the data DOT will scan\n\t\t\t

SELECT * from dance_events where type = 'flamenco' 

\n\t\t\t
\n\n

 

\n"}],"isDisabled":false,"key":"po978p5dvy","isDeprecated":false,"rightColumn":709.875,"detachFromLayout":true,"widgetId":"q3aczdo3qy","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"hyifopn8t9","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"oicy2sed8g","height":700.0,"isDeprecated":false,"rightColumn":41.0,"detachFromLayout":true,"widgetId":"hyifopn8t9","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":764.0}]},"layoutOnLoadActions":[[{"id":"Entities_Entity_Categories_Dropdown","name":"Entity_Categories_Dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0}],[{"id":"Entities_SelectQuery","name":"SelectQuery","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["data_table.sortOrder.column || 'entity_id'","data_table.sortOrder.order || 'ASC'","data_table.pageSize","data_table.searchText || \"\"","(data_table.pageNo - 1) * data_table.pageSize"],"timeoutInMillisecond":10000.0}]],"validOnPageLoadActions":true,"id":"Entities","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":false},"publishedPage":{"name":"Entities","slug":"entities","layouts":[{"viewMode":false,"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1174.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":890.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":59.0,"minHeight":900.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container1","borderColor":"#fff","dynamicPropertyPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"topRow":0.0,"bottomRow":86.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":870.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"Text16","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"}],"text":"Entities","labelTextSize":"0.875rem","rightColumn":4.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"{{appsmith.theme.colors.primaryColor}}","widgetId":"xp5u9a9nzq","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","leftColumn":60.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"buttonVariant":"PRIMARY","isDisabled":false},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":6.0,"isSortable":true,"onPageChange":"{{SelectQuery.run()}}","type":"TABLE_WIDGET","animateLoading":true,"dynamicBindingPathList":[{"key":"tableData"},{"key":"derivedColumns.customColumn1.buttonLabel"},{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"accentColor"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"primaryColumns.customColumn1.borderRadius"},{"key":"primaryColumns.entity_id.computedValue"},{"key":"primaryColumns.entity_name.computedValue"},{"key":"primaryColumns.entity_category.computedValue"},{"key":"primaryColumns.entity_definition.computedValue"},{"key":"primaryColumns.date_added.computedValue"},{"key":"primaryColumns.date_modified.computedValue"},{"key":"primaryColumns.last_updated_by.computedValue"},{"key":"derivedColumns.customColumn2.boxShadow"},{"key":"primaryColumns.customColumn2.boxShadow"},{"key":"derivedColumns.customColumn2.borderRadius"},{"key":"primaryColumns.customColumn2.borderRadius"},{"key":"derivedColumns.customColumn2.buttonColor"},{"key":"primaryColumns.customColumn2.buttonColor"},{"key":"derivedColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.entity_category_description.computedValue"}],"leftColumn":0.0,"delimiter":",","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisibleFilters":true,"isVisible":"true","enableClientSideSearch":true,"version":3.0,"totalRecordsCount":0.0,"isLoading":false,"onSearchTextChanged":"{{SelectQuery.run()}}","childStylesheet":{"button":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}"},"iconButton":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","menuColor":"{{appsmith.theme.colors.primaryColor}}"},"menuButton":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","menuColor":"{{appsmith.theme.colors.primaryColor}}"}},"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","primaryColumnId":"entity_id","columnSizeMap":{"task":245.0,"step":62.0,"status":75.0,"entity_name":275.0,"entity_definition":691.0,"entity_category_description":431.0},"widgetName":"data_table","defaultPageSize":0.0,"columnOrder":["customColumn2","customColumn1","entity_id","entity_name","entity_category","entity_category_description","entity_definition","date_added","date_modified","last_updated_by"],"dynamicPropertyPathList":[{"key":"primaryColumns.customColumn1.borderRadius"}],"displayName":"Table","bottomRow":85.0,"parentRowSpace":10.0,"defaultSelectedRow":"0","hideCard":false,"parentColumnSpace":16.3125,"dynamicTriggerPathList":[{"key":"primaryColumns.customColumn1.onClick"},{"key":"onPageChange"},{"key":"onSearchTextChanged"},{"key":"onSort"},{"key":"primaryColumns.customColumn2.onClick"}],"primaryColumns":{"customColumn1":{"isCellVisible":true,"boxShadow":"none","isDerived":true,"computedValue":"","onClick":"{{showModal('Delete_Modal')}}","buttonColor":"#DD4B34","buttonStyle":"rgb(3, 179, 101)","index":5.0,"isVisible":true,"label":"Delete","labelColor":"#FFFFFF","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Delete'))}}","columnType":"button","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","menuColor":"#03B365","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF","buttonVariant":"SECONDARY"},"entity_id":{"index":0.0,"width":150.0,"id":"entity_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_id","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_id))}}","cellBackground":""},"entity_name":{"index":1.0,"width":150.0,"id":"entity_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_name","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_name))}}","cellBackground":""},"entity_category":{"index":2.0,"width":150.0,"id":"entity_category","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_category","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_category))}}","cellBackground":""},"entity_definition":{"index":3.0,"width":150.0,"id":"entity_definition","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_definition","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_definition))}}","cellBackground":""},"date_added":{"index":4.0,"width":150.0,"id":"date_added","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"date_added","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.date_added))}}","cellBackground":""},"date_modified":{"index":5.0,"width":150.0,"id":"date_modified","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"date_modified","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.date_modified))}}","cellBackground":""},"last_updated_by":{"index":6.0,"width":150.0,"id":"last_updated_by","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"last_updated_by","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.last_updated_by))}}","cellBackground":""},"customColumn2":{"index":8.0,"width":150.0,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","boxShadow":"{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","buttonColor":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Edit'))}}","onClick":"{{showModal('Edit_Modal')}}","buttonVariant":"SECONDARY"},"entity_category_description":{"index":7.0,"width":150.0,"id":"entity_category_description","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_category_description","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_category_description))}}","cellBackground":""}},"key":"zba5qel0au","derivedColumns":{"customColumn1":{"isCellVisible":true,"boxShadow":"none","isDerived":true,"computedValue":"","onClick":"{{showModal('Delete_Modal')}}","buttonColor":"#DD4B34","buttonStyle":"rgb(3, 179, 101)","index":5.0,"isVisible":true,"label":"Delete","labelColor":"#FFFFFF","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Delete'))}}","columnType":"button","borderRadius":"0px","menuColor":"#03B365","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF"},"customColumn2":{"index":8.0,"width":150.0,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","boxShadow":"{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","buttonColor":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Edit'))}}","onClick":"{{showModal('Edit_Modal')}}"}},"labelTextSize":"0.875rem","rightColumn":64.0,"textSize":"0.875rem","widgetId":"m2y9g15vra","tableData":"{{SelectQuery.data}}","label":"Data","searchKey":"","parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"renderMode":"CANVAS","horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER"},{"boxShadow":"none","widgetName":"Add_Test_Button","onClick":"{{showModal('Insert_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":49.0,"dynamicBindingPathList":[],"text":"Add entity","isDisabled":"","key":"2ob5jed9vo","rightColumn":60.0,"isDefaultClickDisabled":true,"widgetId":"ki95pgtj09","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"none","widgetName":"IconButton2","onClick":"{{showModal('Help_Entities')}}","buttonColor":"#3b82f6","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"tooltip":"Find out more about projects\n","parentRowSpace":10.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":29.111083984375,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":4.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":6.0,"iconName":"help","widgetId":"zjrq8w12dz","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"}]}],"borderWidth":"0","labelTextSize":"0.875rem","backgroundColor":"#FFFFFF","rightColumn":64.0,"widgetId":"mvubsemxfo","containerStyle":"card","isVisible":"true","version":1.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"Delete_Modal","topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas3","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":240.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Alert_text","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Delete Row","labelTextSize":"0.875rem","rightColumn":41.0,"textAlign":"LEFT","widgetId":"35yoxo4oec","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button1","onClick":"{{closeModal('Delete_Modal')}}","dynamicPropertyPathList":[],"buttonColor":"#2E3D49","topRow":17.0,"bottomRow":21.0,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"text":"Cancel","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":46.0,"isDefaultClickDisabled":true,"widgetId":"lryg8kw537","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"none","widgetName":"Delete_Button","onClick":"{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#DD4B34","topRow":17.0,"bottomRow":21.0,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":46.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"text":"Confirm","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":64.0,"isDefaultClickDisabled":true,"widgetId":"qq02lh7ust","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"PRIMARY"},{"boxShadow":"none","widgetName":"Text12","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":6.875,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[{"key":"text"}],"text":"Are you sure you want to delete the \"{{entity_name.text}}\"\" entitiy?","labelTextSize":"0.875rem","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","isVisible":"true","fontStyle":"","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"1rem"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","isVisible":"true","version":1.0,"parentId":"i3whp03wf0","isLoading":false,"borderRadius":"0px"}],"height":240.0,"labelTextSize":"0.875rem","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":456.0},{"boxShadow":"none","widgetName":"Insert_Modal","topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Canvas4","topRow":0.0,"bottomRow":610.0,"parentRowSpace":1.0,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":604.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"schema":{"__root_schema__":{"children":{"entity_id":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_id))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"173793ff-491d-4c73-8d0b-3903a82d3796","isCustomField":false,"accessor":"entity_id","identifier":"entity_id","position":0.0,"originalIdentifier":"entity_id","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Entity Id"},"entity_name":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_name))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"hhview_visits","isCustomField":false,"accessor":"entity_name","identifier":"entity_name","position":1.0,"originalIdentifier":"entity_name","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Entity Name"},"entity_category":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_category))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Select","sourceData":"core","isCustomField":false,"accessor":"entity_category","identifier":"entity_category","position":2.0,"originalIdentifier":"entity_category","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":true,"label":"Entity Category","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Entity_Categories_Dropdown.data}}"},"entity_definition":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_definition))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Multiline Text Input","sourceData":"{{ config(materialized='view') }}\n{% set schema = %}\nselect *\nfrom {{ schema }}.hhview_visits","isCustomField":false,"accessor":"entity_definition","identifier":"entity_definition","position":3.0,"originalIdentifier":"entity_definition","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Entity Definition"},"date_added":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.date_added))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"2021-12-07T00:00:00Z","isCustomField":false,"accessor":"date_added","identifier":"date_added","position":4.0,"originalIdentifier":"date_added","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Date Added"},"date_modified":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.date_modified))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"2021-12-07T00:00:00Z","isCustomField":false,"accessor":"date_modified","identifier":"date_modified","position":5.0,"originalIdentifier":"date_modified","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Date Modified"},"last_updated_by":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.last_updated_by))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"Matt","isCustomField":false,"accessor":"last_updated_by","identifier":"last_updated_by","position":6.0,"originalIdentifier":"last_updated_by","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Last Updated By"},"entity_category_description":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_category_description))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"Core entities such as chw, patient, etc","isCustomField":false,"accessor":"entity_category_description","identifier":"entity_category_description","position":7.0,"originalIdentifier":"entity_category_description","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Entity Category Description"}},"dataType":"object","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Object","sourceData":{"entity_id":"173793ff-491d-4c73-8d0b-3903a82d3796","entity_name":"hhview_visits","entity_category":"core","entity_definition":"{{ config(materialized='view') }}\n{% set schema = %}\nselect *\nfrom {{ schema }}.hhview_visits","date_added":"2021-12-07T00:00:00Z","date_modified":"2021-12-07T00:00:00Z","last_updated_by":"Matt","entity_category_description":"Core entities such as chw, patient, etc"},"isCustomField":false,"accessor":"__root_schema__","identifier":"__root_schema__","position":-1.0,"originalIdentifier":"__root_schema__","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none","isDisabled":false,"isRequired":false,"isVisible":true,"labelTextSize":"0.875rem","label":""}},"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"insert_form","submitButtonStyles":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","buttonVariant":"PRIMARY"},"dynamicPropertyPathList":[{"key":"schema.__root_schema__.children.date_of_birth.defaultValue"},{"key":"schema.__root_schema__.children.col5.defaultValue"},{"key":"schema.__root_schema__.children.col4.defaultValue"},{"key":"onSubmit"}],"displayName":"JSON Form","iconSVG":"/static/media/icon.6bacf7df.svg","onSubmit":"{{InsertQuery.run(\n\t() => SelectQuery.run()\n\t\t\t\t\t.then(() => closeModal('Insert_Modal')), \n\t(error) => showAlert(`Error while inserting resource!\\n ${error}`,'error'))\n}}","topRow":0.0,"bottomRow":59.0,"fieldLimitExceeded":false,"parentRowSpace":10.0,"title":"Insert Entity","type":"JSON_FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":8.125,"dynamicTriggerPathList":[{"key":"onSubmit"}],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"schema.__root_schema__.defaultValue"},{"key":"schema.__root_schema__.borderRadius"},{"key":"schema.__root_schema__.cellBorderRadius"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"submitButtonStyles.buttonColor"},{"key":"submitButtonStyles.borderRadius"},{"key":"resetButtonStyles.borderRadius"},{"key":"resetButtonStyles.buttonColor"},{"key":"schema.__root_schema__.children.entity_id.defaultValue"},{"key":"schema.__root_schema__.children.entity_id.borderRadius"},{"key":"schema.__root_schema__.children.entity_id.accentColor"},{"key":"schema.__root_schema__.children.entity_name.defaultValue"},{"key":"schema.__root_schema__.children.entity_name.borderRadius"},{"key":"schema.__root_schema__.children.entity_name.accentColor"},{"key":"schema.__root_schema__.children.entity_category.defaultValue"},{"key":"schema.__root_schema__.children.entity_category.borderRadius"},{"key":"schema.__root_schema__.children.entity_category.accentColor"},{"key":"schema.__root_schema__.children.entity_definition.defaultValue"},{"key":"schema.__root_schema__.children.entity_definition.sourceData"},{"key":"schema.__root_schema__.children.entity_definition.borderRadius"},{"key":"schema.__root_schema__.children.entity_definition.accentColor"},{"key":"schema.__root_schema__.children.date_added.defaultValue"},{"key":"schema.__root_schema__.children.date_added.borderRadius"},{"key":"schema.__root_schema__.children.date_added.accentColor"},{"key":"schema.__root_schema__.children.date_modified.defaultValue"},{"key":"schema.__root_schema__.children.date_modified.borderRadius"},{"key":"schema.__root_schema__.children.date_modified.accentColor"},{"key":"schema.__root_schema__.children.last_updated_by.defaultValue"},{"key":"schema.__root_schema__.children.last_updated_by.borderRadius"},{"key":"schema.__root_schema__.children.last_updated_by.accentColor"},{"key":"schema.__root_schema__.children.entity_category_description.defaultValue"},{"key":"schema.__root_schema__.children.entity_category_description.borderRadius"},{"key":"schema.__root_schema__.children.entity_category_description.accentColor"},{"key":"schema.__root_schema__.sourceData.entity_definition"},{"key":"schema.__root_schema__.children.entity_category.options"}],"sourceData":"{}","showReset":true,"resetButtonLabel":"Reset","key":"h9l9ozr8op","labelTextSize":"0.875rem","backgroundColor":"#fff","rightColumn":64.0,"autoGenerateForm":true,"widgetId":"o8oiq6vwkk","resetButtonStyles":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","buttonVariant":"SECONDARY"},"isVisible":"true","version":1.0,"parentId":"9rhv3ioohq","renderMode":"CANVAS","isLoading":false,"scrollContents":true,"fixedFooter":true,"submitButtonLabel":"Submit","childStylesheet":{"CHECKBOX":{"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"ARRAY":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none"},"CURRENCY_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"DATEPICKER":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"PHONE_NUMBER_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"OBJECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none"},"MULTISELECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"SELECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"NUMBER_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"PASSWORD_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"EMAIL_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"RADIO_GROUP":{"boxShadow":"none","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"SWITCH":{"boxShadow":"none","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"TEXT_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"MULTILINE_TEXT_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"}},"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","isVisible":"true","version":1.0,"parentId":"vmorzie6eq","isLoading":false,"borderRadius":"0px"}],"height":604.0,"labelTextSize":"0.875rem","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"0px","width":532.0},{"boxShadow":"none","widgetName":"Edit_Modal","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","searchTags":["dialog","popup","notification"],"topRow":15.0,"bottomRow":39.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":17.902099609375,"leftColumn":13.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas5","displayName":"Canvas","topRow":0.0,"bottomRow":680.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":682.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton1","onClick":"{{closeModal('Edit_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":54.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"5sd0j49vsy","isDeprecated":false,"rightColumn":62.0,"iconName":"cross","widgetId":"o0f4ngegv6","isVisible":true,"version":1.0,"parentId":"eq1lb5q0bf","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"Text17","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Edit entity","key":"xaqcpsuf8a","isDeprecated":false,"rightColumn":41.0,"textAlign":"LEFT","widgetId":"gly7itjxag","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"eq1lb5q0bf","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Form1","isCanvas":true,"displayName":"Form","iconSVG":"/static/media/icon.ea3e08d1.svg","searchTags":["group"],"topRow":7.0,"bottomRow":64.0,"parentRowSpace":10.0,"type":"FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":12.3125,"leftColumn":1.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas6","displayName":"Canvas","topRow":0.0,"bottomRow":550.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":false,"hideCard":true,"minHeight":400.0,"parentColumnSpace":1.0,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"widgetName":"Text18CopyCopy","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":15.0,"bottomRow":19.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":7.9599609375,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Definition","key":"xaqcpsuf8a","isDeprecated":false,"rightColumn":17.0,"textAlign":"LEFT","widgetId":"npsh1uyyhl","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"2adojvqxx2","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1rem"},{"widgetName":"Text18Copy","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":9.0,"bottomRow":13.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":7.9599609375,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Category","key":"xaqcpsuf8a","isDeprecated":false,"rightColumn":17.0,"textAlign":"LEFT","widgetId":"4kq11qblww","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"2adojvqxx2","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1rem"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"FormButton2Copy","onClick":"{{closeModal('Edit_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":49.0,"bottomRow":53.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":45.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","key":"0q5pnr6dj7","isDeprecated":false,"rightColumn":63.0,"isDefaultClickDisabled":true,"widgetId":"zfsmbwfosg","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"2adojvqxx2","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"FormButton1","onClick":"{{EditQuery.run(\n\t() => SelectQuery.run()\n\t\t\t\t\t.then(() => closeModal('Edit_Modal')), \n\t(error) => showAlert(`Error while updating resource!\\n ${error}`,'error'))\n}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":49.0,"bottomRow":53.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":23.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Submit","key":"0q5pnr6dj7","isDeprecated":false,"rightColumn":42.0,"isDefaultClickDisabled":true,"widgetId":"f0lzp7gjpa","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"2adojvqxx2","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"PRIMARY"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"FormButton2","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":49.0,"bottomRow":53.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"leftColumn":1.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Reset","key":"0q5pnr6dj7","isDeprecated":false,"rightColumn":20.0,"isDefaultClickDisabled":true,"widgetId":"7ur044xbtl","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"2adojvqxx2","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY"},{"widgetName":"Text18","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":3.0,"bottomRow":7.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":7.9599609375,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Name","key":"xaqcpsuf8a","isDeprecated":false,"rightColumn":17.0,"textAlign":"LEFT","widgetId":"ir06wg759v","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"2adojvqxx2","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1rem"},{"boxShadow":"none","widgetName":"entity_name","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","searchTags":["form","text input","number","textarea"],"topRow":3.0,"bottomRow":7.0,"parentRowSpace":10.0,"labelWidth":5.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":true,"parentColumnSpace":7.9599609375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":20.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultText"}],"labelPosition":"Left","labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"16t26bw4f5","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"widgetId":"nfv85ixsob","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":2.0,"parentId":"2adojvqxx2","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","iconAlign":"left","defaultText":"{{data_table.selectedRow.entity_name}}"},{"boxShadow":"none","widgetName":"entity_category","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","searchTags":["dropdown"],"topRow":9.0,"bottomRow":13.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{data_table.selectedRow.entity_category}}","animateLoading":true,"parentColumnSpace":7.9599609375,"dynamicTriggerPathList":[],"leftColumn":20.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultOptionValue"},{"key":"options"}],"labelPosition":"Left","options":"{{Entity_Categories_Dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"u0o6ppj7qr","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"widgetId":"hlpvn2135p","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"2adojvqxx2","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"entity_definition","dynamicPropertyPathList":[{"key":"onSubmit"}],"displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","onSubmit":"{{EditQuery.run(\n\t() => SelectQuery.run()\n\t\t\t\t\t.then(() => closeModal('Edit_Modal')), \n\t(error) => showAlert(`Error while updating resource!\\n ${error}`,'error'))\n}}","searchTags":["form","text input","number","textarea"],"topRow":15.0,"bottomRow":47.0,"parentRowSpace":10.0,"labelWidth":5.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":true,"parentColumnSpace":6.61767578125,"dynamicTriggerPathList":[{"key":"onSubmit"}],"resetOnSubmit":true,"leftColumn":20.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultText"}],"labelPosition":"Left","labelStyle":"","inputType":"TEXT","placeholderText":"\\{\\{ config(materialized='view') \\}\\}\n{% set schema = %}\n\\n\\nselect *\nfrom \\{\\{schema \\}\\}.ancview_delivery","maxChars":"1000","isDisabled":false,"key":"16t26bw4f5","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"widgetId":"n4l0kvjpnr","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":2.0,"parentId":"2adojvqxx2","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","iconAlign":"left","defaultText":"{{data_table.selectedRow.entity_definition}}"}],"key":"sr9fogr1ou","isDeprecated":false,"rightColumn":295.5,"detachFromLayout":true,"widgetId":"2adojvqxx2","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"s0j15vhfrb","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"e6t34yr0m2","backgroundColor":"#FFFFFF","isDeprecated":false,"rightColumn":58.0,"widgetId":"s0j15vhfrb","isVisible":true,"parentId":"eq1lb5q0bf","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"isDisabled":false,"key":"sr9fogr1ou","isDeprecated":false,"rightColumn":429.650390625,"detachFromLayout":true,"widgetId":"eq1lb5q0bf","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"wclmmfhlja","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"v2nflhfp55","height":682.0,"isDeprecated":false,"rightColumn":37.0,"detachFromLayout":true,"widgetId":"wclmmfhlja","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":510.0},{"boxShadow":"none","widgetName":"Help_Entities","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","searchTags":["dialog","popup","notification"],"topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":29.578125,"leftColumn":17.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas7","displayName":"Canvas","topRow":0.0,"bottomRow":700.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":700.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton3","onClick":"{{closeModal('Help_Entities')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":56.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":64.0,"iconName":"cross","widgetId":"b6d9xr1u0q","isVisible":true,"version":1.0,"parentId":"q3aczdo3qy","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"Help","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Entities","key":"lwygtopls1","isDeprecated":false,"rightColumn":41.0,"textAlign":"LEFT","widgetId":"t75w4ihf0t","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"q3aczdo3qy","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button2","onClick":"{{closeModal('Help_Entities')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","searchTags":["click","submit"],"topRow":62.0,"bottomRow":66.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":47.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"rpgyrik825","isDeprecated":false,"rightColumn":63.0,"isDefaultClickDisabled":true,"widgetId":"ow1l1alzl3","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"q3aczdo3qy","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"RichTextEditor1","displayName":"Rich Text Editor","iconSVG":"/static/media/icon.b35e139c.svg","labelText":"","searchTags":["input","rte"],"topRow":7.0,"bottomRow":61.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"RICH_TEXT_EDITOR_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":11.75,"dynamicTriggerPathList":[],"isToolbarHidden":true,"leftColumn":1.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"labelPosition":"Left","inputType":"html","isDisabled":true,"key":"xnsohys11k","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"isDefaultClickDisabled":true,"widgetId":"hee6vgf7k5","isVisible":true,"version":1.0,"parentId":"q3aczdo3qy","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultText":"

Entities are database views which contain the data DOT will test. You provide the SQL for these views and DOT will generate them automatically. Typically each view is a select statement onto an underlying database table or view, but you can also use SQL to combine data from multiple objects.

\n\n

Entity fields

\n\n\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n
FieldDescriptionExample
entity_nameEntity namefandango_events
entity_categoryEntity category, using categories defined in DOT categoriesflamenco_dance
entity_definitionThe SQL statement which gets the data DOT will scan\n\t\t\t

SELECT * from dance_events where type = 'flamenco' 

\n\t\t\t
\n\n

 

\n"}],"isDisabled":false,"key":"po978p5dvy","isDeprecated":false,"rightColumn":709.875,"detachFromLayout":true,"widgetId":"q3aczdo3qy","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"hyifopn8t9","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"oicy2sed8g","height":700.0,"isDeprecated":false,"rightColumn":41.0,"detachFromLayout":true,"widgetId":"hyifopn8t9","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":764.0}]},"layoutOnLoadActions":[[{"id":"Entities_Entity_Categories_Dropdown","name":"Entity_Categories_Dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0}],[{"id":"Entities_SelectQuery","name":"SelectQuery","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["data_table.sortOrder.column || 'entity_id'","data_table.sortOrder.order || 'ASC'","data_table.pageSize","data_table.searchText || \"\"","(data_table.pageNo - 1) * data_table.pageSize"],"timeoutInMillisecond":10000.0}]],"validOnPageLoadActions":true,"id":"Entities","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":false},"deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b0c306c6fbda2fd153a656"},{"unpublishedPage":{"name":"Categories","slug":"categories","layouts":[{"viewMode":false,"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1174.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":1070.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":59.0,"minHeight":900.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container1","borderColor":"#fff","dynamicPropertyPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"topRow":0.0,"bottomRow":86.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":870.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"IconButton2","onClick":"{{showModal('Help_Categories')}}","buttonColor":"#3b82f6","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"tooltip":"Find out more about projects\n","parentRowSpace":10.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":29.111083984375,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":5.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":7.0,"iconName":"help","widgetId":"4otvej8u3k","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"none","widgetName":"Text16","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"}],"text":"Categories","labelTextSize":"0.875rem","rightColumn":5.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"{{appsmith.theme.colors.primaryColor}}","widgetId":"xp5u9a9nzq","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","leftColumn":60.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"buttonVariant":"PRIMARY","isDisabled":false},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":7.0,"isSortable":true,"onPageChange":"{{SelectQuery.run()}}","type":"TABLE_WIDGET","animateLoading":true,"dynamicBindingPathList":[{"key":"tableData"},{"key":"derivedColumns.customColumn1.buttonLabel"},{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"accentColor"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"primaryColumns.customColumn1.borderRadius"},{"key":"primaryColumns.entity_category.computedValue"},{"key":"primaryColumns.description.computedValue"},{"key":"derivedColumns.customColumn2.boxShadow"},{"key":"primaryColumns.customColumn2.boxShadow"},{"key":"derivedColumns.customColumn2.borderRadius"},{"key":"primaryColumns.customColumn2.borderRadius"},{"key":"derivedColumns.customColumn2.buttonColor"},{"key":"primaryColumns.customColumn2.buttonColor"},{"key":"derivedColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.customColumn2.buttonLabel"}],"leftColumn":0.0,"delimiter":",","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisibleFilters":true,"isVisible":"true","enableClientSideSearch":true,"version":3.0,"totalRecordsCount":0.0,"isLoading":false,"onSearchTextChanged":"{{SelectQuery.run()}}","childStylesheet":{"button":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}"},"iconButton":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","menuColor":"{{appsmith.theme.colors.primaryColor}}"},"menuButton":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","menuColor":"{{appsmith.theme.colors.primaryColor}}"}},"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","primaryColumnId":"entity_category","columnSizeMap":{"task":245.0,"step":62.0,"status":75.0,"description":1532.0},"widgetName":"data_table","defaultPageSize":0.0,"columnOrder":["customColumn2","customColumn1","entity_category","description"],"dynamicPropertyPathList":[{"key":"primaryColumns.customColumn1.borderRadius"}],"displayName":"Table","bottomRow":85.0,"parentRowSpace":10.0,"defaultSelectedRow":"0","hideCard":false,"parentColumnSpace":16.3125,"dynamicTriggerPathList":[{"key":"primaryColumns.customColumn1.onClick"},{"key":"onPageChange"},{"key":"onSearchTextChanged"},{"key":"onSort"},{"key":"primaryColumns.customColumn2.onClick"}],"primaryColumns":{"customColumn1":{"isCellVisible":true,"boxShadow":"none","isDerived":true,"computedValue":"","onClick":"{{showModal('Delete_Modal')}}","buttonColor":"#DD4B34","buttonStyle":"rgb(3, 179, 101)","index":5.0,"isVisible":true,"label":"Delete","labelColor":"#FFFFFF","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Delete'))}}","columnType":"button","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","menuColor":"#03B365","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF","buttonVariant":"SECONDARY"},"entity_category":{"index":0.0,"width":150.0,"id":"entity_category","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_category","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_category))}}","cellBackground":""},"description":{"index":1.0,"width":150.0,"id":"description","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"description","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.description))}}","cellBackground":""},"customColumn2":{"index":3.0,"width":150.0,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","boxShadow":"{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Edit'))}}","onClick":"{{showModal('Edit_Modal')}}","buttonVariant":"SECONDARY"}},"key":"zba5qel0au","derivedColumns":{"customColumn1":{"isCellVisible":true,"boxShadow":"none","isDerived":true,"computedValue":"","onClick":"{{showModal('Delete_Modal')}}","buttonColor":"#DD4B34","buttonStyle":"rgb(3, 179, 101)","index":5.0,"isVisible":true,"label":"Delete","labelColor":"#FFFFFF","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Delete'))}}","columnType":"button","borderRadius":"0px","menuColor":"#03B365","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF"},"customColumn2":{"index":3.0,"width":150.0,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","boxShadow":"{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Edit'))}}"}},"labelTextSize":"0.875rem","rightColumn":64.0,"textSize":"0.875rem","widgetId":"m2y9g15vra","tableData":"{{SelectQuery.data}}","label":"Data","searchKey":"","parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"renderMode":"CANVAS","horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER"},{"boxShadow":"none","widgetName":"Add_Test_Button","onClick":"{{showModal('Insert_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":49.0,"dynamicBindingPathList":[],"text":"Add category","isDisabled":"","key":"2ob5jed9vo","rightColumn":60.0,"isDefaultClickDisabled":true,"widgetId":"xgpt51a98c","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"}]}],"borderWidth":"0","labelTextSize":"0.875rem","backgroundColor":"#FFFFFF","rightColumn":64.0,"widgetId":"mvubsemxfo","containerStyle":"card","isVisible":"true","version":1.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"Delete_Modal","topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas3","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":240.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Alert_text","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Delete Row","labelTextSize":"0.875rem","rightColumn":41.0,"textAlign":"LEFT","widgetId":"35yoxo4oec","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button1","onClick":"{{closeModal('Delete_Modal')}}","dynamicPropertyPathList":[],"buttonColor":"#2E3D49","topRow":17.0,"bottomRow":21.0,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"text":"Cancel","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":46.0,"isDefaultClickDisabled":true,"widgetId":"lryg8kw537","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"none","widgetName":"Delete_Button","onClick":"{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#DD4B34","topRow":17.0,"bottomRow":21.0,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":46.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"text":"Confirm","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":64.0,"isDefaultClickDisabled":true,"widgetId":"qq02lh7ust","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"PRIMARY"},{"boxShadow":"none","widgetName":"Text12","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":6.875,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[{"key":"text"}],"text":"Are you sure you want to delete category \"{{\ndata_table.selectedRow.entity_category\n}}\"?","labelTextSize":"0.875rem","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","isVisible":"true","fontStyle":"","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"1rem"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","isVisible":"true","version":1.0,"parentId":"i3whp03wf0","isLoading":false,"borderRadius":"0px"}],"height":240.0,"labelTextSize":"0.875rem","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":456.0},{"boxShadow":"none","widgetName":"Insert_Modal","topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Canvas4","topRow":0.0,"bottomRow":630.0,"parentRowSpace":1.0,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":604.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"schema":{"__root_schema__":{"children":{"entity_category":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_category))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"anc","isCustomField":false,"accessor":"entity_category","identifier":"entity_category","position":0.0,"originalIdentifier":"entity_category","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Entity Category"},"description":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.description))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"Antenatal care","isCustomField":false,"accessor":"description","identifier":"description","position":1.0,"originalIdentifier":"description","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Description"}},"dataType":"object","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Object","sourceData":{"entity_category":"anc","description":"Antenatal care"},"isCustomField":false,"accessor":"__root_schema__","identifier":"__root_schema__","position":-1.0,"originalIdentifier":"__root_schema__","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none","isDisabled":false,"isRequired":false,"isVisible":true,"labelTextSize":"0.875rem","label":""}},"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"insert_form","submitButtonStyles":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","buttonVariant":"PRIMARY"},"dynamicPropertyPathList":[{"key":"schema.__root_schema__.children.date_of_birth.defaultValue"},{"key":"schema.__root_schema__.children.col5.defaultValue"},{"key":"schema.__root_schema__.children.col4.defaultValue"},{"key":"onSubmit"}],"displayName":"JSON Form","iconSVG":"/static/media/icon.6bacf7df.svg","onSubmit":"{{InsertQuery.run(\n\t() => SelectQuery.run()\n\t\t\t\t\t.then(() => closeModal('Insert_Modal')), \n\t(error) => showAlert(`Error while inserting resource!\\n ${error}`,'error'))\n}}","topRow":0.0,"bottomRow":59.0,"fieldLimitExceeded":false,"parentRowSpace":10.0,"title":"Insert category","type":"JSON_FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":8.125,"dynamicTriggerPathList":[{"key":"onSubmit"}],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"schema.__root_schema__.defaultValue"},{"key":"sourceData"},{"key":"schema.__root_schema__.borderRadius"},{"key":"schema.__root_schema__.cellBorderRadius"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"submitButtonStyles.buttonColor"},{"key":"submitButtonStyles.borderRadius"},{"key":"resetButtonStyles.borderRadius"},{"key":"resetButtonStyles.buttonColor"},{"key":"schema.__root_schema__.children.entity_category.defaultValue"},{"key":"schema.__root_schema__.children.entity_category.borderRadius"},{"key":"schema.__root_schema__.children.entity_category.accentColor"},{"key":"schema.__root_schema__.children.description.defaultValue"},{"key":"schema.__root_schema__.children.description.borderRadius"},{"key":"schema.__root_schema__.children.description.accentColor"}],"sourceData":"{{data_table.tableData[0]}}","showReset":true,"resetButtonLabel":"Reset","key":"h9l9ozr8op","labelTextSize":"0.875rem","backgroundColor":"#fff","rightColumn":64.0,"autoGenerateForm":true,"widgetId":"o8oiq6vwkk","resetButtonStyles":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","buttonVariant":"SECONDARY"},"isVisible":"true","version":1.0,"parentId":"9rhv3ioohq","renderMode":"CANVAS","isLoading":false,"scrollContents":true,"fixedFooter":true,"submitButtonLabel":"Submit","childStylesheet":{"CHECKBOX":{"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"ARRAY":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none"},"CURRENCY_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"DATEPICKER":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"PHONE_NUMBER_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"OBJECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none"},"MULTISELECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"SELECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"NUMBER_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"PASSWORD_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"EMAIL_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"RADIO_GROUP":{"boxShadow":"none","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"SWITCH":{"boxShadow":"none","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"TEXT_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"MULTILINE_TEXT_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"}},"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","isVisible":"true","version":1.0,"parentId":"vmorzie6eq","isLoading":false,"borderRadius":"0px"}],"height":604.0,"labelTextSize":"0.875rem","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"0px","width":532.0},{"boxShadow":"none","widgetName":"Edit_Modal","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","searchTags":["dialog","popup","notification"],"topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":29.578125,"leftColumn":18.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas5","displayName":"Canvas","topRow":0.0,"bottomRow":480.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":480.0,"parentColumnSpace":1.0,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton1","onClick":"{{closeModal('Edit_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":56.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"bwmnkkyk8d","isDeprecated":false,"rightColumn":64.0,"iconName":"cross","widgetId":"rlrarqxv06","isVisible":true,"version":1.0,"parentId":"knpsoqzwmw","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"Text17","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Edit category","key":"rbryafzol3","isDeprecated":false,"rightColumn":41.0,"textAlign":"LEFT","widgetId":"q4d888oyns","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"knpsoqzwmw","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Form1","isCanvas":true,"displayName":"Form","iconSVG":"/static/media/icon.ea3e08d1.svg","searchTags":["group"],"topRow":6.0,"bottomRow":46.0,"parentRowSpace":10.0,"type":"FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":6.9375,"leftColumn":2.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas6","displayName":"Canvas","topRow":0.0,"bottomRow":390.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":false,"hideCard":true,"minHeight":400.0,"parentColumnSpace":1.0,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"widgetName":"Text18Copy","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":6.0,"bottomRow":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Description","key":"rbryafzol3","isDeprecated":false,"rightColumn":16.0,"textAlign":"LEFT","widgetId":"y1bvpnebsg","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"az4k6n3oyn","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","searchTags":["form","text input","number","textarea"],"topRow":6.0,"bottomRow":27.0,"parentRowSpace":10.0,"labelWidth":5.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":true,"parentColumnSpace":6.2998046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":16.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultText"}],"labelPosition":"Left","labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"m1e0mbis3u","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":64.0,"widgetId":"l40edivcab","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":2.0,"parentId":"az4k6n3oyn","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","iconAlign":"left","defaultText":"{{data_table.selectedRow.description}}"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"FormButton2Copy","onClick":"{{closeModal('Edit_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":33.0,"bottomRow":37.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":47.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","key":"oufnyqf6kh","isDeprecated":false,"rightColumn":63.0,"isDefaultClickDisabled":true,"widgetId":"zzlfobtb7t","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"az4k6n3oyn","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY"},{"widgetName":"Text18","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Category","key":"rbryafzol3","isDeprecated":false,"rightColumn":16.0,"textAlign":"LEFT","widgetId":"5cc95a7kah","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"az4k6n3oyn","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.875rem"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"FormButton1","onClick":"{{EditQuery.run(\n\t() => SelectQuery.run()\n\t\t\t\t\t.then(() => closeModal('Edit_Modal')), \n\t(error) => showAlert(`Error while updating category!\\n ${error}`,'error'))\n}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":33.0,"bottomRow":37.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":25.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Update","key":"oufnyqf6kh","isDeprecated":false,"rightColumn":41.0,"isDefaultClickDisabled":true,"widgetId":"2fe9ravbn6","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"az4k6n3oyn","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"PRIMARY"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"FormButton2","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":33.0,"bottomRow":37.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"leftColumn":2.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Reset","key":"oufnyqf6kh","isDeprecated":false,"rightColumn":18.0,"isDefaultClickDisabled":true,"widgetId":"ckbp40j57o","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"az4k6n3oyn","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY"},{"boxShadow":"none","widgetName":"entity_category","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","searchTags":["form","text input","number","textarea"],"topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"labelWidth":5.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":true,"parentColumnSpace":6.2998046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":16.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultText"}],"labelPosition":"Left","labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"m1e0mbis3u","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":64.0,"widgetId":"56yybpha2d","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":2.0,"parentId":"az4k6n3oyn","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","iconAlign":"left","defaultText":"{{data_table.selectedRow.entity_category}}"}],"key":"8s7v4n3eya","isDeprecated":false,"rightColumn":166.5,"detachFromLayout":true,"widgetId":"az4k6n3oyn","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"mdfsa5oulq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"lm0duza3a3","backgroundColor":"#FFFFFF","isDeprecated":false,"rightColumn":63.0,"widgetId":"mdfsa5oulq","isVisible":true,"parentId":"knpsoqzwmw","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"isDisabled":false,"key":"8s7v4n3eya","isDeprecated":false,"rightColumn":709.875,"detachFromLayout":true,"widgetId":"knpsoqzwmw","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"cavlmqzrgo","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"i43eft0zcb","height":480.0,"isDeprecated":false,"rightColumn":42.0,"detachFromLayout":true,"widgetId":"cavlmqzrgo","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":456.0},{"boxShadow":"none","widgetName":"Help_Categories","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","searchTags":["dialog","popup","notification"],"topRow":17.0,"bottomRow":41.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":29.578125,"leftColumn":16.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas7","displayName":"Canvas","topRow":0.0,"bottomRow":740.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":742.0,"parentColumnSpace":1.0,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton3","onClick":"{{closeModal('Help_Categories')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":56.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":64.0,"iconName":"cross","widgetId":"4o2kih4h87","isVisible":true,"version":1.0,"parentId":"l4zz9s3uze","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"Text19","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Categories","key":"lwygtopls1","isDeprecated":false,"rightColumn":41.0,"textAlign":"LEFT","widgetId":"k4yqah1oq5","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"l4zz9s3uze","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button2","onClick":"{{closeModal('Help_Categories')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","searchTags":["click","submit"],"topRow":67.0,"bottomRow":71.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":47.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"rpgyrik825","isDeprecated":false,"rightColumn":63.0,"isDefaultClickDisabled":true,"widgetId":"k6w003kn0h","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"l4zz9s3uze","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"RichTextEditor1","displayName":"Rich Text Editor","iconSVG":"/static/media/icon.b35e139c.svg","labelText":"","searchTags":["input","rte"],"topRow":6.0,"bottomRow":65.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"RICH_TEXT_EDITOR_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":12.5625,"dynamicTriggerPathList":[],"isToolbarHidden":true,"leftColumn":1.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"labelPosition":"Left","inputType":"html","isDisabled":true,"key":"xnsohys11k","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"isDefaultClickDisabled":true,"widgetId":"2rm248gld0","isVisible":true,"version":1.0,"parentId":"l4zz9s3uze","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultText":"

The entities (database views) that contain the data DOT will test, can be assigned categories. This is useful for analysis and dashboards as test results can be shown by category.

\n\n

Category fields

\n\n\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n
FieldDescriptionExample
entity_categoryCategoryflamenco_dance
descriptionMore details for the category\n\t\t\t

Data for dancing which originate from flamenco

\n\t\t\t
\n\n

 

\n"}],"isDisabled":false,"key":"po978p5dvy","isDeprecated":false,"rightColumn":709.875,"detachFromLayout":true,"widgetId":"l4zz9s3uze","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"c19yqlxkp5","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"oicy2sed8g","height":742.0,"isDeprecated":false,"rightColumn":40.0,"detachFromLayout":true,"widgetId":"c19yqlxkp5","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":816.0}]},"layoutOnLoadActions":[[{"id":"Categories_SelectQuery","name":"SelectQuery","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["data_table.sortOrder.column || 'entity_category'","data_table.sortOrder.order || 'ASC'","data_table.pageSize","data_table.searchText || \"\"","(data_table.pageNo - 1) * data_table.pageSize"],"timeoutInMillisecond":10000.0}]],"validOnPageLoadActions":true,"id":"Categories","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":false},"publishedPage":{"name":"Categories","slug":"categories","layouts":[{"viewMode":false,"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1174.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":1070.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":59.0,"minHeight":900.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container1","borderColor":"#fff","dynamicPropertyPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"topRow":0.0,"bottomRow":86.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":870.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"borderRadius":"0px","children":[{"boxShadow":"none","widgetName":"IconButton2","onClick":"{{showModal('Help_Categories')}}","buttonColor":"#3b82f6","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"tooltip":"Find out more about projects\n","parentRowSpace":10.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":29.111083984375,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":5.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":7.0,"iconName":"help","widgetId":"4otvej8u3k","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"none","widgetName":"Text16","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"}],"text":"Categories","labelTextSize":"0.875rem","rightColumn":5.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"{{appsmith.theme.colors.primaryColor}}","widgetId":"xp5u9a9nzq","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","leftColumn":60.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"buttonVariant":"PRIMARY","isDisabled":false},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":7.0,"isSortable":true,"onPageChange":"{{SelectQuery.run()}}","type":"TABLE_WIDGET","animateLoading":true,"dynamicBindingPathList":[{"key":"tableData"},{"key":"derivedColumns.customColumn1.buttonLabel"},{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"accentColor"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"primaryColumns.customColumn1.borderRadius"},{"key":"primaryColumns.entity_category.computedValue"},{"key":"primaryColumns.description.computedValue"},{"key":"derivedColumns.customColumn2.boxShadow"},{"key":"primaryColumns.customColumn2.boxShadow"},{"key":"derivedColumns.customColumn2.borderRadius"},{"key":"primaryColumns.customColumn2.borderRadius"},{"key":"derivedColumns.customColumn2.buttonColor"},{"key":"primaryColumns.customColumn2.buttonColor"},{"key":"derivedColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.customColumn2.buttonLabel"}],"leftColumn":0.0,"delimiter":",","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisibleFilters":true,"isVisible":"true","enableClientSideSearch":true,"version":3.0,"totalRecordsCount":0.0,"isLoading":false,"onSearchTextChanged":"{{SelectQuery.run()}}","childStylesheet":{"button":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}"},"iconButton":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","menuColor":"{{appsmith.theme.colors.primaryColor}}"},"menuButton":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","menuColor":"{{appsmith.theme.colors.primaryColor}}"}},"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","primaryColumnId":"entity_category","columnSizeMap":{"task":245.0,"step":62.0,"status":75.0,"description":1532.0},"widgetName":"data_table","defaultPageSize":0.0,"columnOrder":["customColumn2","customColumn1","entity_category","description"],"dynamicPropertyPathList":[{"key":"primaryColumns.customColumn1.borderRadius"}],"displayName":"Table","bottomRow":85.0,"parentRowSpace":10.0,"defaultSelectedRow":"0","hideCard":false,"parentColumnSpace":16.3125,"dynamicTriggerPathList":[{"key":"primaryColumns.customColumn1.onClick"},{"key":"onPageChange"},{"key":"onSearchTextChanged"},{"key":"onSort"},{"key":"primaryColumns.customColumn2.onClick"}],"primaryColumns":{"customColumn1":{"isCellVisible":true,"boxShadow":"none","isDerived":true,"computedValue":"","onClick":"{{showModal('Delete_Modal')}}","buttonColor":"#DD4B34","buttonStyle":"rgb(3, 179, 101)","index":5.0,"isVisible":true,"label":"Delete","labelColor":"#FFFFFF","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Delete'))}}","columnType":"button","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","menuColor":"#03B365","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF","buttonVariant":"SECONDARY"},"entity_category":{"index":0.0,"width":150.0,"id":"entity_category","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_category","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_category))}}","cellBackground":""},"description":{"index":1.0,"width":150.0,"id":"description","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"description","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.description))}}","cellBackground":""},"customColumn2":{"index":3.0,"width":150.0,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","boxShadow":"{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Edit'))}}","onClick":"{{showModal('Edit_Modal')}}","buttonVariant":"SECONDARY"}},"key":"zba5qel0au","derivedColumns":{"customColumn1":{"isCellVisible":true,"boxShadow":"none","isDerived":true,"computedValue":"","onClick":"{{showModal('Delete_Modal')}}","buttonColor":"#DD4B34","buttonStyle":"rgb(3, 179, 101)","index":5.0,"isVisible":true,"label":"Delete","labelColor":"#FFFFFF","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Delete'))}}","columnType":"button","borderRadius":"0px","menuColor":"#03B365","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF"},"customColumn2":{"index":3.0,"width":150.0,"id":"customColumn2","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Edit","computedValue":"","buttonStyle":"rgb(3, 179, 101)","labelColor":"#FFFFFF","boxShadow":"{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'Edit'))}}"}},"labelTextSize":"0.875rem","rightColumn":64.0,"textSize":"0.875rem","widgetId":"m2y9g15vra","tableData":"{{SelectQuery.data}}","label":"Data","searchKey":"","parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"renderMode":"CANVAS","horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER"},{"boxShadow":"none","widgetName":"Add_Test_Button","onClick":"{{showModal('Insert_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":49.0,"dynamicBindingPathList":[],"text":"Add category","isDisabled":"","key":"2ob5jed9vo","rightColumn":60.0,"isDefaultClickDisabled":true,"widgetId":"xgpt51a98c","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"}]}],"borderWidth":"0","labelTextSize":"0.875rem","backgroundColor":"#FFFFFF","rightColumn":64.0,"widgetId":"mvubsemxfo","containerStyle":"card","isVisible":"true","version":1.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"Delete_Modal","topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas3","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":240.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Alert_text","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[],"text":"Delete Row","labelTextSize":"0.875rem","rightColumn":41.0,"textAlign":"LEFT","widgetId":"35yoxo4oec","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button1","onClick":"{{closeModal('Delete_Modal')}}","dynamicPropertyPathList":[],"buttonColor":"#2E3D49","topRow":17.0,"bottomRow":21.0,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"text":"Cancel","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":46.0,"isDefaultClickDisabled":true,"widgetId":"lryg8kw537","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"none","widgetName":"Delete_Button","onClick":"{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}","dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#DD4B34","topRow":17.0,"bottomRow":21.0,"type":"BUTTON_WIDGET","dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":46.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"text":"Confirm","isDisabled":false,"labelTextSize":"0.875rem","rightColumn":64.0,"isDefaultClickDisabled":true,"widgetId":"qq02lh7ust","isVisible":"true","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"PRIMARY"},{"boxShadow":"none","widgetName":"Text12","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":6.875,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"System Default","leftColumn":1.0,"dynamicBindingPathList":[{"key":"text"}],"text":"Are you sure you want to delete category \"{{\ndata_table.selectedRow.entity_category\n}}\"?","labelTextSize":"0.875rem","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","isVisible":"true","fontStyle":"","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","fontSize":"1rem"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","isVisible":"true","version":1.0,"parentId":"i3whp03wf0","isLoading":false,"borderRadius":"0px"}],"height":240.0,"labelTextSize":"0.875rem","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":456.0},{"boxShadow":"none","widgetName":"Insert_Modal","topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","shouldScrollContents":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"boxShadow":"none","widgetName":"Canvas4","topRow":0.0,"bottomRow":630.0,"parentRowSpace":1.0,"canExtend":true,"type":"CANVAS_WIDGET","shouldScrollContents":false,"minHeight":604.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"schema":{"__root_schema__":{"children":{"entity_category":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_category))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"anc","isCustomField":false,"accessor":"entity_category","identifier":"entity_category","position":0.0,"originalIdentifier":"entity_category","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Entity Category"},"description":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.description))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"Antenatal care","isCustomField":false,"accessor":"description","identifier":"description","position":1.0,"originalIdentifier":"description","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Description"}},"dataType":"object","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Object","sourceData":{"entity_category":"anc","description":"Antenatal care"},"isCustomField":false,"accessor":"__root_schema__","identifier":"__root_schema__","position":-1.0,"originalIdentifier":"__root_schema__","boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none","isDisabled":false,"isRequired":false,"isVisible":true,"labelTextSize":"0.875rem","label":""}},"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"insert_form","submitButtonStyles":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","buttonVariant":"PRIMARY"},"dynamicPropertyPathList":[{"key":"schema.__root_schema__.children.date_of_birth.defaultValue"},{"key":"schema.__root_schema__.children.col5.defaultValue"},{"key":"schema.__root_schema__.children.col4.defaultValue"},{"key":"onSubmit"}],"displayName":"JSON Form","iconSVG":"/static/media/icon.6bacf7df.svg","onSubmit":"{{InsertQuery.run(\n\t() => SelectQuery.run()\n\t\t\t\t\t.then(() => closeModal('Insert_Modal')), \n\t(error) => showAlert(`Error while inserting resource!\\n ${error}`,'error'))\n}}","topRow":0.0,"bottomRow":59.0,"fieldLimitExceeded":false,"parentRowSpace":10.0,"title":"Insert category","type":"JSON_FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":8.125,"dynamicTriggerPathList":[{"key":"onSubmit"}],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"schema.__root_schema__.defaultValue"},{"key":"sourceData"},{"key":"schema.__root_schema__.borderRadius"},{"key":"schema.__root_schema__.cellBorderRadius"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"submitButtonStyles.buttonColor"},{"key":"submitButtonStyles.borderRadius"},{"key":"resetButtonStyles.borderRadius"},{"key":"resetButtonStyles.buttonColor"},{"key":"schema.__root_schema__.children.entity_category.defaultValue"},{"key":"schema.__root_schema__.children.entity_category.borderRadius"},{"key":"schema.__root_schema__.children.entity_category.accentColor"},{"key":"schema.__root_schema__.children.description.defaultValue"},{"key":"schema.__root_schema__.children.description.borderRadius"},{"key":"schema.__root_schema__.children.description.accentColor"}],"sourceData":"{{data_table.tableData[0]}}","showReset":true,"resetButtonLabel":"Reset","key":"h9l9ozr8op","labelTextSize":"0.875rem","backgroundColor":"#fff","rightColumn":64.0,"autoGenerateForm":true,"widgetId":"o8oiq6vwkk","resetButtonStyles":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","buttonVariant":"SECONDARY"},"isVisible":"true","version":1.0,"parentId":"9rhv3ioohq","renderMode":"CANVAS","isLoading":false,"scrollContents":true,"fixedFooter":true,"submitButtonLabel":"Submit","childStylesheet":{"CHECKBOX":{"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"ARRAY":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none"},"CURRENCY_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"DATEPICKER":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"PHONE_NUMBER_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"OBJECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none"},"MULTISELECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"SELECT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"NUMBER_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"PASSWORD_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"EMAIL_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"RADIO_GROUP":{"boxShadow":"none","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"SWITCH":{"boxShadow":"none","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"TEXT_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"},"MULTILINE_TEXT_INPUT":{"boxShadow":"none","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accentColor":"{{appsmith.theme.colors.primaryColor}}"}},"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"isDisabled":false,"labelTextSize":"0.875rem","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","isVisible":"true","version":1.0,"parentId":"vmorzie6eq","isLoading":false,"borderRadius":"0px"}],"height":604.0,"labelTextSize":"0.875rem","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"0px","width":532.0},{"boxShadow":"none","widgetName":"Edit_Modal","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","searchTags":["dialog","popup","notification"],"topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":29.578125,"leftColumn":18.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas5","displayName":"Canvas","topRow":0.0,"bottomRow":480.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":480.0,"parentColumnSpace":1.0,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton1","onClick":"{{closeModal('Edit_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":56.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"bwmnkkyk8d","isDeprecated":false,"rightColumn":64.0,"iconName":"cross","widgetId":"rlrarqxv06","isVisible":true,"version":1.0,"parentId":"knpsoqzwmw","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"Text17","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Edit category","key":"rbryafzol3","isDeprecated":false,"rightColumn":41.0,"textAlign":"LEFT","widgetId":"q4d888oyns","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"knpsoqzwmw","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Form1","isCanvas":true,"displayName":"Form","iconSVG":"/static/media/icon.ea3e08d1.svg","searchTags":["group"],"topRow":6.0,"bottomRow":46.0,"parentRowSpace":10.0,"type":"FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":6.9375,"leftColumn":2.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas6","displayName":"Canvas","topRow":0.0,"bottomRow":390.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":false,"hideCard":true,"minHeight":400.0,"parentColumnSpace":1.0,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"widgetName":"Text18Copy","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":6.0,"bottomRow":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Description","key":"rbryafzol3","isDeprecated":false,"rightColumn":16.0,"textAlign":"LEFT","widgetId":"y1bvpnebsg","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"az4k6n3oyn","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.875rem"},{"boxShadow":"none","widgetName":"description","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","searchTags":["form","text input","number","textarea"],"topRow":6.0,"bottomRow":27.0,"parentRowSpace":10.0,"labelWidth":5.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":true,"parentColumnSpace":6.2998046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":16.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultText"}],"labelPosition":"Left","labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"m1e0mbis3u","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":64.0,"widgetId":"l40edivcab","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":2.0,"parentId":"az4k6n3oyn","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","iconAlign":"left","defaultText":"{{data_table.selectedRow.description}}"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"FormButton2Copy","onClick":"{{closeModal('Edit_Modal')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":33.0,"bottomRow":37.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":47.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","key":"oufnyqf6kh","isDeprecated":false,"rightColumn":63.0,"isDefaultClickDisabled":true,"widgetId":"zzlfobtb7t","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"az4k6n3oyn","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY"},{"widgetName":"Text18","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Category","key":"rbryafzol3","isDeprecated":false,"rightColumn":16.0,"textAlign":"LEFT","widgetId":"5cc95a7kah","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"az4k6n3oyn","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.875rem"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"FormButton1","onClick":"{{EditQuery.run(\n\t() => SelectQuery.run()\n\t\t\t\t\t.then(() => closeModal('Edit_Modal')), \n\t(error) => showAlert(`Error while updating category!\\n ${error}`,'error'))\n}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":33.0,"bottomRow":37.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":25.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Update","key":"oufnyqf6kh","isDeprecated":false,"rightColumn":41.0,"isDefaultClickDisabled":true,"widgetId":"2fe9ravbn6","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"az4k6n3oyn","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"PRIMARY"},{"resetFormOnClick":true,"boxShadow":"none","widgetName":"FormButton2","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"FormButton","iconSVG":"/static/media/icon.cca02633.svg","topRow":33.0,"bottomRow":37.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"leftColumn":2.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Reset","key":"oufnyqf6kh","isDeprecated":false,"rightColumn":18.0,"isDefaultClickDisabled":true,"widgetId":"ckbp40j57o","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"az4k6n3oyn","renderMode":"CANVAS","isLoading":false,"disabledWhenInvalid":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY"},{"boxShadow":"none","widgetName":"entity_category","displayName":"Input","iconSVG":"/static/media/icon.9f505595.svg","searchTags":["form","text input","number","textarea"],"topRow":1.0,"bottomRow":5.0,"parentRowSpace":10.0,"labelWidth":5.0,"autoFocus":false,"type":"INPUT_WIDGET_V2","hideCard":false,"animateLoading":true,"parentColumnSpace":6.2998046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":16.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultText"}],"labelPosition":"Left","labelStyle":"","inputType":"TEXT","isDisabled":false,"key":"m1e0mbis3u","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":64.0,"widgetId":"56yybpha2d","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"label":"","version":2.0,"parentId":"az4k6n3oyn","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","iconAlign":"left","defaultText":"{{data_table.selectedRow.entity_category}}"}],"key":"8s7v4n3eya","isDeprecated":false,"rightColumn":166.5,"detachFromLayout":true,"widgetId":"az4k6n3oyn","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"mdfsa5oulq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"lm0duza3a3","backgroundColor":"#FFFFFF","isDeprecated":false,"rightColumn":63.0,"widgetId":"mdfsa5oulq","isVisible":true,"parentId":"knpsoqzwmw","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"isDisabled":false,"key":"8s7v4n3eya","isDeprecated":false,"rightColumn":709.875,"detachFromLayout":true,"widgetId":"knpsoqzwmw","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"cavlmqzrgo","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"i43eft0zcb","height":480.0,"isDeprecated":false,"rightColumn":42.0,"detachFromLayout":true,"widgetId":"cavlmqzrgo","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":456.0},{"boxShadow":"none","widgetName":"Help_Categories","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","searchTags":["dialog","popup","notification"],"topRow":17.0,"bottomRow":41.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":29.578125,"leftColumn":16.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas7","displayName":"Canvas","topRow":0.0,"bottomRow":740.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":742.0,"parentColumnSpace":1.0,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"IconButton3","onClick":"{{closeModal('Help_Categories')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":1.0,"bottomRow":5.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":56.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"iconSize":24.0,"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":64.0,"iconName":"cross","widgetId":"4o2kih4h87","isVisible":true,"version":1.0,"parentId":"l4zz9s3uze","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"widgetName":"Text19","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Categories","key":"lwygtopls1","isDeprecated":false,"rightColumn":41.0,"textAlign":"LEFT","widgetId":"k4yqah1oq5","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"l4zz9s3uze","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button2","onClick":"{{closeModal('Help_Categories')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","searchTags":["click","submit"],"topRow":67.0,"bottomRow":71.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":47.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"rpgyrik825","isDeprecated":false,"rightColumn":63.0,"isDefaultClickDisabled":true,"widgetId":"k6w003kn0h","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"l4zz9s3uze","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"RichTextEditor1","displayName":"Rich Text Editor","iconSVG":"/static/media/icon.b35e139c.svg","labelText":"","searchTags":["input","rte"],"topRow":6.0,"bottomRow":65.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"RICH_TEXT_EDITOR_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":12.5625,"dynamicTriggerPathList":[],"isToolbarHidden":true,"leftColumn":1.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"labelPosition":"Left","inputType":"html","isDisabled":true,"key":"xnsohys11k","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"isDefaultClickDisabled":true,"widgetId":"2rm248gld0","isVisible":true,"version":1.0,"parentId":"l4zz9s3uze","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","defaultText":"

The entities (database views) that contain the data DOT will test, can be assigned categories. This is useful for analysis and dashboards as test results can be shown by category.

\n\n

Category fields

\n\n\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n
FieldDescriptionExample
entity_categoryCategoryflamenco_dance
descriptionMore details for the category\n\t\t\t

Data for dancing which originate from flamenco

\n\t\t\t
\n\n

 

\n"}],"isDisabled":false,"key":"po978p5dvy","isDeprecated":false,"rightColumn":709.875,"detachFromLayout":true,"widgetId":"l4zz9s3uze","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"c19yqlxkp5","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"oicy2sed8g","height":742.0,"isDeprecated":false,"rightColumn":40.0,"detachFromLayout":true,"widgetId":"c19yqlxkp5","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":816.0}]},"layoutOnLoadActions":[[{"id":"Categories_SelectQuery","name":"SelectQuery","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["data_table.sortOrder.column || 'entity_category'","data_table.sortOrder.order || 'ASC'","data_table.pageSize","data_table.searchText || \"\"","(data_table.pageNo - 1) * data_table.pageSize"],"timeoutInMillisecond":10000.0}]],"validOnPageLoadActions":true,"id":"Categories","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":false},"deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b1d3b8c6fbda2fd153a6a0"}],"actionList":[{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Delete_Test","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM dot.\"configured_tests\"\n WHERE \"test_id\" = {{configured_tests.triggeredRow.test_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["configured_tests.triggeredRow.test_id"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Delete_Test","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM dot.\"configured_tests\"\n WHERE \"test_id\" = {{configured_tests.triggeredRow.test_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["configured_tests.triggeredRow.test_id"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Delete_Test","deleted":false,"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e291ee3ca9d4fca99f56e"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Configured_tests_data","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n ct.*,\n ce.entity_name\nFROM \n dot.\"configured_tests\" ct,\n dot.\"configured_entities\" ce\nwhere \n ce.entity_id = ct.entity_id\nAND \"description\" ilike '%{{configured_tests.searchText || \"\"}}%'\nORDER BY \"{{col_select.selectedOptionValue}}\" {{order_select.selectedOptionValue}}\nLIMIT {{configured_tests.pageSize}}\nOFFSET {{(configured_tests.pageNo - 1) * configured_tests.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(configured_tests.pageNo - 1) * configured_tests.pageSize","col_select.selectedOptionValue","order_select.selectedOptionValue","configured_tests.searchText || \"\"","configured_tests.pageSize"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Configured_tests_data","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n ct.*,\n ce.entity_name\nFROM \n dot.\"configured_tests\" ct,\n dot.\"configured_entities\" ce\nwhere \n ce.entity_id = ct.entity_id\nAND \"description\" ilike '%{{configured_tests.searchText || \"\"}}%'\nORDER BY \"{{col_select.selectedOptionValue}}\" {{order_select.selectedOptionValue}}\nLIMIT {{configured_tests.pageSize}}\nOFFSET {{(configured_tests.pageNo - 1) * configured_tests.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(configured_tests.pageNo - 1) * configured_tests.pageSize","col_select.selectedOptionValue","order_select.selectedOptionValue","configured_tests.searchText || \"\"","configured_tests.pageSize"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Configured_tests_data","deleted":false,"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e291ee3ca9d4fca99f56f"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Edit_Test","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE dot.\"configured_tests\" SET\n \"test_activated\" = {{test_activated.isChecked}},\n\t\t\"project_id\" = '{{project_id.selectedOptionValue}}',\n\t\t\"scenario_id\" = '{{scenario_id.selectedOptionValue}}',\n\t\t\"priority\" = {{priority.selectedOptionValue}},\n\t\t\"description\" = '{{description.text}}',\n\t\t\"impact\" = '{{impact.text}}',\n\t\t\"proposed_remediation\" = '{{proposed_remediation.text}}',\n\t\t\"entity_id\" = '{{entity_id.selectedOptionValue}}',\n\t\t\"test_type\" = '{{test_type.selectedOptionValue}}',\n\t\t\"column_name\" = '{{column_name__edit.selectedOptionValue}}',\n\t\t\"test_parameters\" = '{{test_parameters.text}}',\n\t\t\"last_updated_by\" = '{{appsmith.user.name}}',\n\t\t\"date_modified\" = NOW()\n WHERE \"test_id\" = '{{configured_tests.selectedRow.test_id}}';","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["proposed_remediation.text","test_activated.isChecked","appsmith.user.name","entity_id.selectedOptionValue","configured_tests.selectedRow.test_id","test_type.selectedOptionValue","column_name__edit.selectedOptionValue","priority.selectedOptionValue","test_parameters.text","description.text","impact.text","project_id.selectedOptionValue","scenario_id.selectedOptionValue"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Edit_Test","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE dot.\"configured_tests\" SET\n \"test_activated\" = {{test_activated.isChecked}},\n\t\t\"project_id\" = '{{project_id.selectedOptionValue}}',\n\t\t\"scenario_id\" = '{{scenario_id.selectedOptionValue}}',\n\t\t\"priority\" = {{priority.selectedOptionValue}},\n\t\t\"description\" = '{{description.text}}',\n\t\t\"impact\" = '{{impact.text}}',\n\t\t\"proposed_remediation\" = '{{proposed_remediation.text}}',\n\t\t\"entity_id\" = '{{entity_id.selectedOptionValue}}',\n\t\t\"test_type\" = '{{test_type.selectedOptionValue}}',\n\t\t\"column_name\" = '{{column_name__edit.selectedOptionValue}}',\n\t\t\"test_parameters\" = '{{test_parameters.text}}',\n\t\t\"last_updated_by\" = '{{appsmith.user.name}}',\n\t\t\"date_modified\" = NOW()\n WHERE \"test_id\" = '{{configured_tests.selectedRow.test_id}}';","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["proposed_remediation.text","test_activated.isChecked","appsmith.user.name","entity_id.selectedOptionValue","configured_tests.selectedRow.test_id","test_type.selectedOptionValue","column_name__edit.selectedOptionValue","priority.selectedOptionValue","test_parameters.text","description.text","impact.text","project_id.selectedOptionValue","scenario_id.selectedOptionValue"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Edit_Test","deleted":false,"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e291ee3ca9d4fca99f570"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Scenario_dropdown","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select CONCAT(cause_sub_category, ' - ', scenario) as \"label\", scenario_id as \"value\" from dot.scenarios;","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Scenario_dropdown","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select CONCAT(cause_sub_category, ' - ', scenario) as \"label\", scenario_id as \"value\" from dot.scenarios;","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Scenario_dropdown","deleted":false,"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e7f4be3ca9d4fca99f5bd"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Projects_dropdown","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select project_id as \"label\", project_id as \"value\" from dot.projects;","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Projects_dropdown","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select project_id as \"label\", project_id as \"value\" from dot.projects;","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Projects_dropdown","deleted":false,"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e73cce3ca9d4fca99f5b6"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Add_Test","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO dot.\"configured_tests\" (\n \"test_activated\" ,\n\t\t\"project_id\",\n\t\t\"scenario_id\" ,\n\t\t\"priority\",\n\t\t\"description\" ,\n\t\t\"impact\",\n\t\t\"proposed_remediation\" ,\n\t\t\"entity_id\",\n\t\t\"test_type\" ,\n\t\t\"column_name\" ,\n\t\t\"test_parameters\",\n\t \"last_updated_by\",\n\t \"date_added\",\n\t \"date_modified\"\n)\nVALUES (\n {{test_activated__add.isChecked}},\n\t\t'{{project_id__add.selectedOptionValue}}',\n\t\t'{{scenario_id__add.selectedOptionValue}}',\n\t\t{{priority__add.selectedOptionValue}},\n\t\t'{{description__add.text}}',\n\t\t'{{impact__add.text}}',\n\t\t'{{proposed_remediation__add.text}}',\n\t\t'{{entity_id__add.selectedOptionValue}}',\n\t\t'{{test_type__add.selectedOptionValue}}',\n\t\t'{{column_name__add.selectedOptionValue}}',\n\t\t'{{test_parameters__add.text == '' ? undefined : test_parameters__add.text}}',\n\t '{{appsmith.user.name}}',\n\t NOW(),\n\t NOW()\n);\n\n","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["entity_id__add.selectedOptionValue","appsmith.user.name","test_parameters__add.text == '' ? undefined : test_parameters__add.text","project_id__add.selectedOptionValue","test_activated__add.isChecked","priority__add.selectedOptionValue","scenario_id__add.selectedOptionValue","impact__add.text","test_type__add.selectedOptionValue","column_name__add.selectedOptionValue","description__add.text","proposed_remediation__add.text"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Add_Test","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO dot.\"configured_tests\" (\n \"test_activated\" ,\n\t\t\"project_id\",\n\t\t\"scenario_id\" ,\n\t\t\"priority\",\n\t\t\"description\" ,\n\t\t\"impact\",\n\t\t\"proposed_remediation\" ,\n\t\t\"entity_id\",\n\t\t\"test_type\" ,\n\t\t\"column_name\" ,\n\t\t\"test_parameters\",\n\t \"last_updated_by\",\n\t \"date_added\",\n\t \"date_modified\"\n)\nVALUES (\n {{test_activated__add.isChecked}},\n\t\t'{{project_id__add.selectedOptionValue}}',\n\t\t'{{scenario_id__add.selectedOptionValue}}',\n\t\t{{priority__add.selectedOptionValue}},\n\t\t'{{description__add.text}}',\n\t\t'{{impact__add.text}}',\n\t\t'{{proposed_remediation__add.text}}',\n\t\t'{{entity_id__add.selectedOptionValue}}',\n\t\t'{{test_type__add.selectedOptionValue}}',\n\t\t'{{column_name__add.selectedOptionValue}}',\n\t\t'{{test_parameters__add.text == '' ? undefined : test_parameters__add.text}}',\n\t '{{appsmith.user.name}}',\n\t NOW(),\n\t NOW()\n);\n\n","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["entity_id__add.selectedOptionValue","appsmith.user.name","test_parameters__add.text == '' ? undefined : test_parameters__add.text","project_id__add.selectedOptionValue","test_activated__add.isChecked","priority__add.selectedOptionValue","scenario_id__add.selectedOptionValue","impact__add.text","test_type__add.selectedOptionValue","column_name__add.selectedOptionValue","description__add.text","proposed_remediation__add.text"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Add_Test","deleted":false,"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e291ee3ca9d4fca99f571"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Entities_dropdown","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select entity_name as \"label\", entity_id as \"value\" from dot.configured_entities;\n","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Entities_dropdown","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select entity_name as \"label\", entity_id as \"value\" from dot.configured_entities;\n","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Entities_dropdown","deleted":false,"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e8160e3ca9d4fca99f5c0"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Testtypes_dropdown","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select test_type as \"label\", test_type as \"value\" from dot.test_types ORDER by test_type;","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Testtypes_dropdown","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select test_type as \"label\", test_type as \"value\" from dot.test_types ORDER by test_type;","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Testtypes_dropdown","deleted":false,"gitSyncId":"628e28f5e3ca9d4fca99f56a_628e8315e3ca9d4fca99f5c3"},{"pluginType":"JS","pluginId":"js-plugin","unpublishedAction":{"name":"bulkUpdate","fullyQualifiedName":"JSFunctions.bulkUpdate","datasource":{"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isAutoGenerated":false,"deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","collectionId":"Tests_JSFunctions","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"() => {\n\t\tlet test_activated_b = test_activated_bulk.isChecked;\n\t\tBulk_Update_Test_Activated.run(() => {\n\t\t\tshowAlert('Successfully updated test activation status');\n\t\t\tcloseModal('Activate_Tests_Modal');\n\t\t\tresetWidget('test_activated_bulk');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_activated_bulk': test_activated_b, 'test_ids': JSFunctions.getIds()});\n\t}","jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n\t\tlet test_activated_b = test_activated_bulk.isChecked;\n\t\tBulk_Update_Test_Activated.run(() => {\n\t\t\tshowAlert('Successfully updated test activation status');\n\t\t\tcloseModal('Activate_Tests_Modal');\n\t\t\tresetWidget('test_activated_bulk');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_activated_bulk': test_activated_b, 'test_ids': JSFunctions.getIds()});\n\t}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"bulkUpdate","fullyQualifiedName":"JSFunctions.bulkUpdate","datasource":{"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isAutoGenerated":false,"deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","collectionId":"Tests_JSFunctions","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"() => {\n\t\tlet test_activated_b = test_activated_bulk.isChecked;\n\t\tBulk_Update_Test_Activated.run(() => {\n\t\t\tshowAlert('Successfully updated test activation status');\n\t\t\tcloseModal('Activate_Tests_Modal');\n\t\t\tresetWidget('test_activated_bulk');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_activated_bulk': test_activated_b, 'test_ids': JSFunctions.getIds()});\n\t}","jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n\t\tlet test_activated_b = test_activated_bulk.isChecked;\n\t\tBulk_Update_Test_Activated.run(() => {\n\t\t\tshowAlert('Successfully updated test activation status');\n\t\t\tcloseModal('Activate_Tests_Modal');\n\t\t\tresetWidget('test_activated_bulk');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_activated_bulk': test_activated_b, 'test_ids': JSFunctions.getIds()});\n\t}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_JSFunctions.bulkUpdate","deleted":false,"gitSyncId":"62928debc18cc05f7bf4919d_629914528a009422ab1df063"},{"pluginType":"JS","pluginId":"js-plugin","unpublishedAction":{"name":"getIds","fullyQualifiedName":"JSFunctions.getIds","datasource":{"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isAutoGenerated":false,"deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","collectionId":"Tests_JSFunctions","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"() => {\n\t\treturn `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`\n\t}","jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n\t\treturn `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`\n\t}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"getIds","fullyQualifiedName":"JSFunctions.getIds","datasource":{"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isAutoGenerated":false,"deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","collectionId":"Tests_JSFunctions","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"() => {\n\t\treturn `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`\n\t}","jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n\t\treturn `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`\n\t}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_JSFunctions.getIds","deleted":false,"gitSyncId":"62928debc18cc05f7bf4919d_629914528a009422ab1df066"},{"pluginType":"JS","pluginId":"js-plugin","unpublishedAction":{"name":"bulkDelete","fullyQualifiedName":"JSFunctions.bulkDelete","datasource":{"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isAutoGenerated":false,"deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","collectionId":"Tests_JSFunctions","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"() => {\n\t\tBulk_Delete_Tests.run(() => {\n\t\t\tshowAlert('Successfully deleted tests');\n\t\t\tcloseModal('Delete_Tests_Modal');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_ids': JSFunctions.getIds()});\n\t}","jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n\t\tBulk_Delete_Tests.run(() => {\n\t\t\tshowAlert('Successfully deleted tests');\n\t\t\tcloseModal('Delete_Tests_Modal');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_ids': JSFunctions.getIds()});\n\t}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"bulkDelete","fullyQualifiedName":"JSFunctions.bulkDelete","datasource":{"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isAutoGenerated":false,"deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","collectionId":"Tests_JSFunctions","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"() => {\n\t\tBulk_Delete_Tests.run(() => {\n\t\t\tshowAlert('Successfully deleted tests');\n\t\t\tcloseModal('Delete_Tests_Modal');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_ids': JSFunctions.getIds()});\n\t}","jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n\t\tBulk_Delete_Tests.run(() => {\n\t\t\tshowAlert('Successfully deleted tests');\n\t\t\tcloseModal('Delete_Tests_Modal');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_ids': JSFunctions.getIds()});\n\t}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_JSFunctions.bulkDelete","deleted":false,"gitSyncId":"62928debc18cc05f7bf4919d_629970a48a009422ab1df08b"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Bulk_Delete_Tests","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM dot.test_results_summary WHERE test_id in {{ this.params.test_ids }};\n\nDELETE FROM dot.test_results WHERE test_id in {{ this.params.test_ids }};\n\nDELETE FROM dot.configured_tests WHERE test_id in {{ this.params.test_ids }};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["this.params.test_ids"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Bulk_Delete_Tests","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM dot.test_results_summary WHERE test_id in {{ this.params.test_ids }};\n\nDELETE FROM dot.test_results WHERE test_id in {{ this.params.test_ids }};\n\nDELETE FROM dot.configured_tests WHERE test_id in {{ this.params.test_ids }};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["this.params.test_ids"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Bulk_Delete_Tests","deleted":false,"gitSyncId":"62928debc18cc05f7bf4919d_629970f38a009422ab1df08d"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Bulk_Update_Test_Activated","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE dot.configured_tests SET test_activated = {{this.params.test_activated_bulk}} WHERE test_id in {{ this.params.test_ids }};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["this.params.test_activated_bulk","this.params.test_ids"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Bulk_Update_Test_Activated","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE dot.configured_tests SET test_activated = {{this.params.test_activated_bulk}} WHERE test_id in {{ this.params.test_ids }};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["this.params.test_activated_bulk","this.params.test_ids"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Bulk_Update_Test_Activated","deleted":false,"gitSyncId":"62928debc18cc05f7bf4919d_629915ca8a009422ab1df069"},{"pluginType":"JS","pluginId":"js-plugin","unpublishedAction":{"name":"allowUpdate","fullyQualifiedName":"JSFunctions.allowUpdate","datasource":{"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isAutoGenerated":false,"deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","collectionId":"Tests_JSFunctions","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"() => !!configured_tests.selectedRows.length","jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => !!configured_tests.selectedRows.length"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"allowUpdate","fullyQualifiedName":"JSFunctions.allowUpdate","datasource":{"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isAutoGenerated":false,"deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","collectionId":"Tests_JSFunctions","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"() => !!configured_tests.selectedRows.length","jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => !!configured_tests.selectedRows.length"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_JSFunctions.allowUpdate","deleted":false,"gitSyncId":"62928debc18cc05f7bf4919d_629914528a009422ab1df065"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Test_parameters_sample","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n test_type,\n\t\treplace(replace(string_agg(CONCAT('\"' , parameter , '\": \"' , example, '\"'), ', '),'\"[','['),']\"',']') as \"json_sample\"\nFROM \n dot.test_parameters_interface\nWHERE\n\t\ttest_type = '{{test_type.selectedOptionValue == undefined || test_type.selectedOptionValue == '' ? test_type__add.selectedOptionValue : test_type.selectedOptionValue}}'\nGROUP BY \n test_type; ","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["test_type.selectedOptionValue == undefined || test_type.selectedOptionValue == '' ? test_type__add.selectedOptionValue : test_type.selectedOptionValue"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Test_parameters_sample","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n test_type,\n\t\treplace(replace(string_agg(CONCAT('\"' , parameter , '\": \"' , example, '\"'), ', '),'\"[','['),']\"',']') as \"json_sample\"\nFROM \n dot.test_parameters_interface\nWHERE\n\t\ttest_type = '{{test_type.selectedOptionValue == undefined || test_type.selectedOptionValue == '' ? test_type__add.selectedOptionValue : test_type.selectedOptionValue}}'\nGROUP BY \n test_type; ","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["test_type.selectedOptionValue == undefined || test_type.selectedOptionValue == '' ? test_type__add.selectedOptionValue : test_type.selectedOptionValue"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Test_parameters_sample","deleted":false,"gitSyncId":"62a7661059e4ea6afd4637bf_62ab587c8128da407630125b"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Entity_Columns_dropdown","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n isc.column_name as \"label\",\n\t\tisc.column_name as \"value\"\nFROM \n INFORMATION_SCHEMA.COLUMNS isc,\n dot.configured_entities ce\nwhere\n ce.entity_name = isc.table_name \n and ce.entity_id = '{{entity_id.selectedOptionValue == undefined || entity_id.selectedOptionValue == '' ? entity_id__add.selectedOptionValue : entity_id.selectedOptionValue}}'\norder by column_name;","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["entity_id.selectedOptionValue == undefined || entity_id.selectedOptionValue == '' ? entity_id__add.selectedOptionValue : entity_id.selectedOptionValue"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Entity_Columns_dropdown","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n isc.column_name as \"label\",\n\t\tisc.column_name as \"value\"\nFROM \n INFORMATION_SCHEMA.COLUMNS isc,\n dot.configured_entities ce\nwhere\n ce.entity_name = isc.table_name \n and ce.entity_id = '{{entity_id.selectedOptionValue == undefined || entity_id.selectedOptionValue == '' ? entity_id__add.selectedOptionValue : entity_id.selectedOptionValue}}'\norder by column_name;","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["entity_id.selectedOptionValue == undefined || entity_id.selectedOptionValue == '' ? entity_id__add.selectedOptionValue : entity_id.selectedOptionValue"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Entity_Columns_dropdown","deleted":false,"gitSyncId":"62928debc18cc05f7bf4919d_629a3bcc8a009422ab1df0b4"},{"pluginType":"JS","pluginId":"js-plugin","unpublishedAction":{"name":"testUsesParameters","fullyQualifiedName":"JSFunctions.testUsesParameters","datasource":{"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isAutoGenerated":false,"deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","collectionId":"Tests_JSFunctions","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"(test_type_in) => {\n\t\tconst test_types = Test_Types_That_Use_Parameters.data.map(item => { return item.test_type;});\n\t\treturn test_types.includes(test_type_in);\n\t}","jsArguments":[{"name":"test_type_in"}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(test_type_in) => {\n\t\tconst test_types = Test_Types_That_Use_Parameters.data.map(item => { return item.test_type;});\n\t\treturn test_types.includes(test_type_in);\n\t}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"testUsesParameters","fullyQualifiedName":"JSFunctions.testUsesParameters","datasource":{"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isAutoGenerated":false,"deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","collectionId":"Tests_JSFunctions","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"(test_type_in) => {\n\t\tconst test_types = Test_Types_That_Use_Parameters.data.map(item => { return item.test_type;});\n\t\treturn test_types.includes(test_type_in);\n\t}","jsArguments":[{"name":"test_type_in"}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(test_type_in) => {\n\t\tconst test_types = Test_Types_That_Use_Parameters.data.map(item => { return item.test_type;});\n\t\treturn test_types.includes(test_type_in);\n\t}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_JSFunctions.testUsesParameters","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b089aec6fbda2fd153a61c"},{"pluginType":"JS","pluginId":"js-plugin","unpublishedAction":{"name":"testUsesColumn","fullyQualifiedName":"JSFunctions.testUsesColumn","datasource":{"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isAutoGenerated":false,"deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","collectionId":"Tests_JSFunctions","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"(test_type_in) => {\n\t\tconst test_types = Test_Types_That_Use_Column.data.map(item => { return item.test_type;});\n\t\treturn test_types.includes(test_type_in);\n\t}","jsArguments":[{"name":"test_type_in"}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(test_type_in) => {\n\t\tconst test_types = Test_Types_That_Use_Column.data.map(item => { return item.test_type;});\n\t\treturn test_types.includes(test_type_in);\n\t}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"testUsesColumn","fullyQualifiedName":"JSFunctions.testUsesColumn","datasource":{"name":"UNUSED_DATASOURCE","pluginId":"js-plugin","messages":[],"isAutoGenerated":false,"deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","collectionId":"Tests_JSFunctions","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"(test_type_in) => {\n\t\tconst test_types = Test_Types_That_Use_Column.data.map(item => { return item.test_type;});\n\t\treturn test_types.includes(test_type_in);\n\t}","jsArguments":[{"name":"test_type_in"}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(test_type_in) => {\n\t\tconst test_types = Test_Types_That_Use_Column.data.map(item => { return item.test_type;});\n\t\treturn test_types.includes(test_type_in);\n\t}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_JSFunctions.testUsesColumn","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b08acec6fbda2fd153a61e"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Test_Types_That_Use_Parameters","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select test_type from dot.test_types where uses_parameters=true;","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Test_Types_That_Use_Parameters","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select test_type from dot.test_types where uses_parameters=true;","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Test_Types_That_Use_Parameters","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b08ea0c6fbda2fd153a621"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Test_Types_That_Use_Column","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select test_type from dot.test_types where uses_column=true;","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Test_Types_That_Use_Column","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select test_type from dot.test_types where uses_column=true;","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Test_Types_That_Use_Column","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b08ef2c6fbda2fd153a623"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"SelectQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Projects","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM dot.\"projects\"\nWHERE \"project_id\" ilike '%{{data_table.searchText || \"\"}}%'\nORDER BY \"{{data_table.sortOrder.column || 'project_id'}}\" {{data_table.sortOrder.order || 'ASC'}}\nLIMIT {{data_table.pageSize}}\nOFFSET {{(data_table.pageNo - 1) * data_table.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["data_table.sortOrder.column || 'project_id'","data_table.sortOrder.order || 'ASC'","data_table.pageSize","data_table.searchText || \"\"","(data_table.pageNo - 1) * data_table.pageSize"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"SelectQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Projects","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM dot.\"projects\"\nWHERE \"project_id\" ilike '%{{data_table.searchText || \"\"}}%'\nORDER BY \"{{data_table.sortOrder.column || 'project_id'}}\" {{data_table.sortOrder.order || 'ASC'}}\nLIMIT {{data_table.pageSize}}\nOFFSET {{(data_table.pageNo - 1) * data_table.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["data_table.sortOrder.column || 'project_id'","data_table.sortOrder.order || 'ASC'","data_table.pageSize","data_table.searchText || \"\"","(data_table.pageNo - 1) * data_table.pageSize"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Projects_SelectQuery","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b0a7d3c6fbda2fd153a63d"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"DeleteQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Projects","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM dot.\"projects\"\n WHERE \"project_id\" = {{data_table.triggeredRow.project_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["data_table.triggeredRow.project_id"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"DeleteQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Projects","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM dot.\"projects\"\n WHERE \"project_id\" = {{data_table.triggeredRow.project_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["data_table.triggeredRow.project_id"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Projects_DeleteQuery","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b0a7d3c6fbda2fd153a63e"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"InsertQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Projects","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO dot.\"projects\" (\n\t\"project_id\",\n\t\"description\",\n\t\"active\",\n\t\"project_schema\",\n\t\"contacts\",\n\t\"last_updated_by\",\n\t\"date_modified\",\n\t\"date_added\")\nVALUES (\n\t'{{insert_form.formData.project_id}}',\n\t'{{insert_form.formData.description}}',\n\t'{{insert_form.formData.active}}',\n\t'{{insert_form.formData.project_schema}}',\n\t'{{insert_form.formData.contacts}}',\n\t'{{appsmith.user.name}}',\n\t NOW(),\n NOW()\n);","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["insert_form.formData.project_schema","appsmith.user.name","insert_form.formData.contacts","insert_form.formData.project_id","insert_form.formData.description","insert_form.formData.active"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"InsertQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Projects","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO dot.\"projects\" (\n\t\"project_id\",\n\t\"description\",\n\t\"active\",\n\t\"project_schema\",\n\t\"contacts\",\n\t\"last_updated_by\",\n\t\"date_modified\",\n\t\"date_added\")\nVALUES (\n\t'{{insert_form.formData.project_id}}',\n\t'{{insert_form.formData.description}}',\n\t'{{insert_form.formData.active}}',\n\t'{{insert_form.formData.project_schema}}',\n\t'{{insert_form.formData.contacts}}',\n\t'{{appsmith.user.name}}',\n\t NOW(),\n NOW()\n);","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["insert_form.formData.project_schema","appsmith.user.name","insert_form.formData.contacts","insert_form.formData.project_id","insert_form.formData.description","insert_form.formData.active"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Projects_InsertQuery","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b0a7d3c6fbda2fd153a63f"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"EditQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Projects","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE dot.\"projects\" SET\n\t\t\"project_id\" = '{{project_id_edit.text}}',\n\t\t\"description\" = '{{project_description_edit.text}}',\n\t\t\"active\" = '{{active_edit.isChecked}}',\n\t\t\"project_schema\" = '{{project_schema_edit.selectedOptionValue}}',\n\t\t\"contacts\" = '{{contacts_edit.text}}',\n\t\t\"last_updated_by\" = '{{appsmith.user.name}}',\n\t\t\"date_modified\" = NOW()\nWHERE \"project_id\" = '{{data_table.selectedRow.project_id}}';","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["project_id_edit.text","contacts_edit.text","appsmith.user.name","data_table.selectedRow.project_id","project_description_edit.text","active_edit.isChecked","project_schema_edit.selectedOptionValue"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"EditQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Projects","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE dot.\"projects\" SET\n\t\t\"project_id\" = '{{project_id_edit.text}}',\n\t\t\"description\" = '{{project_description_edit.text}}',\n\t\t\"active\" = '{{active_edit.isChecked}}',\n\t\t\"project_schema\" = '{{project_schema_edit.selectedOptionValue}}',\n\t\t\"contacts\" = '{{contacts_edit.text}}',\n\t\t\"last_updated_by\" = '{{appsmith.user.name}}',\n\t\t\"date_modified\" = NOW()\nWHERE \"project_id\" = '{{data_table.selectedRow.project_id}}';","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["project_id_edit.text","contacts_edit.text","appsmith.user.name","data_table.selectedRow.project_id","project_description_edit.text","active_edit.isChecked","project_schema_edit.selectedOptionValue"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Projects_EditQuery","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b0a7d3c6fbda2fd153a640"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"DB_Schemas_dropdown","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Projects","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n schema_name as \"label\",\n\t schema_name as \"value\"\nFROM information_schema.schemata\nWHERE schema_name not like 'pg_%' AND schema_name != 'information_schema';","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"DB_Schemas_dropdown","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Projects","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n schema_name as \"label\",\n\t schema_name as \"value\"\nFROM information_schema.schemata\nWHERE schema_name not like 'pg_%' AND schema_name != 'information_schema';","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Projects_DB_Schemas_dropdown","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b0be07c6fbda2fd153a64d"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"SelectQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Entities","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select \n ce.*, \n ec.description as \"entity_category_description\"\nfrom \n dot.configured_entities ce,\n dot.entity_categories ec\nwhere \n ce.entity_category = ec.entity_category\nAND \"entity_name\" ilike '%{{data_table.searchText || \"\"}}%'\nORDER BY \"{{data_table.sortOrder.column || 'entity_id'}}\" {{data_table.sortOrder.order || 'ASC'}}\nLIMIT {{data_table.pageSize}}\nOFFSET {{(data_table.pageNo - 1) * data_table.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["data_table.sortOrder.column || 'entity_id'","data_table.sortOrder.order || 'ASC'","data_table.pageSize","data_table.searchText || \"\"","(data_table.pageNo - 1) * data_table.pageSize"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"SelectQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Entities","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select \n ce.*, \n ec.description as \"entity_category_description\"\nfrom \n dot.configured_entities ce,\n dot.entity_categories ec\nwhere \n ce.entity_category = ec.entity_category\nAND \"entity_name\" ilike '%{{data_table.searchText || \"\"}}%'\nORDER BY \"{{data_table.sortOrder.column || 'entity_id'}}\" {{data_table.sortOrder.order || 'ASC'}}\nLIMIT {{data_table.pageSize}}\nOFFSET {{(data_table.pageNo - 1) * data_table.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["data_table.sortOrder.column || 'entity_id'","data_table.sortOrder.order || 'ASC'","data_table.pageSize","data_table.searchText || \"\"","(data_table.pageNo - 1) * data_table.pageSize"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Entities_SelectQuery","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b0c317c6fbda2fd153a658"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"DeleteQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Entities","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM dot.\"configured_entities\"\n WHERE \"entity_id\" = {{data_table.triggeredRow.entity_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["data_table.triggeredRow.entity_id"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"DeleteQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Entities","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM dot.\"configured_entities\"\n WHERE \"entity_id\" = {{data_table.triggeredRow.entity_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["data_table.triggeredRow.entity_id"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Entities_DeleteQuery","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b0c317c6fbda2fd153a65b"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"InsertQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Entities","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO dot.\"configured_entities\" (\n\t\"entity_name\",\n\t\"entity_category\",\n\t\"entity_definition\",\n\t\"date_added\",\n\t\"date_modified\",\n\t\"last_updated_by\")\nVALUES (\n\t'{{insert_form.formData.entity_name}}',\n\t'{{insert_form.formData.entity_category}}',\n\t'{{insert_form.formData.entity_definition}}',\n\tNOW(),\n\tNOW(),\n\t'{{appsmith.user.name}}');","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["appsmith.user.name","insert_form.formData.entity_definition","insert_form.formData.entity_category","insert_form.formData.entity_name"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"InsertQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Entities","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO dot.\"configured_entities\" (\n\t\"entity_name\",\n\t\"entity_category\",\n\t\"entity_definition\",\n\t\"date_added\",\n\t\"date_modified\",\n\t\"last_updated_by\")\nVALUES (\n\t'{{insert_form.formData.entity_name}}',\n\t'{{insert_form.formData.entity_category}}',\n\t'{{insert_form.formData.entity_definition}}',\n\tNOW(),\n\tNOW(),\n\t'{{appsmith.user.name}}');","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["appsmith.user.name","insert_form.formData.entity_definition","insert_form.formData.entity_category","insert_form.formData.entity_name"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Entities_InsertQuery","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b0c317c6fbda2fd153a65a"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"EditQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Entities","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE dot.\"configured_entities\" SET\n\t\t\"entity_name\" = '{{entity_name.text}}',\n\t\t\"entity_category\" = '{{entity_category.selectedOptionValue}}',\n \"entity_definition\" = '{{entity_definition.text}}',\n\t\t\"date_modified\" = NOW(),\n\t\t\"last_updated_by\" = '{{appsmith.user.name}}'\nWHERE \"entity_id\" = {{data_table.selectedRow.entity_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["entity_definition.text","appsmith.user.name","entity_name.text","entity_category.selectedOptionValue","data_table.selectedRow.entity_id"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"EditQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Entities","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE dot.\"configured_entities\" SET\n\t\t\"entity_name\" = '{{entity_name.text}}',\n\t\t\"entity_category\" = '{{entity_category.selectedOptionValue}}',\n \"entity_definition\" = '{{entity_definition.text}}',\n\t\t\"date_modified\" = NOW(),\n\t\t\"last_updated_by\" = '{{appsmith.user.name}}'\nWHERE \"entity_id\" = {{data_table.selectedRow.entity_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["entity_definition.text","appsmith.user.name","entity_name.text","entity_category.selectedOptionValue","data_table.selectedRow.entity_id"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Entities_EditQuery","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b0c317c6fbda2fd153a65c"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Entity_Categories_Dropdown","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Entities","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select \n description as \"label\",\n entity_category as \"value\"\nfrom \n dot.entity_categories\norder by \n description","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Entity_Categories_Dropdown","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Entities","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select \n description as \"label\",\n entity_category as \"value\"\nfrom \n dot.entity_categories\norder by \n description","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Entities_Entity_Categories_Dropdown","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b0ce94c6fbda2fd153a663"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"SelectQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Categories","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM dot.\"entity_categories\"\nWHERE \"description\" ilike '%{{data_table.searchText || \"\"}}%'\nORDER BY \"{{data_table.sortOrder.column || 'entity_category'}}\" {{data_table.sortOrder.order || 'ASC'}}\nLIMIT {{data_table.pageSize}}\nOFFSET {{(data_table.pageNo - 1) * data_table.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["data_table.sortOrder.column || 'entity_category'","data_table.sortOrder.order || 'ASC'","data_table.pageSize","data_table.searchText || \"\"","(data_table.pageNo - 1) * data_table.pageSize"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"SelectQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Categories","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM dot.\"entity_categories\"\nWHERE \"description\" ilike '%{{data_table.searchText || \"\"}}%'\nORDER BY \"{{data_table.sortOrder.column || 'entity_category'}}\" {{data_table.sortOrder.order || 'ASC'}}\nLIMIT {{data_table.pageSize}}\nOFFSET {{(data_table.pageNo - 1) * data_table.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["data_table.sortOrder.column || 'entity_category'","data_table.sortOrder.order || 'ASC'","data_table.pageSize","data_table.searchText || \"\"","(data_table.pageNo - 1) * data_table.pageSize"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Categories_SelectQuery","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b1d3d3c6fbda2fd153a6aa"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"EditQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Categories","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE dot.\"entity_categories\" SET\n \"entity_category\" = '{{entity_category.text}}',\n\t\t\"description\" = '{{description.text}}'\nWHERE \"entity_category\" = {{data_table.selectedRow.entity_category}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["entity_category.text","data_table.selectedRow.entity_category","description.text"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"EditQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Categories","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE dot.\"entity_categories\" SET\n \"entity_category\" = '{{entity_category.text}}',\n\t\t\"description\" = '{{description.text}}'\nWHERE \"entity_category\" = {{data_table.selectedRow.entity_category}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["entity_category.text","data_table.selectedRow.entity_category","description.text"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Categories_EditQuery","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b1d3d3c6fbda2fd153a6ad"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"DeleteQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Categories","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM dot.\"entity_categories\"\n WHERE \"entity_category\" = {{data_table.triggeredRow.entity_category}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["data_table.triggeredRow.entity_category"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"DeleteQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Categories","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM dot.\"entity_categories\"\n WHERE \"entity_category\" = {{data_table.triggeredRow.entity_category}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["data_table.triggeredRow.entity_category"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Categories_DeleteQuery","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b1d3d3c6fbda2fd153a6ac"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"InsertQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Categories","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO dot.\"entity_categories\" (\n\t\"entity_category\",\n\t\"description\")\nVALUES (\n\t'{{insert_form.formData.entity_category}}',\n\t'{{insert_form.formData.description}}');","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["insert_form.formData.description","insert_form.formData.entity_category"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"InsertQuery","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Categories","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO dot.\"entity_categories\" (\n\t\"entity_category\",\n\t\"description\")\nVALUES (\n\t'{{insert_form.formData.entity_category}}',\n\t'{{insert_form.formData.description}}');","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["insert_form.formData.description","insert_form.formData.entity_category"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Categories_InsertQuery","deleted":false,"gitSyncId":"62af748ac6fbda2fd153a5ed_62b1d3d3c6fbda2fd153a6ab"}],"actionCollectionList":[{"unpublishedCollection":{"name":"JSFunctions","pageId":"Tests","pluginId":"js-plugin","pluginType":"JS","actions":[],"archivedActions":[],"body":"export default {\n\tallowUpdate: () => !!configured_tests.selectedRows.length,\n\tgetIds: () => {\n\t\treturn `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`\n\t},\n\tbulkUpdate: () => {\n\t\tlet test_activated_b = test_activated_bulk.isChecked;\n\t\tBulk_Update_Test_Activated.run(() => {\n\t\t\tshowAlert('Successfully updated test activation status');\n\t\t\tcloseModal('Activate_Tests_Modal');\n\t\t\tresetWidget('test_activated_bulk');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_activated_bulk': test_activated_b, 'test_ids': this.getIds()});\n\t},\n\tbulkDelete: () => {\n\t\tBulk_Delete_Tests.run(() => {\n\t\t\tshowAlert('Successfully deleted tests');\n\t\t\tcloseModal('Delete_Tests_Modal');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_ids': this.getIds()});\n\t},\n\t// Flag to say if a test_type uses test_parameters in configured_tests\n\ttestUsesParameters: (test_type_in) => {\n\t\tconst test_types = Test_Types_That_Use_Parameters.data.map(item => { return item.test_type;});\n\t\treturn test_types.includes(test_type_in);\n\t},\n\t// Flag to say if a test_type uses columns in configured_tests\n\ttestUsesColumn: (test_type_in) => {\n\t\tconst test_types = Test_Types_That_Use_Column.data.map(item => { return item.test_type;});\n\t\treturn test_types.includes(test_type_in);\n\t},\n\t\n}","variables":[]},"publishedCollection":{"name":"JSFunctions","pageId":"Tests","pluginId":"js-plugin","pluginType":"JS","actions":[],"archivedActions":[],"body":"export default {\n\tallowUpdate: () => !!configured_tests.selectedRows.length,\n\tgetIds: () => {\n\t\treturn `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`\n\t},\n\tbulkUpdate: () => {\n\t\tlet test_activated_b = test_activated_bulk.isChecked;\n\t\tBulk_Update_Test_Activated.run(() => {\n\t\t\tshowAlert('Successfully updated test activation status');\n\t\t\tcloseModal('Activate_Tests_Modal');\n\t\t\tresetWidget('test_activated_bulk');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_activated_bulk': test_activated_b, 'test_ids': this.getIds()});\n\t},\n\tbulkDelete: () => {\n\t\tBulk_Delete_Tests.run(() => {\n\t\t\tshowAlert('Successfully deleted tests');\n\t\t\tcloseModal('Delete_Tests_Modal');\n\t\t\tConfigured_tests_data.run();\n\t\t}, () => {}, {'test_ids': this.getIds()});\n\t},\n\t// Flag to say if a test_type uses test_parameters in configured_tests\n\ttestUsesParameters: (test_type_in) => {\n\t\tconst test_types = Test_Types_That_Use_Parameters.data.map(item => { return item.test_type;});\n\t\treturn test_types.includes(test_type_in);\n\t},\n\t// Flag to say if a test_type uses columns in configured_tests\n\ttestUsesColumn: (test_type_in) => {\n\t\tconst test_types = Test_Types_That_Use_Column.data.map(item => { return item.test_type;});\n\t\treturn test_types.includes(test_type_in);\n\t},\n\t\n}","variables":[]},"id":"Tests_JSFunctions","deleted":false,"gitSyncId":"62928debc18cc05f7bf4919d_629914458a009422ab1df061"}],"editModeTheme":{"name":"Classic","displayName":"Classic","isSystemTheme":true,"deleted":false},"publishedTheme":{"name":"Classic","displayName":"Classic","isSystemTheme":true,"deleted":false}} \ No newline at end of file diff --git a/dot/self_tests/data/expected/extract_df_from_dbt_test_results_json.csv b/dot/self_tests/data/expected/extract_df_from_dbt_test_results_json.csv index adf252f..d3f1719 100644 --- a/dot/self_tests/data/expected/extract_df_from_dbt_test_results_json.csv +++ b/dot/self_tests/data/expected/extract_df_from_dbt_test_results_json.csv @@ -1,10 +1,10 @@ ,run_id,test_id,entity_id,test_type,column_name,id_column_name,test_parameters,test_status,test_status_message,failed_tests_view,failed_tests_view_sql -test.dbt_model_1.not_negative_string_column_dot_model__fpview_registration_value__value.e15d766b3b,4541476c-814e-43fe-ab38-786f36beecbc,54196c00-98cf-3b57-a5e0-155c726552da,95bd0f60-ab59-48fc-a62e-f256f5f3e6de,not_negative_string_column,value,,{'name': 'value'},fail,"got 1 result, configured to fail if != 0",tr_dot_model__fpview_registration_value," SELECT array_agg(dot_model__fpview_registration.uuid) AS uuid_list +test.dbt_model_1.not_negative_string_column_dot_model__fpview_registration_value__value.e15d766b3b,4541476c-814e-43fe-ab38-786f36beecbc,85106e71-378d-3f8e-a9d6-2f056becf09b,b22a0dd5-f26a-3f7a-a413-867b4c5b1882,not_negative_string_column,value,,{'name': 'value'},fail,"got 1 result, configured to fail if != 0",tr_dot_model__fpview_registration_value," SELECT array_agg(dot_model__fpview_registration.uuid) AS uuid_list FROM self_tests_public_tests.dot_model__fpview_registration WHERE dot_model__fpview_registration.value::character varying::text ~~ '-%'::text HAVING count(*) > 0;" -test.dbt_model_1.not_null_dot_model__ancview_pregnancy_patient_id.af4157ba8c,4541476c-814e-43fe-ab38-786f36beecbc,8957b754-5db0-35e6-b648-98c932b70ea1,66f5d13a-8f74-4f97-836b-334d97932781,not_null,patient_id,,{},fail,"got 1 result, configured to fail if != 0",tr_dot_model__ancview_pregnancy_not_null_patient_id," SELECT dot_model__ancview_pregnancy.patient_id, +test.dbt_model_1.not_null_dot_model__ancview_pregnancy_patient_id.af4157ba8c,4541476c-814e-43fe-ab38-786f36beecbc,97f6844e-ec43-3a55-b8ba-0a5c27671ff6,3ed4d6ed-74b1-32cb-b74f-b51ebaa13294,not_null,patient_id,,{},fail,"got 1 result, configured to fail if != 0",tr_dot_model__ancview_pregnancy_not_null_patient_id," SELECT dot_model__ancview_pregnancy.patient_id, dot_model__ancview_pregnancy.value FROM self_tests_public_tests.dot_model__ancview_pregnancy WHERE dot_model__ancview_pregnancy.patient_id IS NULL;" -test.dbt_model_1.not_null_dot_model__fpview_registration_uuid.d2f7403403,4541476c-814e-43fe-ab38-786f36beecbc,8f15a2d1-3c4b-3a07-9143-e1e8c62a99c0,95bd0f60-ab59-48fc-a62e-f256f5f3e6de,not_null,uuid,,{},pass,,, +test.dbt_model_1.not_null_dot_model__fpview_registration_uuid.d2f7403403,4541476c-814e-43fe-ab38-786f36beecbc,38df794b-8f95-3404-8a83-e777a085a53b,b22a0dd5-f26a-3f7a-a413-867b4c5b1882,not_null,uuid,,{},pass,,, \ No newline at end of file diff --git a/dot/self_tests/data/queries/configured_tests_dbt_core.sql b/dot/self_tests/data/queries/configured_tests_dbt_core.sql index 9fdeb18..7e47ae2 100644 --- a/dot/self_tests/data/queries/configured_tests_dbt_core.sql +++ b/dot/self_tests/data/queries/configured_tests_dbt_core.sql @@ -2,14 +2,11 @@ INSERT INTO self_tests_dot.scenarios VALUES('MISSING-1', 'Missing fields', 'Data entry error', 'Form data entry error', 'Null fields', 'Blank fields'); INSERT INTO self_tests_dot.scenarios VALUES('INCONSISTENT-1', 'Inconsistent data', 'Data entry error', 'Form data entry error', 'Outliers', 'Jaundice alert=No when fever+jaundice; Incorrect LMP, wrong visit dates'); -INSERT INTO self_tests_dot.test_types VALUES('not_negative_string_column', 'dbt', 'Test to confirm all positive', 'column', 'name: patient_age_in_years'); -INSERT INTO self_tests_dot.test_types VALUES('not_null', 'dbt', 'Test to confirm if null', 'column', ''); - -INSERT INTO self_tests_dot.scenario_test_types VALUES('MISSING-1', 'not_null'); -INSERT INTO self_tests_dot.scenario_test_types VALUES('INCONSISTENT-1', 'not_negative_string_column'); +INSERT INTO self_tests_dot.test_types VALUES('not_negative_string_column', 'dbt', 'Test to confirm all positive', 'column', false, true); +INSERT INTO self_tests_dot.test_types VALUES('not_null', 'dbt', 'Test to confirm if null', 'column', false, true); -- non static data -entities and tests + -INSERT INTO self_tests_dot.projects SELECT 'Muso', 'Muso project', '2021-12-07 00:00:00+00', 'true', 'public'; +INSERT INTO self_tests_dot.projects SELECT 'Muso', 'Muso project', true, 'public', null, '2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'; INSERT INTO self_tests_dot.entity_categories VALUES('anc', 'antenatal care'); INSERT INTO self_tests_dot.entity_categories VALUES('fp', 'Family planning'); @@ -18,7 +15,7 @@ INSERT INTO self_tests_dot.entity_categories VALUES('fp', 'Family planning'); INSERT INTO self_tests_dot.configured_entities VALUES('66f5d13a-8f74-4f97-836b-334d97932781', 'ancview_pregnancy', 'anc', '{{ config(materialized=''view'') }} {% set schema = %} select * from -(values (''patient-id1'', ''1''), (NULL, ''2'')) x(patient_id, value)'); +(values (''patient-id1'', ''1''), (NULL, ''2'')) x(patient_id, value)','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); CREATE SCHEMA IF NOT EXISTS self_tests_public; CREATE TABLE self_tests_public.ancview_pregnancy ( @@ -28,13 +25,13 @@ CREATE TABLE self_tests_public.ancview_pregnancy ( INSERT INTO self_tests_public.ancview_pregnancy SELECT * FROM (values ('patient-id1', '1'), (NULL, '2')) x(patient_id, value); -INSERT INTO self_tests_dot.configured_tests VALUES(TRUE, 'Muso', '549c0575-e64c-3605-85a9-70356a23c4d2', 'MISSING-1', 3, 'Patient ID is not null', '', '', '66f5d13a-8f74-4f97-836b-334d97932781', 'not_null', 'patient_id', '', NULL, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Example'); +INSERT INTO self_tests_dot.configured_tests VALUES(TRUE, 'Muso', '549c0575-e64c-3605-85a9-70356a23c4d2', 'MISSING-1', 3, 'Patient ID is not null', '', '', '3ed4d6ed-74b1-32cb-b74f-b51ebaa13294', 'not_null', 'patient_id', '', NULL, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Example'); INSERT INTO self_tests_dot.configured_entities VALUES('95bd0f60-ab59-48fc-a62e-f256f5f3e6de', 'fpview_registration', 'fp', '{{ config(materialized=''view'') }} {% set schema = %} select * from -(values (''patient-id1'', ''1''), (''patient_id2'', ''2''), (''patient_id3'', ''-3'')) x(uuid, value)'); +(values (''patient-id1'', ''1''), (''patient_id2'', ''2''), (''patient_id3'', ''-3'')) x(uuid, value)','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); CREATE TABLE self_tests_public.fpview_registration ( uuid VARCHAR(300), @@ -43,8 +40,8 @@ CREATE TABLE self_tests_public.fpview_registration ( INSERT INTO self_tests_public.fpview_registration SELECT * FROM (values ('patient-id1', '1'), ('patient_id2', '2'), ('patient_id3', '-3')) x(uuid, value); -INSERT INTO self_tests_dot.configured_tests VALUES(TRUE, 'Muso', '549c0575-e64c-3605-85a9-70356a23c4d2', 'MISSING-1', 3, 'UUID is not null', '', '', '95bd0f60-ab59-48fc-a62e-f256f5f3e6de', 'not_null', 'uuid', '', NULL, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Example'); -INSERT INTO self_tests_dot.configured_tests VALUES(TRUE, 'Muso', '8aca2bee-9e95-3f8a-90e9-153714e05367', 'INCONSISTENT-1', 5, 'value not negative', '', '', '95bd0f60-ab59-48fc-a62e-f256f5f3e6de', 'not_negative_string_column', 'value', '', $${"name": "value"}$$, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Example'); +INSERT INTO self_tests_dot.configured_tests VALUES(TRUE, 'Muso', '549c0575-e64c-3605-85a9-70356a23c4d2', 'MISSING-1', 3, 'UUID is not null', '', '', 'b22a0dd5-f26a-3f7a-a413-867b4c5b1882', 'not_null', 'uuid', '', NULL, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Example'); +INSERT INTO self_tests_dot.configured_tests VALUES(TRUE, 'Muso', '8aca2bee-9e95-3f8a-90e9-153714e05367', 'INCONSISTENT-1', 5, 'value not negative', '', '', 'b22a0dd5-f26a-3f7a-a413-867b4c5b1882', 'not_negative_string_column', 'value', '', $${"name": "value"}$$, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Example'); -- these are generated by the dbt stages; TODO split the file in 2 for some tests CREATE OR REPLACE VIEW self_tests_public_tests.dot_model__ancview_pregnancy diff --git a/dot/self_tests/data/queries/configured_tests_sample-improved.sql b/dot/self_tests/data/queries/configured_tests_sample-improved.sql index 14ca232..5864b27 100644 --- a/dot/self_tests/data/queries/configured_tests_sample-improved.sql +++ b/dot/self_tests/data/queries/configured_tests_sample-improved.sql @@ -2,18 +2,19 @@ INSERT INTO self_tests_dot.scenarios VALUES('DUPLICATE-1', 'Duplicate data', 'Data entry error', 'Duplicate data entered', 'Duplicate records', 'Multiple person records for the same person'); INSERT INTO self_tests_dot.scenarios VALUES('TREAT-1', 'Incorrect treatment', 'Process errors', 'Incorrect treatment', 'Outliers', 'Drug protocol not followed for Malaria treatment; FP for people on tubal ligation, pregnant or had vasectomy'); -INSERT INTO self_tests_dot.test_types VALUES('possible_duplicate_forms', 'dbt', 'Test to confirm duplicate records', 'single_table', 'table_specific_reported_date: reported| table_specific_patient_uuid: patient_id| table_specific_uuid: uuid'); -INSERT INTO self_tests_dot.test_types VALUES('custom_sql', 'dbt', 'Custom SQL, if rows returned test failed', 'any', '""select 1""'); +INSERT INTO self_tests_dot.test_types VALUES('possible_duplicate_forms', 'dbt', 'Test to confirm duplicate records', 'single_table', true, false); +INSERT INTO self_tests_dot.test_types VALUES('custom_sql', 'dbt', 'Custom SQL, if rows returned test failed', 'any', true, false); -INSERT INTO self_tests_dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_reported_date', 'function_argument', 'Column which indicates when form created'); -INSERT INTO self_tests_dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_patient_uuid', 'function_argument', 'Column which holds to patient uuid'); -INSERT INTO self_tests_dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_uuid', 'function_argument', 'UUID for records in the table (form) being checked'); +INSERT INTO self_tests_dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_reported_date', 'entity date field', 'reported', 'Column which indicates when form created'); +INSERT INTO self_tests_dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_patient_uuid', 'entity id field', 'patient_id', 'Column which holds to patient uuid'); +INSERT INTO self_tests_dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_uuid', 'entity id field', 'uuid', 'UUID for records in the table (form) being checked'); +INSERT INTO self_tests_dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_period', 'one of (hour, day, week)', 'day','Specified period to check for duplicates (hour, day, week)'); INSERT INTO self_tests_dot.scenario_test_types VALUES('DUPLICATE-1', 'possible_duplicate_forms'); INSERT INTO self_tests_dot.scenario_test_types VALUES('TREAT-1', 'custom_sql'); -- non static data -entities and tests + -INSERT INTO self_tests_dot.projects SELECT 'Muso', 'Muso project', '2021-12-07 00:00:00+00', 'true', 'public'; +INSERT INTO self_tests_dot.projects SELECT 'Muso', 'Muso project', true, 'public', null, '2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'; INSERT INTO self_tests_dot.entity_categories VALUES('anc', 'antenatal care'); INSERT INTO self_tests_dot.entity_categories VALUES('fp', 'Family planning'); @@ -23,7 +24,7 @@ INSERT INTO self_tests_dot.configured_entities VALUES('66f5d13a-8f74-4f97-836b-3 {% set schema = %} select * -from {{ schema }}.ancview_delivery'); +from {{ schema }}.ancview_delivery','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); -- same as above, this configured test cannot be run -- INSERT INTO self_tests_dot.configured_tests @@ -31,13 +32,13 @@ from {{ schema }}.ancview_delivery'); -- VALUES(TRUE, 'Muso', '7f78de0e-8268-3da6-8845-9a445457cc9a', 'DUPLICATE-1', 3, '', '', '', '66f5d13a-8f74-4f97-836b-334d97932781', 'possible_duplicate_forms', '', '', 'id_column', 'table_specific_reported_date: delivery_date| table_specific_patient_uuid: patient_id| table_specific_uuid: uuid| table_specific_period: day', '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Lorenzo'); INSERT INTO self_tests_dot.configured_tests (test_activated, project_id, test_id, scenario_id, priority, description, impact, proposed_remediation, entity_id, test_type, column_name, column_description, id_column_name, test_parameters, date_added, date_modified, last_updated_by) -VALUES(TRUE, 'Muso', '7f78de0e-8268-3da6-8845-9a445457cc9a', 'DUPLICATE-1', 3, '', '', '', '66f5d13a-8f74-4f97-836b-334d97932781', 'possible_duplicate_forms', '', '', 'id_column', +VALUES(TRUE, 'Muso', '7f78de0e-8268-3da6-8845-9a445457cc9a', 'DUPLICATE-1', 3, '', '', '', 'adc007dd-2407-3dc2-95a7-002067e741f9', 'possible_duplicate_forms', '', '', 'id_column', $${"table_specific_reported_date": "delivery_date", "table_specific_patient_uuid": "patient_id", "table_specific_uuid": "uuid", "table_specific_period": "day"}$$ , '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Lorenzo'); INSERT INTO self_tests_dot.configured_entities VALUES('95bd0f60-ab59-48fc-a62e-f256f5f3e6de', 'fpview_registration', 'fp', 'select * from (values (''patient-id1'', ''1''), (''patient_id2'', ''2''), (''patient_id3'', ''3'')) x(patient_id, value) -'); +','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); -- NFP-1 -- INSERT INTO self_tests_dot.configured_tests @@ -51,6 +52,6 @@ INSERT INTO self_tests_dot.configured_entities VALUES('95bd0f60-ab59-48fc-a62e-f -- LIMIT 2', '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Leah'); INSERT INTO self_tests_dot.configured_tests (test_activated, project_id, test_id, scenario_id, priority, description, impact, proposed_remediation, entity_id, test_type, column_name, column_description, id_column_name, test_parameters, date_added, date_modified, last_updated_by) -VALUES(TRUE, 'Muso', 'c4a3da8f-32f4-4e9b-b135-354de203ca70', 'TREAT-1', 5, 'Test for new family planning method (NFP-1)', '', '', '95bd0f60-ab59-48fc-a62e-f256f5f3e6de', 'custom_sql', '', '', 'patient_id', +VALUES(TRUE, 'Muso', 'c4a3da8f-32f4-4e9b-b135-354de203ca70', 'TREAT-1', 5, 'Test for new family planning method (NFP-1)', '', '', '52aa8e99-5221-3aac-bca5-b52b80b90929', 'custom_sql', '', '', 'patient_id', $${"query": "SELECT patient_id as primary_table_id_field, 'dot_model__fpview_registration' as primary_table, value FROM {{ ref('dot_model__fpview_registration') }} a LIMIT 2"}$$ , '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Leah'); diff --git a/dot/self_tests/data/queries/configured_tests_sample.sql b/dot/self_tests/data/queries/configured_tests_sample.sql index 51bba75..a1b14aa 100644 --- a/dot/self_tests/data/queries/configured_tests_sample.sql +++ b/dot/self_tests/data/queries/configured_tests_sample.sql @@ -2,18 +2,19 @@ INSERT INTO self_tests_dot.scenarios VALUES('DUPLICATE-1', 'Duplicate data', 'Data entry error', 'Duplicate data entered', 'Duplicate records', 'Multiple person records for the same person'); INSERT INTO self_tests_dot.scenarios VALUES('TREAT-1', 'Incorrect treatment', 'Process errors', 'Incorrect treatment', 'Outliers', 'Drug protocol not followed for Malaria treatment; FP for people on tubal ligation, pregnant or had vasectomy'); -INSERT INTO self_tests_dot.test_types VALUES('possible_duplicate_forms', 'dbt', 'Test to confirm duplicate records', 'single_table', 'table_specific_reported_date: reported| table_specific_patient_uuid: patient_id| table_specific_uuid: uuid'); -INSERT INTO self_tests_dot.test_types VALUES('custom_sql', 'dbt', 'Custom SQL, if rows returned test failed', 'any', '""select 1""'); +INSERT INTO self_tests_dot.test_types VALUES('possible_duplicate_forms', 'dbt', 'Test to confirm duplicate records', 'single_table', true, false); +INSERT INTO self_tests_dot.test_types VALUES('custom_sql', 'dbt', 'Custom SQL, if rows returned test failed', 'any', true, false); -INSERT INTO self_tests_dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_reported_date', 'function_argument', 'Column which indicates when form created'); -INSERT INTO self_tests_dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_patient_uuid', 'function_argument', 'Column which holds to patient uuid'); -INSERT INTO self_tests_dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_uuid', 'function_argument', 'UUID for records in the table (form) being checked'); +INSERT INTO self_tests_dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_reported_date', 'entity date field', 'reported', 'Column which indicates when form created'); +INSERT INTO self_tests_dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_patient_uuid', 'entity id field', 'patient_id', 'Column which holds to patient uuid'); +INSERT INTO self_tests_dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_uuid', 'entity id field', 'uuid', 'UUID for records in the table (form) being checked'); +INSERT INTO self_tests_dot.test_parameters_interface VALUES('possible_duplicate_forms', 'table_specific_period', 'one of (hour, day, week)', 'day','Specified period to check for duplicates (hour, day, week)'); INSERT INTO self_tests_dot.scenario_test_types VALUES('DUPLICATE-1', 'possible_duplicate_forms'); INSERT INTO self_tests_dot.scenario_test_types VALUES('TREAT-1', 'custom_sql'); -- non static data -entities and tests + -INSERT INTO self_tests_dot.projects SELECT 'Muso', 'Muso project', '2021-12-07 00:00:00+00', 'true', 'public'; +INSERT INTO self_tests_dot.projects SELECT 'Muso', 'Muso project', true, 'public', null, '2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'; INSERT INTO self_tests_dot.entity_categories VALUES('anc', 'antenatal care'); INSERT INTO self_tests_dot.entity_categories VALUES('fp', 'Family planning'); @@ -23,17 +24,16 @@ INSERT INTO self_tests_dot.configured_entities VALUES('66f5d13a-8f74-4f97-836b-3 {% set schema = %} select * -from {{ schema }}.ancview_delivery'); +from {{ schema }}.ancview_delivery','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); -- same as above, this configured test cannot be run --- INSERT INTO self_tests_dot.configured_tests VALUES(TRUE, 'Muso', '7f78de0e-8268-3da6-8845-9a445457cc9a', 'DUPLICATE-1', 3, '', '', '', '66f5d13a-8f74-4f97-836b-334d97932781', 'possible_duplicate_forms', '', '', 'table_specific_reported_date: delivery_date| table_specific_patient_uuid: patient_id| table_specific_uuid: uuid| table_specific_period: day', '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Lorenzo'); -INSERT INTO self_tests_dot.configured_tests VALUES(TRUE, 'Muso', '7f78de0e-8268-3da6-8845-9a445457cc9a', 'DUPLICATE-1', 3, '', '', '', '66f5d13a-8f74-4f97-836b-334d97932781', 'possible_duplicate_forms', '', '', +INSERT INTO self_tests_dot.configured_tests VALUES(TRUE, 'Muso', '7f78de0e-8268-3da6-8845-9a445457cc9a', 'DUPLICATE-1', 3, '', '', '', 'adc007dd-2407-3dc2-95a7-002067e741f9', 'possible_duplicate_forms', '', '', $${"table_specific_uuid": "uuid", "table_specific_period": "day", "table_specific_patient_uuid": "patient_id", "table_specific_reported_date": "delivery_date"}$$ , '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Lorenzo'); INSERT INTO self_tests_dot.configured_entities VALUES('95bd0f60-ab59-48fc-a62e-f256f5f3e6de', 'fpview_registration', 'fp', 'select * from (values (''patient-id1'', ''1''), (''patient_id2'', ''2''), (''patient_id3'', ''3'')) x(patient_id, value) -'); +','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); -- NFP-1 --INSERT INTO self_tests_dot.configured_tests VALUES(TRUE, 'Muso', 'c4a3da8f-32f4-4e9b-b135-354de203ca70', 'TREAT-1', 5, 'Test for new family planning method (NFP-1)', '', '', '95bd0f60-ab59-48fc-a62e-f256f5f3e6de', 'custom_sql', '', '', ' @@ -45,5 +45,5 @@ INSERT INTO self_tests_dot.configured_entities VALUES('95bd0f60-ab59-48fc-a62e-f -- LIMIT 2', '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Leah'); -- INSERT INTO self_tests_dot.configured_tests VALUES(TRUE, 'Muso', 'c4a3da8f-32f4-4e9b-b135-354de203ca70', 'TREAT-1', 5, 'Test for new family planning method (NFP-1)', '', '', '95bd0f60-ab59-48fc-a62e-f256f5f3e6de', 'custom_sql', '', '', $${"query": "SELECT patient_id as primary_table_id_field, 'dot_model__fpview_registration' as primary_table, value FROM {{ ref('dot_model__fpview_registration') }} a LIMIT 2"}$$, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Leah'); -INSERT INTO self_tests_dot.configured_tests VALUES(TRUE, 'Muso', 'c4a3da8f-32f4-4e9b-b135-354de203ca70', 'TREAT-1', 5, 'Test for new family planning method (NFP-1)', '', '', '95bd0f60-ab59-48fc-a62e-f256f5f3e6de', 'custom_sql', '', '', +INSERT INTO self_tests_dot.configured_tests VALUES(TRUE, 'Muso', 'c4a3da8f-32f4-4e9b-b135-354de203ca70', 'TREAT-1', 5, 'Test for new family planning method (NFP-1)', '', '', '52aa8e99-5221-3aac-bca5-b52b80b90929', 'custom_sql', '', '', $${"query": "SELECT patient_id as primary_table_id_field, 'dot_model__fpview_registration' as primary_table, value FROM {{ ref('dot_model__fpview_registration') }} a LIMIT 2"}$$, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'Leah'); \ No newline at end of file diff --git a/dot/self_tests/data/queries/core_entities_creation.sql b/dot/self_tests/data/queries/core_entities_creation.sql index cd44706..e2d96a9 100644 --- a/dot/self_tests/data/queries/core_entities_creation.sql +++ b/dot/self_tests/data/queries/core_entities_creation.sql @@ -4,6 +4,6 @@ INSERT INTO self_tests_dot.configured_entities VALUES('b05f1f9c-2176-46b0-8e8f-d {% set schema = %} select * -from {{ schema }}.ancview_danger_sign'); +from {{ schema }}.ancview_danger_sign','2021-12-07 00:00:00+00','2021-12-07 00:00:00+00','Matt'); diff --git a/dot/self_tests/unit/test_dbt.py b/dot/self_tests/unit/test_dbt.py index 9f8b5ef..6a2a1c0 100644 --- a/dot/self_tests/unit/test_dbt.py +++ b/dot/self_tests/unit/test_dbt.py @@ -42,6 +42,10 @@ def test_extract_df_from_dbt_test_results_json( logger=setup_custom_logger("self_tests/output/test.log", logging.INFO), target_path="self_tests/data/dot_output_files/dbt/target", ) + + output.to_csv('self_tests/data/op.csv') + + expected = pd.read_csv( "self_tests/data/expected/extract_df_from_dbt_test_results_json.csv", index_col=0, diff --git a/dot/self_tests/unit/test_utils.py b/dot/self_tests/unit/test_utils.py index efc7c38..4edc6ec 100644 --- a/dot/self_tests/unit/test_utils.py +++ b/dot/self_tests/unit/test_utils.py @@ -48,8 +48,8 @@ def get_test_summary() -> Tuple[pd.DataFrame, uuid.UUID]: run_id = uuid.UUID("4541476c-814e-43fe-ab38-786f36beecbc") test_summary_row = { "run_id": run_id, - "test_id": "ef6bb39d-7a89-3972-b5b6-719d4435e7f9", - "entity_id": "95bd0f60-ab59-48fc-a62e-f256f5f3e6de", + "test_id": "8317ea22-70d1-32d2-b061-e25e0aac9f8e", + "entity_id": "52aa8e99-5221-3aac-bca5-b52b80b90929", "test_type": "custom_sql", "column_name": "", # "id_column_name": "patient_id", @@ -72,7 +72,7 @@ def test_get_test_id( generated_test_id = get_test_id( test_type="possible_duplicate_forms", - entity_id="66f5d13a-8f74-4f97-836b-334d97932781", + entity_id="adc007dd-2407-3dc2-95a7-002067e741f9", column="", project_id="Muso", test_parameters='''$$ @@ -84,7 +84,7 @@ def test_get_test_id( }$$ '''.replace('\n','') ) - expected_test_id = "0a055ffd-c753-3c27-9de9-a4665352513f" + expected_test_id = "5501f109-a017-3594-96ea-eb8438187509" self.assertEqual( expected_test_id, generated_test_id, @@ -107,7 +107,7 @@ def test_possible_duplicate_forms_test_malformed( "'7f78de0e-8268-3da6-8845-9a445457cc9a'," "'DUPLICATE-1'," "3, '', '', '', " - "'66f5d13a-8f74-4f97-836b-334d97932781'," + "'adc007dd-2407-3dc2-95a7-002067e741f9'," "'possible_duplicate_forms', '', ''," '''$${ 'table_specific_uuid': 'uuid', @@ -135,7 +135,7 @@ def test_custom_sql_test_malformed( INSERT INTO self_tests_dot.configured_tests VALUES(TRUE, 'Muso', 'c4a3da8f-32f4-4e9b-b135-354de203ca70', 'TREAT-1', 5, 'Test for new family planning method (NFP-1)', - '', '', '95bd0f60-ab59-48fc-a62e-f256f5f3e6de', 'custom_sql', + '', '', '52aa8e99-5221-3aac-bca5-b52b80b90929', 'custom_sql', '', '', $${"query":"SELECT patient_id as primary_table_id_field, value @@ -158,7 +158,7 @@ def test_get_configured_tests_row_reference_error( with self.assertRaises(ReferenceError): _ = get_configured_tests_row( test_type="possible_duplicate_forms", - entity_id="66f5d13a-8f74-4f97-836b-334d97932781", + entity_id="adc007dd-2407-3dc2-95a7-002067e741f9", column="", project_id="Muso", test_parameters=''' @@ -180,13 +180,13 @@ def test_get_configured_tests_row( configured_tests_row = get_configured_tests_row( test_type="possible_duplicate_forms", - entity_id="66f5d13a-8f74-4f97-836b-334d97932781", + entity_id="adc007dd-2407-3dc2-95a7-002067e741f9", column="", project_id="Muso", test_parameters="{'table_specific_uuid': 'uuid', 'table_specific_period': 'day', 'table_specific_patient_uuid': 'patient_id', 'table_specific_reported_date': 'delivery_date'}", ) - expected_test_id = "0a055ffd-c753-3c27-9de9-a4665352513f" + expected_test_id = "5501f109-a017-3594-96ea-eb8438187509" self.assertEqual( expected_test_id, configured_tests_row["test_id"], @@ -202,7 +202,7 @@ def test_get_configured_tests_row( "description": "", "impact": "", "proposed_remediation": "", - "entity_id": "66f5d13a-8f74-4f97-836b-334d97932781", + "entity_id": "adc007dd-2407-3dc2-95a7-002067e741f9", "test_type": "possible_duplicate_forms", "column_name": "", "column_description": "", @@ -224,7 +224,7 @@ def test_get_entity_id_from_name( mock_get_filename_safely.side_effect = self.mock_get_filename_safely self.assertEqual( - "66f5d13a-8f74-4f97-836b-334d97932781", + "adc007dd-2407-3dc2-95a7-002067e741f9", get_entity_id_from_name("Muso", "dot_model__ancview_delivery"), ) @@ -237,7 +237,7 @@ def test_get_entity_name_from_id( self.assertEqual( "dot_model__ancview_delivery", - get_entity_name_from_id("Muso", "66f5d13a-8f74-4f97-836b-334d97932781"), + get_entity_name_from_id("Muso", "adc007dd-2407-3dc2-95a7-002067e741f9"), ) @patch("utils.configuration_utils._get_filename_safely") diff --git a/dot/self_tests/unit/test_utils_schema_improved.py b/dot/self_tests/unit/test_utils_schema_improved.py index 8490c8b..86a60a9 100644 --- a/dot/self_tests/unit/test_utils_schema_improved.py +++ b/dot/self_tests/unit/test_utils_schema_improved.py @@ -49,12 +49,12 @@ def test_get_configured_tests_row( configured_tests_row = get_configured_tests_row( test_type="possible_duplicate_forms", - entity_id="66f5d13a-8f74-4f97-836b-334d97932781", + entity_id="adc007dd-2407-3dc2-95a7-002067e741f9", column="", project_id="Muso", test_parameters="{'table_specific_uuid': 'uuid', 'table_specific_period': 'day', 'table_specific_patient_uuid': 'patient_id', 'table_specific_reported_date': 'delivery_date'}" ) - expected_test_id = "0a055ffd-c753-3c27-9de9-a4665352513f" + expected_test_id = "5501f109-a017-3594-96ea-eb8438187509" self.assertEqual( expected_test_id, configured_tests_row["test_id"], @@ -70,7 +70,7 @@ def test_get_configured_tests_row( "description": "", "impact": "", "proposed_remediation": "", - "entity_id": "66f5d13a-8f74-4f97-836b-334d97932781", + "entity_id": "adc007dd-2407-3dc2-95a7-002067e741f9", "test_type": "possible_duplicate_forms", "column_name": "", "column_description": "", @@ -151,7 +151,7 @@ def test_get_test_rows( test_summary_row = { "run_id": run_id, "test_id": "ef6bb39d-7a89-3972-b5b6-719d4435e7f9", - "entity_id": "95bd0f60-ab59-48fc-a62e-f256f5f3e6de", + "entity_id": "52aa8e99-5221-3aac-bca5-b52b80b90929", "test_type": "custom_sql", "column_name": "", "id_column_name": "patient_id",