diff --git a/README.md b/README.md index 592601e..c3a3137 100644 --- a/README.md +++ b/README.md @@ -377,7 +377,7 @@ generated one. ``` 'INSERT INTO dot.configured_tests VALUES(TRUE, 'ScanProject1', '0cdc9702-91e0-3499-b6f0-4dec12ad0f08', 'ASSESS-1', 3, '', '', '', 'ancview_pregnancy', 'relationships', 'uuid', '', - $${"name": "danger_signs_with_no_pregnancy", "to": "ref('dot_model__ancview_danger_sign')", "field": "pregnancy_uuid"}$$, + $${"name": "danger_signs_with_no_pregnancy", "to": "ancview_danger_sign", "field": "pregnancy_uuid"}$$, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'your-name'); ``` 2. `unique` @@ -413,7 +413,7 @@ generated one. ``` INSERT INTO dot.configured_tests VALUES(TRUE, 'ScanProject1', '7f78de0e-8268-3da6-8845-9a445457cc9a', 'DUPLICATE-1', 3, '', '', '', 'ancview_pregnancy', 'possible_duplicate_forms', '', '', - $${"table_specific_reported_date": "delivery_date", "table_specific_patient_uuid": "patient_id", "table_specific_uuid": "uuid"}$$, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'your-name'); + $${"date_column": "delivery_date", "group_column": "patient_id", "id_column": "uuid"}$$, '2021-12-23 19:00:00.000 -0500', '2021-12-23 19:00:00.000 -0500', 'your-name'); ``` 7. `associated_columns_not_null`

@@ -429,7 +429,7 @@ generated one. INSERT INTO dot.configured_tests VALUES(TRUE, 'ScanProject1', '0cdc9702-91e0-3499-b6f0-4dec12ad0f08', 'BIAS-1', 3, 'Test for miscalibrated thermometer', '', '', 'ancview_pregnancy', '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', + "data_table": "iccmview_assessment","id_column": "reported_by"}', '2022-01-19 20:00:00.000 -0500', '2022-01-19 20:00:00.000 -0500', 'your-name'); ``` 9. `expression_is_true` diff --git a/db/dot/2-upload_static_data.sql b/db/dot/2-upload_static_data.sql index 27f673d..ebdef10 100644 --- a/db/dot/2-upload_static_data.sql +++ b/db/dot/2-upload_static_data.sql @@ -39,21 +39,21 @@ INSERT INTO dot.test_types VALUES('expression_is_true', 'dbt', 'Test to confirm -- 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', 'view/table', $$ref('dot_model__ancview_pregnancy')$$, 'Referenced field to be checked if missing'); +INSERT INTO dot.test_parameters_interface VALUES('relationships', 'to', 'view/table', 'ancview_pregnancy', 'Referenced entity 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('possible_duplicate_forms', 'date_column', 'entity date field', 'reported', 'Column which indicates when the record was created or reported'); +INSERT INTO dot.test_parameters_interface VALUES('possible_duplicate_forms', 'group_column', 'entity id field', 'patient_id', 'Column used to group records when checking for duplicates'); +INSERT INTO dot.test_parameters_interface VALUES('possible_duplicate_forms', 'id_column', 'entity id field', 'uuid', 'Primary id for records in the table being checked'); +INSERT INTO dot.test_parameters_interface VALUES('possible_duplicate_forms', '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 field1, field2, 'table1' as \"primary_table\", 'field1' as \"primary_table_id_field\" 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 grouping field 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', 'data_table', 'view/table', 'dot_model__iccmview_assessment', 'The name of entity view where data is'); +INSERT INTO dot.test_parameters_interface VALUES('expect_similar_means_across_reporters', 'data_table', 'view/table', '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 id field', 'reported_by', 'The id column to use to get failed test records'); -- dot.scenario_test_types diff --git a/db/dot/4-upload_sample_dot_data.sql b/db/dot/4-upload_sample_dot_data.sql index 97b8f8c..9a169c9 100644 --- a/db/dot/4-upload_sample_dot_data.sql +++ b/db/dot/4-upload_sample_dot_data.sql @@ -61,8 +61,7 @@ INSERT INTO dot.configured_tests VALUES(TRUE, 'ScanProject1', '0cdc9702-91e0-349 INSERT INTO dot.configured_tests VALUES(TRUE, 'ScanProject1', '36d33837-bd92-370a-963a-264a4d5b2bac', 'DUPLICATE-1', 6, 'Duplicate flight record', '', '', 'all_flight_data', 'possible_duplicate_forms', '', '', -$${"table_specific_reported_date": "departure_time", "table_specific_patient_uuid": "airline", "table_specific_uuid": -"uuid", "table_specific_period": "day"}$$, '2021-12-23 19:00:00.000 -0500', '2022-03-21 19:00:00.000 -0500', 'Matt'); +$${"date_column": "departure_time", "group_column": "airline", "id_column": "uuid", "period": "day"}$$, '2021-12-23 19:00:00.000 -0500', '2022-03-21 19:00:00.000 -0500', 'Matt'); INSERT INTO dot.configured_tests VALUES(TRUE, 'ScanProject1', 'c4a3da8f-32f4-4e9b-b135-354de203ca90', 'TREAT-1', 5, 'Number of stops has a reasonable value', '', '', 'all_flight_data', 'custom_sql', '', '', diff --git a/docker/appsmith/DOT App V2.json b/docker/appsmith/DOT App V2.json index 4970ea9..bab1c83 100644 --- a/docker/appsmith/DOT App V2.json +++ b/docker/appsmith/DOT App V2.json @@ -1 +1,38498 @@ -{"clientSchemaVersion":1.0,"serverSchemaVersion":6.0,"exportedApplication":{"name":"Data Observation Toolkit","isPublic":false,"pages":[{"id":"Run log","isDefault":true},{"id":"Run results","isDefault":false},{"id":"Failed tests","isDefault":false},{"id":"Projects","isDefault":false},{"id":"Entities","isDefault":false},{"id":"Categories","isDefault":false},{"id":"Tests","isDefault":false}],"publishedPages":[{"id":"Run log","isDefault":true},{"id":"Run results","isDefault":false},{"id":"Failed tests","isDefault":false},{"id":"Projects","isDefault":false},{"id":"Entities","isDefault":false},{"id":"Categories","isDefault":false},{"id":"Tests","isDefault":false}],"viewMode":false,"appIsExample":false,"unreadCommentThreads":0.0,"clonedFromApplicationId":"62bc52b4b293c75c978181fc","color":"#F1DEFF","icon":"pie-chart","slug":"data-observation-toolkit","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":"Failed tests","slug":"failed-tests","layouts":[{"viewMode":false,"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1174.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":880.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":64.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":890.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":[{"widgetName":"Text17Copy","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":15.265625,"dynamicTriggerPathList":[],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"},{"key":"text"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Run ID: {{appsmith.URL.queryParams.run_id}}; Test ID: {{appsmith.URL.queryParams.test_id}}","key":"cmvb93zwil","isDeprecated":false,"rightColumn":64.0,"textAlign":"RIGHT","widgetId":"0h26pt3z0q","isVisible":true,"fontStyle":"","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.575rem"},{"boxShadow":"none","widgetName":"Text16","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","leftColumn":2.0,"dynamicBindingPathList":[{"key":"fontFamily"}],"text":"Failed tests","labelTextSize":"0.875rem","rightColumn":10.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":11.0,"isSortable":true,"onPageChange":"{{SelectQuery.run()}}","type":"TABLE_WIDGET","animateLoading":true,"dynamicBindingPathList":[{"key":"tableData"},{"key":"accentColor"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"primaryColumns.status.computedValue"},{"key":"derivedColumns.customColumn1.boxShadow"},{"key":"primaryColumns.customColumn1.boxShadow"},{"key":"derivedColumns.customColumn1.borderRadius"},{"key":"primaryColumns.customColumn1.borderRadius"},{"key":"derivedColumns.customColumn1.buttonLabel"},{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"primaryColumns.test_type.computedValue"},{"key":"primaryColumns.entity_id.computedValue"},{"key":"primaryColumns.data_record.computedValue"},{"key":"primaryColumns.description.computedValue"},{"key":"primaryColumns.test_result_id.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":"test_result_id","columnSizeMap":{"task":245.0,"step":62.0,"status":75.0,"test_id":367.0,"test_result_id":318.0,"run_id":251.0,"data_record":818.0,"test_type":227.0,"description":314.0},"widgetName":"data_table","defaultPageSize":0.0,"columnOrder":["status","description","test_type","entity_id","data_record","test_result_id","customColumn1"],"dynamicPropertyPathList":[{"key":"primaryColumns.customColumn1.onClick"}],"displayName":"Table","bottomRow":87.0,"parentRowSpace":10.0,"defaultSelectedRow":"0","hideCard":false,"parentColumnSpace":16.3125,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"onSearchTextChanged"},{"key":"onSort"},{"key":"primaryColumns.customColumn1.onClick"}],"primaryColumns":{"status":{"index":4.0,"width":150.0,"id":"status","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"status","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.status))}}","cellBackground":""},"customColumn1":{"index":3.0,"width":150.0,"id":"customColumn1","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Data","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":"#3b82f6","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'View data'))}}","buttonVariant":"TERTIARY","onClick":"{{Failed_Test_data_record.run(); showModal('View_data')}}"},"test_type":{"index":3.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":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.test_type))}}","cellBackground":""},"entity_id":{"index":4.0,"width":150.0,"id":"entity_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_id","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_id))}}","cellBackground":""},"data_record":{"index":5.0,"width":150.0,"id":"data_record","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"data_record","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.data_record))}}","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":""},"test_result_id":{"index":5.0,"width":150.0,"id":"test_result_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_result_id","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.test_result_id))}}","cellBackground":""}},"key":"zba5qel0au","derivedColumns":{"customColumn1":{"index":3.0,"width":150.0,"id":"customColumn1","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Data","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":"#3b82f6","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'View data'))}}","buttonVariant":"TERTIARY","onClick":"{{navigateTo('Failed test data',{\"run_id\":data_table.selectedRow.Run_id, \"run_date\":data_table.selectedRow.Run_date, \"test_id\":data_table.selectedRow.Test_id, \"test_description\":data_table.selectedRow.Test, \"test_result_id\":data_table.selectedRow.test_result_id})}}"}},"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":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container2","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg","searchTags":["div","parent","group"],"topRow":0.0,"bottomRow":6.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas5Copy","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":[{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"}],"leftColumn":3.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":11.0,"iconName":"timeline-line-chart","menuVariant":"TERTIARY","widgetId":"542xlgbz2x","menuItems":{"menuItem1":{"label":"Run log","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Run log', {})}}"},"menuItem2":{"label":"Trends","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0}},"isVisible":true,"label":"Run monitoring","version":1.0,"parentId":"b3b5y0a4zl","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1Copy","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"},{"key":"menuItems.menuItem2.onClick"},{"key":"menuItems.menuItem5clg3sf596.onClick"},{"key":"menuItems.menuItemzhze0we924.onClick"}],"leftColumn":11.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":19.0,"iconName":"settings","menuVariant":"TERTIARY","widgetId":"ngw2hyj23a","menuItems":{"menuItem1":{"label":"Tests","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Tests', {})}}"},"menuItem2":{"label":"Entities","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0,"onClick":"{{navigateTo('Entities', {})}}"},"menuItem5clg3sf596":{"id":"menuItem5clg3sf596","index":2.0,"label":"Categories","widgetId":"xj72wvs7rg","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Categories', {})}}"},"menuItemzhze0we924":{"id":"menuItemzhze0we924","index":3.0,"label":"Projects","widgetId":"ail7gs5wwr","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Projects', {})}}"}},"isVisible":true,"label":"Configuration","version":1.0,"parentId":"b3b5y0a4zl","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"widgetName":"Text17","borderColor":"#fff","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"DOT","key":"14w22nnzm7","isDeprecated":false,"rightColumn":3.0,"backgroundColor":"#f79113","textAlign":"CENTER","widgetId":"1r0rbhpgj8","isVisible":true,"fontStyle":"BOLD","textColor":"#fff","version":1.0,"parentId":"b3b5y0a4zl","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.975rem"}],"key":"zdu4x20wju","isDeprecated":false,"rightColumn":471.0,"detachFromLayout":true,"widgetId":"b3b5y0a4zl","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"svr3lslf83","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"borderWidth":"0","key":"nymtbn27w8","backgroundColor":"#3730a3","isDeprecated":false,"rightColumn":64.0,"widgetId":"svr3lslf83","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"IconButton1Copy","onClick":"{{navigateTo('Run results', {\"run_id\": appsmith.URL.queryParams.run_id})}}","buttonColor":"#3b82f6","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634ac75f9fa6b6ae7a8df882a3ba.svg","searchTags":["click","submit"],"topRow":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"isDisabled":false,"key":"y0ebyprd68","isDeprecated":false,"rightColumn":2.0,"iconName":"chevron-left","widgetId":"lwa6u9k3ev","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"}]}],"borderWidth":"0","labelTextSize":"0.875rem","backgroundColor":"#fafafa","rightColumn":63.0,"widgetId":"mvubsemxfo","containerStyle":"card","isVisible":"true","version":1.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"View_data","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","searchTags":["dialog","popup","notification"],"topRow":23.0,"bottomRow":47.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":15.022216796875,"dynamicTriggerPathList":[],"leftColumn":16.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas5","displayName":"Canvas","topRow":0.0,"bottomRow":670.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":622.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"Text16CopyCopy","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":6.0,"bottomRow":10.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"text"}],"text":"{{appsmith.URL.queryParams.test_description}}","labelTextSize":"0.875rem","rightColumn":55.0,"textAlign":"LEFT","widgetId":"mpe3prm83t","isVisible":"true","fontStyle":"ITALIC","textColor":"#231F20","version":1.0,"parentId":"vr0dle664y","isLoading":false,"borderRadius":"0px","fontSize":"1.0rem"},{"boxShadow":"none","widgetName":"IconButton1","onClick":"{{closeModal('View_data')}}","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":"mfzdt9imkk","isDeprecated":false,"rightColumn":64.0,"iconName":"cross","widgetId":"z7rx6iz3l6","isVisible":true,"version":1.0,"parentId":"vr0dle664y","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"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":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Failed test source data","key":"hdngpw1wkf","isDeprecated":false,"rightColumn":52.0,"textAlign":"LEFT","widgetId":"hpudma1hqr","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"vr0dle664y","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button3","onClick":"{{closeModal('View_data')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","searchTags":["click","submit"],"topRow":61.0,"bottomRow":65.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":47.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"0pv6rud52s","isDeprecated":false,"rightColumn":63.0,"isDefaultClickDisabled":true,"widgetId":"0m833s10x7","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"vr0dle664y","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"widgetName":"Text19","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":14.0,"bottomRow":60.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":13.96875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"},{"key":"text"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"{{JSON.stringify(Failed_Test_data_record.data[0].get_test_result_data_record,null,1)}}","key":"hdngpw1wkf","isDeprecated":false,"rightColumn":63.0,"backgroundColor":"#fff","textAlign":"LEFT","widgetId":"xu1bz8v599","isVisible":true,"fontStyle":"","textColor":"#231F20","version":1.0,"parentId":"vr0dle664y","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1rem"},{"widgetName":"Text20","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":10.0,"bottomRow":14.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":13.96875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"},{"key":"text"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"{{data_table.selectedRow.test_result_id}}","key":"ez8ua9k09z","isDeprecated":false,"rightColumn":36.0,"textAlign":"LEFT","widgetId":"gvsoi2jju5","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"vr0dle664y","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1rem"}],"isDisabled":false,"key":"orp8l1tsno","isDeprecated":false,"rightColumn":360.533203125,"detachFromLayout":true,"widgetId":"vr0dle664y","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"1fsp0qaged","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"jzxnrzxxye","height":622.0,"isDeprecated":false,"rightColumn":40.0,"backgroundColor":"#fafafa","detachFromLayout":true,"widgetId":"1fsp0qaged","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":906.0}]},"layoutOnLoadActions":[[{"id":"Failed tests_Failed_Test_data_record","name":"Failed_Test_data_record","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["data_table.selectedRow.test_result_id"],"timeoutInMillisecond":10000.0},{"id":"Failed tests_SelectQuery","name":"SelectQuery","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["appsmith.URL.queryParams.run_id","data_table.sortOrder.order || 'ASC'","data_table.pageSize","data_table.searchText || \"\"","data_table.sortOrder.column || 'test_result_id'","(data_table.pageNo - 1) * data_table.pageSize","appsmith.URL.queryParams.test_id"],"timeoutInMillisecond":10000.0}]],"layoutOnLoadActionErrors":[],"validOnPageLoadActions":true,"id":"Failed tests","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":true},"publishedPage":{"name":"Failed tests","slug":"failed-tests","layouts":[{"viewMode":false,"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1174.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":880.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":64.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":890.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":[{"widgetName":"Text17Copy","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":15.265625,"dynamicTriggerPathList":[],"leftColumn":19.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"},{"key":"text"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Run ID: {{appsmith.URL.queryParams.run_id}}; Test ID: {{appsmith.URL.queryParams.test_id}}","key":"cmvb93zwil","isDeprecated":false,"rightColumn":64.0,"textAlign":"RIGHT","widgetId":"0h26pt3z0q","isVisible":true,"fontStyle":"","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.575rem"},{"boxShadow":"none","widgetName":"Text16","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","leftColumn":2.0,"dynamicBindingPathList":[{"key":"fontFamily"}],"text":"Failed tests","labelTextSize":"0.875rem","rightColumn":10.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","fontSize":"1.5rem"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":11.0,"isSortable":true,"onPageChange":"{{SelectQuery.run()}}","type":"TABLE_WIDGET","animateLoading":true,"dynamicBindingPathList":[{"key":"tableData"},{"key":"accentColor"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"primaryColumns.status.computedValue"},{"key":"derivedColumns.customColumn1.boxShadow"},{"key":"primaryColumns.customColumn1.boxShadow"},{"key":"derivedColumns.customColumn1.borderRadius"},{"key":"primaryColumns.customColumn1.borderRadius"},{"key":"derivedColumns.customColumn1.buttonLabel"},{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"primaryColumns.test_type.computedValue"},{"key":"primaryColumns.entity_id.computedValue"},{"key":"primaryColumns.data_record.computedValue"},{"key":"primaryColumns.description.computedValue"},{"key":"primaryColumns.test_result_id.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":"test_result_id","columnSizeMap":{"task":245.0,"step":62.0,"status":75.0,"test_id":367.0,"test_result_id":318.0,"run_id":251.0,"data_record":818.0,"test_type":227.0,"description":314.0},"widgetName":"data_table","defaultPageSize":0.0,"columnOrder":["status","description","test_type","entity_id","data_record","test_result_id","customColumn1"],"dynamicPropertyPathList":[{"key":"primaryColumns.customColumn1.onClick"}],"displayName":"Table","bottomRow":87.0,"parentRowSpace":10.0,"defaultSelectedRow":"0","hideCard":false,"parentColumnSpace":16.3125,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"onSearchTextChanged"},{"key":"onSort"},{"key":"primaryColumns.customColumn1.onClick"}],"primaryColumns":{"status":{"index":4.0,"width":150.0,"id":"status","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"status","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.status))}}","cellBackground":""},"customColumn1":{"index":3.0,"width":150.0,"id":"customColumn1","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Data","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":"#3b82f6","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'View data'))}}","buttonVariant":"TERTIARY","onClick":"{{Failed_Test_data_record.run(); showModal('View_data')}}"},"test_type":{"index":3.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":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.test_type))}}","cellBackground":""},"entity_id":{"index":4.0,"width":150.0,"id":"entity_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_id","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_id))}}","cellBackground":""},"data_record":{"index":5.0,"width":150.0,"id":"data_record","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"data_record","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.data_record))}}","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":""},"test_result_id":{"index":5.0,"width":150.0,"id":"test_result_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_result_id","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.test_result_id))}}","cellBackground":""}},"key":"zba5qel0au","derivedColumns":{"customColumn1":{"index":3.0,"width":150.0,"id":"customColumn1","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":true,"label":"Data","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":"#3b82f6","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'View data'))}}","buttonVariant":"TERTIARY","onClick":"{{navigateTo('Failed test data',{\"run_id\":data_table.selectedRow.Run_id, \"run_date\":data_table.selectedRow.Run_date, \"test_id\":data_table.selectedRow.Test_id, \"test_description\":data_table.selectedRow.Test, \"test_result_id\":data_table.selectedRow.test_result_id})}}"}},"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":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container2","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg","searchTags":["div","parent","group"],"topRow":0.0,"bottomRow":6.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas5Copy","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":[{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"}],"leftColumn":3.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":11.0,"iconName":"timeline-line-chart","menuVariant":"TERTIARY","widgetId":"542xlgbz2x","menuItems":{"menuItem1":{"label":"Run log","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Run log', {})}}"},"menuItem2":{"label":"Trends","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0}},"isVisible":true,"label":"Run monitoring","version":1.0,"parentId":"b3b5y0a4zl","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1Copy","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"},{"key":"menuItems.menuItem2.onClick"},{"key":"menuItems.menuItem5clg3sf596.onClick"},{"key":"menuItems.menuItemzhze0we924.onClick"}],"leftColumn":11.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":19.0,"iconName":"settings","menuVariant":"TERTIARY","widgetId":"ngw2hyj23a","menuItems":{"menuItem1":{"label":"Tests","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Tests', {})}}"},"menuItem2":{"label":"Entities","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0,"onClick":"{{navigateTo('Entities', {})}}"},"menuItem5clg3sf596":{"id":"menuItem5clg3sf596","index":2.0,"label":"Categories","widgetId":"xj72wvs7rg","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Categories', {})}}"},"menuItemzhze0we924":{"id":"menuItemzhze0we924","index":3.0,"label":"Projects","widgetId":"ail7gs5wwr","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Projects', {})}}"}},"isVisible":true,"label":"Configuration","version":1.0,"parentId":"b3b5y0a4zl","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"widgetName":"Text17","borderColor":"#fff","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"DOT","key":"14w22nnzm7","isDeprecated":false,"rightColumn":3.0,"backgroundColor":"#f79113","textAlign":"CENTER","widgetId":"1r0rbhpgj8","isVisible":true,"fontStyle":"BOLD","textColor":"#fff","version":1.0,"parentId":"b3b5y0a4zl","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.975rem"}],"key":"zdu4x20wju","isDeprecated":false,"rightColumn":471.0,"detachFromLayout":true,"widgetId":"b3b5y0a4zl","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"svr3lslf83","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"borderWidth":"0","key":"nymtbn27w8","backgroundColor":"#3730a3","isDeprecated":false,"rightColumn":64.0,"widgetId":"svr3lslf83","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"IconButton1Copy","onClick":"{{navigateTo('Run results', {\"run_id\": appsmith.URL.queryParams.run_id})}}","buttonColor":"#3b82f6","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634ac75f9fa6b6ae7a8df882a3ba.svg","searchTags":["click","submit"],"topRow":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"isDisabled":false,"key":"y0ebyprd68","isDeprecated":false,"rightColumn":2.0,"iconName":"chevron-left","widgetId":"lwa6u9k3ev","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"}]}],"borderWidth":"0","labelTextSize":"0.875rem","backgroundColor":"#fafafa","rightColumn":63.0,"widgetId":"mvubsemxfo","containerStyle":"card","isVisible":"true","version":1.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"View_data","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","searchTags":["dialog","popup","notification"],"topRow":23.0,"bottomRow":47.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":15.022216796875,"dynamicTriggerPathList":[],"leftColumn":16.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"children":[{"boxShadow":"none","widgetName":"Canvas5","displayName":"Canvas","topRow":0.0,"bottomRow":670.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":622.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"accentColor"}],"children":[{"boxShadow":"none","widgetName":"Text16CopyCopy","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":6.0,"bottomRow":10.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"text"}],"text":"{{appsmith.URL.queryParams.test_description}}","labelTextSize":"0.875rem","rightColumn":55.0,"textAlign":"LEFT","widgetId":"mpe3prm83t","isVisible":"true","fontStyle":"ITALIC","textColor":"#231F20","version":1.0,"parentId":"vr0dle664y","isLoading":false,"borderRadius":"0px","fontSize":"1.0rem"},{"boxShadow":"none","widgetName":"IconButton1","onClick":"{{closeModal('View_data')}}","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":"mfzdt9imkk","isDeprecated":false,"rightColumn":64.0,"iconName":"cross","widgetId":"z7rx6iz3l6","isVisible":true,"version":1.0,"parentId":"vr0dle664y","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"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":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Failed test source data","key":"hdngpw1wkf","isDeprecated":false,"rightColumn":52.0,"textAlign":"LEFT","widgetId":"hpudma1hqr","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"vr0dle664y","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1.5rem"},{"boxShadow":"none","widgetName":"Button3","onClick":"{{closeModal('View_data')}}","buttonColor":"{{appsmith.theme.colors.primaryColor}}","displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","searchTags":["click","submit"],"topRow":61.0,"bottomRow":65.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":47.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Close","isDisabled":false,"key":"0pv6rud52s","isDeprecated":false,"rightColumn":63.0,"isDefaultClickDisabled":true,"widgetId":"0m833s10x7","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"vr0dle664y","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"SECONDARY","placement":"CENTER"},{"widgetName":"Text19","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":14.0,"bottomRow":60.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":13.96875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"},{"key":"text"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"{{JSON.stringify(Failed_Test_data_record.data[0].get_test_result_data_record,null,1)}}","key":"hdngpw1wkf","isDeprecated":false,"rightColumn":63.0,"backgroundColor":"#fff","textAlign":"LEFT","widgetId":"xu1bz8v599","isVisible":true,"fontStyle":"","textColor":"#231F20","version":1.0,"parentId":"vr0dle664y","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1rem"},{"widgetName":"Text20","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":10.0,"bottomRow":14.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":13.96875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"},{"key":"text"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"{{data_table.selectedRow.test_result_id}}","key":"ez8ua9k09z","isDeprecated":false,"rightColumn":36.0,"textAlign":"LEFT","widgetId":"gvsoi2jju5","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"vr0dle664y","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"1rem"}],"isDisabled":false,"key":"orp8l1tsno","isDeprecated":false,"rightColumn":360.533203125,"detachFromLayout":true,"widgetId":"vr0dle664y","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"1fsp0qaged","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"key":"jzxnrzxxye","height":622.0,"isDeprecated":false,"rightColumn":40.0,"backgroundColor":"#fafafa","detachFromLayout":true,"widgetId":"1fsp0qaged","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","width":906.0}]},"layoutOnLoadActions":[[{"id":"Failed tests_Failed_Test_data_record","name":"Failed_Test_data_record","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["data_table.selectedRow.test_result_id"],"timeoutInMillisecond":10000.0},{"id":"Failed tests_SelectQuery","name":"SelectQuery","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["appsmith.URL.queryParams.run_id","data_table.sortOrder.order || 'ASC'","data_table.pageSize","data_table.searchText || \"\"","data_table.sortOrder.column || 'test_result_id'","(data_table.pageNo - 1) * data_table.pageSize","appsmith.URL.queryParams.test_id"],"timeoutInMillisecond":10000.0}]],"layoutOnLoadActionErrors":[],"validOnPageLoadActions":true,"id":"Failed tests","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":true},"deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818330"},{"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":1080.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":63.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":99.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":890.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":7.0,"bottomRow":11.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":6.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":"#93c5fd","widgetId":"xp5u9a9nzq","topRow":7.0,"bottomRow":11.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":62.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":11.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":87.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":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":51.0,"dynamicBindingPathList":[],"text":"Add project","isDisabled":"","key":"2ob5jed9vo","rightColumn":62.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":"#a1a1aa","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":7.0,"bottomRow":11.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":6.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":8.0,"iconName":"help","widgetId":"voej6bbkxb","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container2Copy","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg","searchTags":["div","parent","group"],"topRow":0.0,"bottomRow":6.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas5Copy1","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":[{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1Copy1","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"}],"leftColumn":3.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":11.0,"iconName":"timeline-line-chart","menuVariant":"TERTIARY","widgetId":"vay3agbkyn","menuItems":{"menuItem1":{"label":"Run log","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Run log', {})}}"},"menuItem2":{"label":"Trends","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0}},"isVisible":true,"label":"Run monitoring","version":1.0,"parentId":"5rp9uew9ut","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1CopyCopy","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"},{"key":"menuItems.menuItem2.onClick"},{"key":"menuItems.menuItem5clg3sf596.onClick"},{"key":"menuItems.menuItemzhze0we924.onClick"}],"leftColumn":11.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":19.0,"iconName":"settings","menuVariant":"TERTIARY","widgetId":"mjri251cjb","menuItems":{"menuItem1":{"label":"Tests","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Tests', {})}}"},"menuItem2":{"label":"Entities","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0,"onClick":"{{navigateTo('Entities', {})}}"},"menuItem5clg3sf596":{"id":"menuItem5clg3sf596","index":2.0,"label":"Categories","widgetId":"xj72wvs7rg","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Categories', {})}}"},"menuItemzhze0we924":{"id":"menuItemzhze0we924","index":3.0,"label":"Projects","widgetId":"ail7gs5wwr","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Projects', {})}}"}},"isVisible":true,"label":"Configuration","version":1.0,"parentId":"5rp9uew9ut","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"widgetName":"Text17Copy1","borderColor":"#fff","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"DOT","key":"14w22nnzm7","isDeprecated":false,"rightColumn":3.0,"backgroundColor":"#f79113","textAlign":"CENTER","widgetId":"hxdfkwjboj","isVisible":true,"fontStyle":"BOLD","textColor":"#fff","version":1.0,"parentId":"5rp9uew9ut","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.975rem"}],"key":"zdu4x20wju","isDeprecated":false,"rightColumn":471.0,"detachFromLayout":true,"widgetId":"5rp9uew9ut","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"orwzo0ty1u","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"borderWidth":"0","key":"nymtbn27w8","backgroundColor":"#3730a3","isDeprecated":false,"rightColumn":64.0,"widgetId":"orwzo0ty1u","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}]}],"borderWidth":"0","labelTextSize":"0.875rem","backgroundColor":"#fafafa","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":36.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":19.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":24.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":"{{ ((options, serverSideFiltering) => ( data_table.selectedRow.project_schema))(project_schema_edit.options, project_schema_edit.serverSideFiltering) }}","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}]],"layoutOnLoadActionErrors":[],"validOnPageLoadActions":true,"id":"Projects","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":true},"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":1080.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":63.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":99.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":890.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":7.0,"bottomRow":11.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":6.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":"#93c5fd","widgetId":"xp5u9a9nzq","topRow":7.0,"bottomRow":11.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":62.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":11.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":87.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":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":51.0,"dynamicBindingPathList":[],"text":"Add project","isDisabled":"","key":"2ob5jed9vo","rightColumn":62.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":"#a1a1aa","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":7.0,"bottomRow":11.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":6.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":8.0,"iconName":"help","widgetId":"voej6bbkxb","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container2Copy","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg","searchTags":["div","parent","group"],"topRow":0.0,"bottomRow":6.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas5Copy1","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":[{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1Copy1","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"}],"leftColumn":3.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":11.0,"iconName":"timeline-line-chart","menuVariant":"TERTIARY","widgetId":"vay3agbkyn","menuItems":{"menuItem1":{"label":"Run log","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Run log', {})}}"},"menuItem2":{"label":"Trends","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0}},"isVisible":true,"label":"Run monitoring","version":1.0,"parentId":"5rp9uew9ut","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1CopyCopy","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"},{"key":"menuItems.menuItem2.onClick"},{"key":"menuItems.menuItem5clg3sf596.onClick"},{"key":"menuItems.menuItemzhze0we924.onClick"}],"leftColumn":11.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":19.0,"iconName":"settings","menuVariant":"TERTIARY","widgetId":"mjri251cjb","menuItems":{"menuItem1":{"label":"Tests","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Tests', {})}}"},"menuItem2":{"label":"Entities","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0,"onClick":"{{navigateTo('Entities', {})}}"},"menuItem5clg3sf596":{"id":"menuItem5clg3sf596","index":2.0,"label":"Categories","widgetId":"xj72wvs7rg","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Categories', {})}}"},"menuItemzhze0we924":{"id":"menuItemzhze0we924","index":3.0,"label":"Projects","widgetId":"ail7gs5wwr","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Projects', {})}}"}},"isVisible":true,"label":"Configuration","version":1.0,"parentId":"5rp9uew9ut","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"widgetName":"Text17Copy1","borderColor":"#fff","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"DOT","key":"14w22nnzm7","isDeprecated":false,"rightColumn":3.0,"backgroundColor":"#f79113","textAlign":"CENTER","widgetId":"hxdfkwjboj","isVisible":true,"fontStyle":"BOLD","textColor":"#fff","version":1.0,"parentId":"5rp9uew9ut","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.975rem"}],"key":"zdu4x20wju","isDeprecated":false,"rightColumn":471.0,"detachFromLayout":true,"widgetId":"5rp9uew9ut","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"orwzo0ty1u","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"borderWidth":"0","key":"nymtbn27w8","backgroundColor":"#3730a3","isDeprecated":false,"rightColumn":64.0,"widgetId":"orwzo0ty1u","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}]}],"borderWidth":"0","labelTextSize":"0.875rem","backgroundColor":"#fafafa","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":36.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":19.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":24.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":"{{ ((options, serverSideFiltering) => ( data_table.selectedRow.project_schema))(project_schema_edit.options, project_schema_edit.serverSideFiltering) }}","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}]],"layoutOnLoadActionErrors":[],"validOnPageLoadActions":true,"id":"Projects","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":true},"deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818335"},{"unpublishedPage":{"name":"Run results","slug":"run-results","layouts":[{"viewMode":false,"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1174.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":950.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":69.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":1520.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":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","leftColumn":2.0,"dynamicBindingPathList":[{"key":"fontFamily"}],"text":"Run results ","labelTextSize":"0.875rem","rightColumn":9.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"1.5rem","minDynamicHeight":4.0},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":29.0,"isSortable":true,"onPageChange":"{{SelectQuery.run()}}","type":"TABLE_WIDGET","animateLoading":true,"dynamicBindingPathList":[{"key":"tableData"},{"key":"accentColor"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"primaryColumns.project_id.computedValue"},{"key":"primaryColumns.Run_date.computedValue"},{"key":"primaryColumns.Test.computedValue"},{"key":"primaryColumns.Entity.computedValue"},{"key":"primaryColumns.Test_type.computedValue"},{"key":"primaryColumns.Scenario.computedValue"},{"key":"primaryColumns.Test_status.computedValue"},{"key":"primaryColumns.Rows_tested.computedValue"},{"key":"primaryColumns.Rows_failed.computedValue"},{"key":"primaryColumns._fail.computedValue"},{"key":"primaryColumns.Run_id.computedValue"},{"key":"primaryColumns.Test_status.cellBackground"},{"key":"derivedColumns.Rows_failed.boxShadow"},{"key":"primaryColumns.Rows_failed.boxShadow"},{"key":"derivedColumns.Rows_failed.borderRadius"},{"key":"primaryColumns.Rows_failed.borderRadius"},{"key":"derivedColumns.Rows_failed.buttonLabel"},{"key":"primaryColumns.Rows_failed.buttonLabel"},{"key":"derivedColumns.Rows_failed.buttonColor"},{"key":"primaryColumns.Rows_failed.buttonColor"},{"key":"derivedColumns.Rows_failed.isCellVisible"},{"key":"primaryColumns.Rows_failed.isCellVisible"},{"key":"primaryColumns.Test_id.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":"run_id","columnSizeMap":{"task":245.0,"step":62.0,"status":75.0,"project_id":108.0,"Run_date":190.0,"Test":324.0,"Rows_tested":128.0},"widgetName":"data_table","defaultPageSize":0.0,"columnOrder":["Run_date","project_id","Test","Test_status","Rows_tested","Rows_failed","Entity","Test_type","Scenario","_fail","Run_id","Test_id",null],"dynamicPropertyPathList":[{"key":"primaryColumns.Test_status.cellBackground"},{"key":"primaryColumns.Rows_failed.buttonColor"},{"key":"primaryColumns.Rows_failed.isCellVisible"},{"key":"primaryColumns.Rows_failed.onClick"}],"displayName":"Table","bottomRow":150.0,"parentRowSpace":10.0,"defaultSelectedRow":"0","hideCard":false,"parentColumnSpace":16.3125,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"onSearchTextChanged"},{"key":"onSort"},{"key":"primaryColumns.Rows_failed.onClick"}],"primaryColumns":{"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":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.project_id))}}","cellBackground":""},"Run_date":{"index":0.0,"width":150.0,"id":"Run_date","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Run date","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_date))}}","cellBackground":""},"Test":{"index":2.0,"width":150.0,"id":"Test","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Test","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test))}}","cellBackground":""},"Entity":{"index":3.0,"width":150.0,"id":"Entity","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Entity","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Entity))}}","cellBackground":""},"Test_type":{"index":4.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":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test_type))}}","cellBackground":""},"Scenario":{"index":5.0,"width":150.0,"id":"Scenario","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Scenario","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Scenario))}}","cellBackground":""},"Test_status":{"index":6.0,"width":150.0,"id":"Test_status","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"white","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Test_status","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test_status))}}","cellBackground":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test_status == \"pass\" ? \"green\" : \"red\"))}}"},"Rows_tested":{"index":7.0,"width":150.0,"id":"Rows_tested","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Rows_tested","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_tested))}}","cellBackground":""},"Rows_failed":{"index":8.0,"width":150.0,"id":"Rows_failed","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"button","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed == 0 ? false : true))}}","isDerived":false,"label":"Rows_failed","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed))}}","cellBackground":"","boxShadow":"{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","buttonColor":"{{data_table.sanitizedTableData.map((currentRow) => ( '#3b82f6'))}}","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed == 0 ? undefined : currentRow.Rows_failed))}}","buttonVariant":"TERTIARY","onClick":"{{navigateTo('Failed tests',{\"run_id\":data_table.selectedRow.Run_id, \"run_date\":data_table.selectedRow.Run_date, \"test_id\":data_table.selectedRow.Test_id, \"test_description\":data_table.selectedRow.Test})}}"},"_fail":{"index":9.0,"width":150.0,"id":"_fail","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"% fail","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow._fail))}}","cellBackground":""},"Run_id":{"index":10.0,"width":150.0,"id":"Run_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Run_id","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_id))}}","cellBackground":""},"undefined":{"boxShadow":["none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none"],"borderRadius":["0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px"],"buttonColor":["#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6"],"buttonLabel":[1.0,1.0,1.0,null,262.0,null,1.0,null,null,49.0,1.0,null,14.0,33.0,1.0,17.0,1.0,null,null],"isCellVisible":[true,true,true,false,true,false,true,false,false,true,true,false,true,true,true,true,true,false,false],"index":11.0},"Test_id":{"index":11.0,"width":150.0,"id":"Test_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Test_id","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test_id))}}","cellBackground":""}},"key":"zba5qel0au","derivedColumns":{"Rows_failed":{"boxShadow":"{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","buttonColor":"{{data_table.sanitizedTableData.map((currentRow) => ( '#3b82f6'))}}","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed == 0 ? undefined : currentRow.Rows_failed))}}","isCellVisible":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed == 0 ? false : true))}}"}},"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"},{"widgetName":"Text17","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":15.265625,"dynamicTriggerPathList":[],"leftColumn":22.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"},{"key":"text"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Run ID: {{appsmith.URL.queryParams.run_id}}; Run date: {{appsmith.URL.queryParams.run_date}}","key":"cmvb93zwil","isDeprecated":false,"rightColumn":64.0,"textAlign":"RIGHT","dynamicHeight":"FIXED","widgetId":"np983yz96f","isVisible":true,"fontStyle":"","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"fontSize":"0.575rem","minDynamicHeight":4.0},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Chart1","allowScroll":false,"displayName":"Chart","iconSVG":"/static/media/icon.6adbe31e.svg","searchTags":["graph","visuals","visualisations"],"topRow":11.0,"bottomRow":29.0,"parentRowSpace":10.0,"type":"CHART_WIDGET","hideCard":false,"chartData":{"z7r0lhh07r":{"seriesName":"Sales","data":"{{Run_Fails_by_Test_Type.data}}"}},"animateLoading":true,"parentColumnSpace":15.265625,"dynamicTriggerPathList":[],"fontFamily":"{{appsmith.theme.fontFamily.appFont}}","leftColumn":0.0,"dynamicBindingPathList":[{"key":"boxShadow"},{"key":"chartData.z7r0lhh07r.data"},{"key":"accentColor"},{"key":"fontFamily"}],"customFusionChartConfig":{"type":"column2d","dataSource":{"chart":{"caption":"Sales Report","xAxisName":"Product Line","yAxisName":"Revenue($)","theme":"fusion"},"data":[{"label":"Product1","value":20000.0},{"label":"Product2","value":22000.0},{"label":"Product3","value":32000.0}]}},"key":"bwx9gqhm0r","isDeprecated":false,"rightColumn":64.0,"widgetId":"xtwaz5qcn5","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","labelOrientation":"auto","renderMode":"CANVAS","isLoading":false,"yAxisName":"% failed ","chartName":"","borderRadius":"0px","xAxisName":"Category","chartType":"COLUMN_CHART"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container2","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg","searchTags":["div","parent","group"],"topRow":0.0,"bottomRow":6.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas5","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":[{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"}],"leftColumn":3.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":11.0,"iconName":"timeline-line-chart","menuVariant":"TERTIARY","widgetId":"xxern5jqjt","menuItems":{"menuItem1":{"label":"Run log","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Run log', {})}}"},"menuItem2":{"label":"Trends","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0}},"isVisible":true,"label":"Run monitoring","version":1.0,"parentId":"93zsrx53dx","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1Copy","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"},{"key":"menuItems.menuItem2.onClick"},{"key":"menuItems.menuItem5clg3sf596.onClick"},{"key":"menuItems.menuItemzhze0we924.onClick"}],"leftColumn":11.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":19.0,"iconName":"settings","menuVariant":"TERTIARY","widgetId":"eykymxfaa2","menuItems":{"menuItem1":{"label":"Tests","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Tests', {})}}"},"menuItem2":{"label":"Entities","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0,"onClick":"{{navigateTo('Entities', {})}}"},"menuItem5clg3sf596":{"id":"menuItem5clg3sf596","index":2.0,"label":"Categories","widgetId":"xj72wvs7rg","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Categories', {})}}"},"menuItemzhze0we924":{"id":"menuItemzhze0we924","index":3.0,"label":"Projects","widgetId":"ail7gs5wwr","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Projects', {})}}"}},"isVisible":true,"label":"Configuration","version":1.0,"parentId":"93zsrx53dx","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"widgetName":"Text17Copy","borderColor":"#fff","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"DOT","key":"14w22nnzm7","isDeprecated":false,"rightColumn":3.0,"backgroundColor":"#f79113","disableLink":false,"textAlign":"CENTER","dynamicHeight":"FIXED","widgetId":"2hvre6rswq","isVisible":true,"fontStyle":"BOLD","textColor":"#fff","version":1.0,"parentId":"93zsrx53dx","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"fontSize":"0.975rem","minDynamicHeight":4.0}],"key":"zdu4x20wju","isDeprecated":false,"rightColumn":471.0,"detachFromLayout":true,"widgetId":"93zsrx53dx","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"kax8roxzdl","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"borderWidth":"0","key":"nymtbn27w8","backgroundColor":"#3730a3","isDeprecated":false,"rightColumn":64.0,"dynamicHeight":"FIXED","widgetId":"kax8roxzdl","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0},{"boxShadow":"none","widgetName":"IconButton1","onClick":"{{navigateTo('Run log', {\"run_id\": appsmith.URL.queryParams.run_id})}}","buttonColor":"#3b82f6","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634ac75f9fa6b6ae7a8df882a3ba.svg","searchTags":["click","submit"],"topRow":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"isDisabled":false,"key":"y0ebyprd68","isDeprecated":false,"rightColumn":2.0,"iconName":"chevron-left","widgetId":"sj41jpzsr1","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"}]}],"borderWidth":"0","labelTextSize":"0.875rem","backgroundColor":"#fafafa","rightColumn":64.0,"dynamicHeight":"FIXED","widgetId":"mvubsemxfo","containerStyle":"card","isVisible":"true","version":1.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0},{"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","dynamicHeight":"FIXED","widgetId":"35yoxo4oec","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"1.5rem","minDynamicHeight":4.0},{"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":[],"text":"Are you sure you want to delete this item?","labelTextSize":"0.875rem","rightColumn":63.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"48uac29g6e","isVisible":"true","fontStyle":"","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"1rem","minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"i3whp03wf0","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"width":456.0,"minDynamicHeight":4.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__":{"labelTextSize":"0.875rem","identifier":"__root_schema__","boxShadow":"none","isRequired":false,"isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","dataType":"object","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accessor":"__root_schema__","isVisible":true,"label":"","originalIdentifier":"__root_schema__","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{"col8":{"labelTextSize":"0.875rem","identifier":"col8","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col8))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col8","isVisible":true,"label":"Col 8","originalIdentifier":"col8","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":7.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col12":{"labelTextSize":"0.875rem","identifier":"col12","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col12))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col12","isVisible":true,"label":"Col 12","originalIdentifier":"col12","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":11.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col9":{"labelTextSize":"0.875rem","identifier":"col9","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col9))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col9","isVisible":true,"label":"Col 9","originalIdentifier":"col9","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":8.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col11":{"labelTextSize":"0.875rem","identifier":"col11","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col11))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col11","isVisible":true,"label":"Col 11","originalIdentifier":"col11","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":10.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col6":{"labelTextSize":"0.875rem","identifier":"col6","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col6))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col6","isVisible":true,"label":"Col 6","originalIdentifier":"col6","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":5.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col10":{"labelTextSize":"0.875rem","identifier":"col10","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col10))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col10","isVisible":true,"label":"Col 10","originalIdentifier":"col10","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":9.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col7":{"labelTextSize":"0.875rem","identifier":"col7","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col7))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col7","isVisible":true,"label":"Col 7","originalIdentifier":"col7","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":6.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col4":{"labelTextSize":"0.875rem","identifier":"col4","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col4))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"boolean","cellBorderRadius":"0px","accessor":"col4","isVisible":true,"label":"Col 4","alignWidget":"LEFT","originalIdentifier":"col4","borderRadius":"0px","children":{},"position":3.0,"isDisabled":false,"sourceData":true,"cellBoxShadow":"none","fieldType":"Switch"},"col5":{"labelTextSize":"0.875rem","identifier":"col5","boxShadow":"none","isRequired":false,"isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col5))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"number","accessor":"col5","isVisible":true,"label":"Col 5","originalIdentifier":"col5","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":4.0,"isDisabled":false,"fieldType":"Number Input"},"col2":{"labelTextSize":"0.875rem","identifier":"col2","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col2))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"string","cellBorderRadius":"0px","accessor":"col2","isVisible":true,"label":"Col 2","originalIdentifier":"col2","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":1.0,"isDisabled":false,"sourceData":"skill B","cellBoxShadow":"none","fieldType":"Text Input"},"col3":{"labelTextSize":"0.875rem","identifier":"col3","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col3))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"number","cellBorderRadius":"0px","accessor":"col3","isVisible":true,"label":"Col 3","originalIdentifier":"col3","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":2.0,"isDisabled":false,"sourceData":9.0,"cellBoxShadow":"none","fieldType":"Number Input"},"col1":{"labelTextSize":"0.875rem","identifier":"col1","boxShadow":"none","isRequired":false,"isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col1))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"number","accessor":"col1","isVisible":true,"label":"Col 1","originalIdentifier":"col1","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":0.0,"isDisabled":false,"sourceData":5.0,"fieldType":"Number Input"}},"position":-1.0,"isDisabled":false,"sourceData":{"col4":true,"col2":"skill B","col3":9.0,"col1":5.0},"cellBoxShadow":"none","fieldType":"Object"}},"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 Row","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__.children.col3.defaultValue"},{"key":"schema.__root_schema__.children.col4.defaultValue"},{"key":"schema.__root_schema__.children.col5.defaultValue"},{"key":"schema.__root_schema__.children.col2.defaultValue"},{"key":"schema.__root_schema__.children.col6.defaultValue"},{"key":"schema.__root_schema__.children.col7.defaultValue"},{"key":"schema.__root_schema__.children.col8.defaultValue"},{"key":"schema.__root_schema__.children.col9.defaultValue"},{"key":"schema.__root_schema__.children.col10.defaultValue"},{"key":"schema.__root_schema__.children.col11.defaultValue"},{"key":"schema.__root_schema__.children.col12.defaultValue"},{"key":"schema.__root_schema__.children.col5.accentColor"},{"key":"schema.__root_schema__.children.col5.borderRadius"},{"key":"schema.__root_schema__.borderRadius"},{"key":"schema.__root_schema__.cellBorderRadius"},{"key":"schema.__root_schema__.children.col1.defaultValue"},{"key":"schema.__root_schema__.children.col1.accentColor"},{"key":"schema.__root_schema__.children.col1.borderRadius"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"submitButtonStyles.buttonColor"},{"key":"submitButtonStyles.borderRadius"},{"key":"resetButtonStyles.borderRadius"},{"key":"resetButtonStyles.buttonColor"},{"key":"schema.__root_schema__.children.col2.accentColor"},{"key":"schema.__root_schema__.children.col2.borderRadius"},{"key":"schema.__root_schema__.children.col3.accentColor"},{"key":"schema.__root_schema__.children.col3.borderRadius"},{"key":"schema.__root_schema__.children.col4.accentColor"},{"key":"schema.__root_schema__.children.col6.accentColor"},{"key":"schema.__root_schema__.children.col6.borderRadius"},{"key":"schema.__root_schema__.children.col7.accentColor"},{"key":"schema.__root_schema__.children.col7.borderRadius"},{"key":"schema.__root_schema__.children.col8.accentColor"},{"key":"schema.__root_schema__.children.col8.borderRadius"},{"key":"schema.__root_schema__.children.col9.accentColor"},{"key":"schema.__root_schema__.children.col9.borderRadius"},{"key":"schema.__root_schema__.children.col10.accentColor"},{"key":"schema.__root_schema__.children.col10.borderRadius"},{"key":"schema.__root_schema__.children.col11.accentColor"},{"key":"schema.__root_schema__.children.col11.borderRadius"},{"key":"schema.__root_schema__.children.col12.accentColor"},{"key":"schema.__root_schema__.children.col12.borderRadius"}],"sourceData":"{{_.omit(data_table.tableData[0], \"customColumn1\", \"__primaryKey__\")}}","showReset":true,"resetButtonLabel":"Reset","key":"h9l9ozr8op","labelTextSize":"0.875rem","backgroundColor":"#fff","rightColumn":64.0,"dynamicHeight":"FIXED","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}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"vmorzie6eq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"width":532.0,"minDynamicHeight":4.0}]},"layoutOnLoadActions":[[{"id":"Run results_Run_Fails_by_Test_Type","name":"Run_Fails_by_Test_Type","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["appsmith.URL.queryParams.run_id"],"timeoutInMillisecond":10000.0}],[{"id":"Run results_SelectQuery","name":"SelectQuery","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["appsmith.URL.queryParams.run_id","data_table.sortOrder.order || 'ASC'","data_table.sortOrder.column || 'Run id'","data_table.pageSize","data_table.searchText || \"\"","(data_table.pageNo - 1) * data_table.pageSize"],"timeoutInMillisecond":10000.0}]],"layoutOnLoadActionErrors":[],"validOnPageLoadActions":true,"id":"Run results","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":true},"publishedPage":{"name":"Run results","slug":"run-results","layouts":[{"viewMode":false,"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1174.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":950.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":69.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":1520.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":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","leftColumn":2.0,"dynamicBindingPathList":[{"key":"fontFamily"}],"text":"Run results ","labelTextSize":"0.875rem","rightColumn":9.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"1.5rem","minDynamicHeight":4.0},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":29.0,"isSortable":true,"onPageChange":"{{SelectQuery.run()}}","type":"TABLE_WIDGET","animateLoading":true,"dynamicBindingPathList":[{"key":"tableData"},{"key":"accentColor"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"primaryColumns.project_id.computedValue"},{"key":"primaryColumns.Run_date.computedValue"},{"key":"primaryColumns.Test.computedValue"},{"key":"primaryColumns.Entity.computedValue"},{"key":"primaryColumns.Test_type.computedValue"},{"key":"primaryColumns.Scenario.computedValue"},{"key":"primaryColumns.Test_status.computedValue"},{"key":"primaryColumns.Rows_tested.computedValue"},{"key":"primaryColumns.Rows_failed.computedValue"},{"key":"primaryColumns._fail.computedValue"},{"key":"primaryColumns.Run_id.computedValue"},{"key":"primaryColumns.Test_status.cellBackground"},{"key":"derivedColumns.Rows_failed.boxShadow"},{"key":"primaryColumns.Rows_failed.boxShadow"},{"key":"derivedColumns.Rows_failed.borderRadius"},{"key":"primaryColumns.Rows_failed.borderRadius"},{"key":"derivedColumns.Rows_failed.buttonLabel"},{"key":"primaryColumns.Rows_failed.buttonLabel"},{"key":"derivedColumns.Rows_failed.buttonColor"},{"key":"primaryColumns.Rows_failed.buttonColor"},{"key":"derivedColumns.Rows_failed.isCellVisible"},{"key":"primaryColumns.Rows_failed.isCellVisible"},{"key":"primaryColumns.Test_id.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":"run_id","columnSizeMap":{"task":245.0,"step":62.0,"status":75.0,"project_id":108.0,"Run_date":190.0,"Test":324.0,"Rows_tested":128.0},"widgetName":"data_table","defaultPageSize":0.0,"columnOrder":["Run_date","project_id","Test","Test_status","Rows_tested","Rows_failed","Entity","Test_type","Scenario","_fail","Run_id","Test_id",null],"dynamicPropertyPathList":[{"key":"primaryColumns.Test_status.cellBackground"},{"key":"primaryColumns.Rows_failed.buttonColor"},{"key":"primaryColumns.Rows_failed.isCellVisible"},{"key":"primaryColumns.Rows_failed.onClick"}],"displayName":"Table","bottomRow":150.0,"parentRowSpace":10.0,"defaultSelectedRow":"0","hideCard":false,"parentColumnSpace":16.3125,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"onSearchTextChanged"},{"key":"onSort"},{"key":"primaryColumns.Rows_failed.onClick"}],"primaryColumns":{"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":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.project_id))}}","cellBackground":""},"Run_date":{"index":0.0,"width":150.0,"id":"Run_date","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Run date","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_date))}}","cellBackground":""},"Test":{"index":2.0,"width":150.0,"id":"Test","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Test","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test))}}","cellBackground":""},"Entity":{"index":3.0,"width":150.0,"id":"Entity","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Entity","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Entity))}}","cellBackground":""},"Test_type":{"index":4.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":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test_type))}}","cellBackground":""},"Scenario":{"index":5.0,"width":150.0,"id":"Scenario","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Scenario","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Scenario))}}","cellBackground":""},"Test_status":{"index":6.0,"width":150.0,"id":"Test_status","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"white","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Test_status","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test_status))}}","cellBackground":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test_status == \"pass\" ? \"green\" : \"red\"))}}"},"Rows_tested":{"index":7.0,"width":150.0,"id":"Rows_tested","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Rows_tested","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_tested))}}","cellBackground":""},"Rows_failed":{"index":8.0,"width":150.0,"id":"Rows_failed","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"button","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed == 0 ? false : true))}}","isDerived":false,"label":"Rows_failed","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed))}}","cellBackground":"","boxShadow":"{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","buttonColor":"{{data_table.sanitizedTableData.map((currentRow) => ( '#3b82f6'))}}","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed == 0 ? undefined : currentRow.Rows_failed))}}","buttonVariant":"TERTIARY","onClick":"{{navigateTo('Failed tests',{\"run_id\":data_table.selectedRow.Run_id, \"run_date\":data_table.selectedRow.Run_date, \"test_id\":data_table.selectedRow.Test_id, \"test_description\":data_table.selectedRow.Test})}}"},"_fail":{"index":9.0,"width":150.0,"id":"_fail","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"% fail","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow._fail))}}","cellBackground":""},"Run_id":{"index":10.0,"width":150.0,"id":"Run_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Run_id","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_id))}}","cellBackground":""},"undefined":{"boxShadow":["none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none"],"borderRadius":["0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px","0px"],"buttonColor":["#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6","#3b82f6"],"buttonLabel":[1.0,1.0,1.0,null,262.0,null,1.0,null,null,49.0,1.0,null,14.0,33.0,1.0,17.0,1.0,null,null],"isCellVisible":[true,true,true,false,true,false,true,false,false,true,true,false,true,true,true,true,true,false,false],"index":11.0},"Test_id":{"index":11.0,"width":150.0,"id":"Test_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Test_id","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test_id))}}","cellBackground":""}},"key":"zba5qel0au","derivedColumns":{"Rows_failed":{"boxShadow":"{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}","borderRadius":"{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}","buttonColor":"{{data_table.sanitizedTableData.map((currentRow) => ( '#3b82f6'))}}","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed == 0 ? undefined : currentRow.Rows_failed))}}","isCellVisible":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed == 0 ? false : true))}}"}},"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"},{"widgetName":"Text17","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"overflow":"NONE","fontFamily":"{{appsmith.theme.fontFamily.appFont}}","parentColumnSpace":15.265625,"dynamicTriggerPathList":[],"leftColumn":22.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"},{"key":"text"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Run ID: {{appsmith.URL.queryParams.run_id}}; Run date: {{appsmith.URL.queryParams.run_date}}","key":"cmvb93zwil","isDeprecated":false,"rightColumn":64.0,"textAlign":"RIGHT","dynamicHeight":"FIXED","widgetId":"np983yz96f","isVisible":true,"fontStyle":"","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"fontSize":"0.575rem","minDynamicHeight":4.0},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Chart1","allowScroll":false,"displayName":"Chart","iconSVG":"/static/media/icon.6adbe31e.svg","searchTags":["graph","visuals","visualisations"],"topRow":11.0,"bottomRow":29.0,"parentRowSpace":10.0,"type":"CHART_WIDGET","hideCard":false,"chartData":{"z7r0lhh07r":{"seriesName":"Sales","data":"{{Run_Fails_by_Test_Type.data}}"}},"animateLoading":true,"parentColumnSpace":15.265625,"dynamicTriggerPathList":[],"fontFamily":"{{appsmith.theme.fontFamily.appFont}}","leftColumn":0.0,"dynamicBindingPathList":[{"key":"boxShadow"},{"key":"chartData.z7r0lhh07r.data"},{"key":"accentColor"},{"key":"fontFamily"}],"customFusionChartConfig":{"type":"column2d","dataSource":{"chart":{"caption":"Sales Report","xAxisName":"Product Line","yAxisName":"Revenue($)","theme":"fusion"},"data":[{"label":"Product1","value":20000.0},{"label":"Product2","value":22000.0},{"label":"Product3","value":32000.0}]}},"key":"bwx9gqhm0r","isDeprecated":false,"rightColumn":64.0,"widgetId":"xtwaz5qcn5","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","labelOrientation":"auto","renderMode":"CANVAS","isLoading":false,"yAxisName":"% failed ","chartName":"","borderRadius":"0px","xAxisName":"Category","chartType":"COLUMN_CHART"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container2","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg","searchTags":["div","parent","group"],"topRow":0.0,"bottomRow":6.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas5","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":[{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"}],"leftColumn":3.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":11.0,"iconName":"timeline-line-chart","menuVariant":"TERTIARY","widgetId":"xxern5jqjt","menuItems":{"menuItem1":{"label":"Run log","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Run log', {})}}"},"menuItem2":{"label":"Trends","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0}},"isVisible":true,"label":"Run monitoring","version":1.0,"parentId":"93zsrx53dx","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1Copy","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"},{"key":"menuItems.menuItem2.onClick"},{"key":"menuItems.menuItem5clg3sf596.onClick"},{"key":"menuItems.menuItemzhze0we924.onClick"}],"leftColumn":11.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":19.0,"iconName":"settings","menuVariant":"TERTIARY","widgetId":"eykymxfaa2","menuItems":{"menuItem1":{"label":"Tests","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Tests', {})}}"},"menuItem2":{"label":"Entities","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0,"onClick":"{{navigateTo('Entities', {})}}"},"menuItem5clg3sf596":{"id":"menuItem5clg3sf596","index":2.0,"label":"Categories","widgetId":"xj72wvs7rg","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Categories', {})}}"},"menuItemzhze0we924":{"id":"menuItemzhze0we924","index":3.0,"label":"Projects","widgetId":"ail7gs5wwr","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Projects', {})}}"}},"isVisible":true,"label":"Configuration","version":1.0,"parentId":"93zsrx53dx","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"widgetName":"Text17Copy","borderColor":"#fff","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"DOT","key":"14w22nnzm7","isDeprecated":false,"rightColumn":3.0,"backgroundColor":"#f79113","disableLink":false,"textAlign":"CENTER","dynamicHeight":"FIXED","widgetId":"2hvre6rswq","isVisible":true,"fontStyle":"BOLD","textColor":"#fff","version":1.0,"parentId":"93zsrx53dx","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"fontSize":"0.975rem","minDynamicHeight":4.0}],"key":"zdu4x20wju","isDeprecated":false,"rightColumn":471.0,"detachFromLayout":true,"widgetId":"93zsrx53dx","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"kax8roxzdl","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"borderWidth":"0","key":"nymtbn27w8","backgroundColor":"#3730a3","isDeprecated":false,"rightColumn":64.0,"dynamicHeight":"FIXED","widgetId":"kax8roxzdl","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0},{"boxShadow":"none","widgetName":"IconButton1","onClick":"{{navigateTo('Run log', {\"run_id\": appsmith.URL.queryParams.run_id})}}","buttonColor":"#3b82f6","dynamicPropertyPathList":[{"key":"onClick"}],"displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634ac75f9fa6b6ae7a8df882a3ba.svg","searchTags":["click","submit"],"topRow":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"ICON_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"isDisabled":false,"key":"y0ebyprd68","isDeprecated":false,"rightColumn":2.0,"iconName":"chevron-left","widgetId":"sj41jpzsr1","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"}]}],"borderWidth":"0","labelTextSize":"0.875rem","backgroundColor":"#fafafa","rightColumn":64.0,"dynamicHeight":"FIXED","widgetId":"mvubsemxfo","containerStyle":"card","isVisible":"true","version":1.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0},{"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","dynamicHeight":"FIXED","widgetId":"35yoxo4oec","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"1.5rem","minDynamicHeight":4.0},{"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":[],"text":"Are you sure you want to delete this item?","labelTextSize":"0.875rem","rightColumn":63.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"48uac29g6e","isVisible":"true","fontStyle":"","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"1rem","minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"i3whp03wf0","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"width":456.0,"minDynamicHeight":4.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__":{"labelTextSize":"0.875rem","identifier":"__root_schema__","boxShadow":"none","isRequired":false,"isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","dataType":"object","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accessor":"__root_schema__","isVisible":true,"label":"","originalIdentifier":"__root_schema__","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{"col8":{"labelTextSize":"0.875rem","identifier":"col8","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col8))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col8","isVisible":true,"label":"Col 8","originalIdentifier":"col8","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":7.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col12":{"labelTextSize":"0.875rem","identifier":"col12","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col12))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col12","isVisible":true,"label":"Col 12","originalIdentifier":"col12","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":11.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col9":{"labelTextSize":"0.875rem","identifier":"col9","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col9))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col9","isVisible":true,"label":"Col 9","originalIdentifier":"col9","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":8.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col11":{"labelTextSize":"0.875rem","identifier":"col11","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col11))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col11","isVisible":true,"label":"Col 11","originalIdentifier":"col11","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":10.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col6":{"labelTextSize":"0.875rem","identifier":"col6","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col6))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col6","isVisible":true,"label":"Col 6","originalIdentifier":"col6","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":5.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col10":{"labelTextSize":"0.875rem","identifier":"col10","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col10))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col10","isVisible":true,"label":"Col 10","originalIdentifier":"col10","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":9.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col7":{"labelTextSize":"0.875rem","identifier":"col7","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col7))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col7","isVisible":true,"label":"Col 7","originalIdentifier":"col7","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":6.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col4":{"labelTextSize":"0.875rem","identifier":"col4","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col4))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"boolean","cellBorderRadius":"0px","accessor":"col4","isVisible":true,"label":"Col 4","alignWidget":"LEFT","originalIdentifier":"col4","borderRadius":"0px","children":{},"position":3.0,"isDisabled":false,"sourceData":true,"cellBoxShadow":"none","fieldType":"Switch"},"col5":{"labelTextSize":"0.875rem","identifier":"col5","boxShadow":"none","isRequired":false,"isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col5))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"number","accessor":"col5","isVisible":true,"label":"Col 5","originalIdentifier":"col5","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":4.0,"isDisabled":false,"fieldType":"Number Input"},"col2":{"labelTextSize":"0.875rem","identifier":"col2","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col2))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"string","cellBorderRadius":"0px","accessor":"col2","isVisible":true,"label":"Col 2","originalIdentifier":"col2","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":1.0,"isDisabled":false,"sourceData":"skill B","cellBoxShadow":"none","fieldType":"Text Input"},"col3":{"labelTextSize":"0.875rem","identifier":"col3","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col3))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"number","cellBorderRadius":"0px","accessor":"col3","isVisible":true,"label":"Col 3","originalIdentifier":"col3","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":2.0,"isDisabled":false,"sourceData":9.0,"cellBoxShadow":"none","fieldType":"Number Input"},"col1":{"labelTextSize":"0.875rem","identifier":"col1","boxShadow":"none","isRequired":false,"isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col1))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"number","accessor":"col1","isVisible":true,"label":"Col 1","originalIdentifier":"col1","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":0.0,"isDisabled":false,"sourceData":5.0,"fieldType":"Number Input"}},"position":-1.0,"isDisabled":false,"sourceData":{"col4":true,"col2":"skill B","col3":9.0,"col1":5.0},"cellBoxShadow":"none","fieldType":"Object"}},"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 Row","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__.children.col3.defaultValue"},{"key":"schema.__root_schema__.children.col4.defaultValue"},{"key":"schema.__root_schema__.children.col5.defaultValue"},{"key":"schema.__root_schema__.children.col2.defaultValue"},{"key":"schema.__root_schema__.children.col6.defaultValue"},{"key":"schema.__root_schema__.children.col7.defaultValue"},{"key":"schema.__root_schema__.children.col8.defaultValue"},{"key":"schema.__root_schema__.children.col9.defaultValue"},{"key":"schema.__root_schema__.children.col10.defaultValue"},{"key":"schema.__root_schema__.children.col11.defaultValue"},{"key":"schema.__root_schema__.children.col12.defaultValue"},{"key":"schema.__root_schema__.children.col5.accentColor"},{"key":"schema.__root_schema__.children.col5.borderRadius"},{"key":"schema.__root_schema__.borderRadius"},{"key":"schema.__root_schema__.cellBorderRadius"},{"key":"schema.__root_schema__.children.col1.defaultValue"},{"key":"schema.__root_schema__.children.col1.accentColor"},{"key":"schema.__root_schema__.children.col1.borderRadius"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"submitButtonStyles.buttonColor"},{"key":"submitButtonStyles.borderRadius"},{"key":"resetButtonStyles.borderRadius"},{"key":"resetButtonStyles.buttonColor"},{"key":"schema.__root_schema__.children.col2.accentColor"},{"key":"schema.__root_schema__.children.col2.borderRadius"},{"key":"schema.__root_schema__.children.col3.accentColor"},{"key":"schema.__root_schema__.children.col3.borderRadius"},{"key":"schema.__root_schema__.children.col4.accentColor"},{"key":"schema.__root_schema__.children.col6.accentColor"},{"key":"schema.__root_schema__.children.col6.borderRadius"},{"key":"schema.__root_schema__.children.col7.accentColor"},{"key":"schema.__root_schema__.children.col7.borderRadius"},{"key":"schema.__root_schema__.children.col8.accentColor"},{"key":"schema.__root_schema__.children.col8.borderRadius"},{"key":"schema.__root_schema__.children.col9.accentColor"},{"key":"schema.__root_schema__.children.col9.borderRadius"},{"key":"schema.__root_schema__.children.col10.accentColor"},{"key":"schema.__root_schema__.children.col10.borderRadius"},{"key":"schema.__root_schema__.children.col11.accentColor"},{"key":"schema.__root_schema__.children.col11.borderRadius"},{"key":"schema.__root_schema__.children.col12.accentColor"},{"key":"schema.__root_schema__.children.col12.borderRadius"}],"sourceData":"{{_.omit(data_table.tableData[0], \"customColumn1\", \"__primaryKey__\")}}","showReset":true,"resetButtonLabel":"Reset","key":"h9l9ozr8op","labelTextSize":"0.875rem","backgroundColor":"#fff","rightColumn":64.0,"dynamicHeight":"FIXED","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}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"vmorzie6eq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"width":532.0,"minDynamicHeight":4.0}]},"layoutOnLoadActions":[[{"id":"Run results_Run_Fails_by_Test_Type","name":"Run_Fails_by_Test_Type","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["appsmith.URL.queryParams.run_id"],"timeoutInMillisecond":10000.0}],[{"id":"Run results_SelectQuery","name":"SelectQuery","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["appsmith.URL.queryParams.run_id","data_table.sortOrder.order || 'ASC'","data_table.sortOrder.column || 'Run id'","data_table.pageSize","data_table.searchText || \"\"","(data_table.pageNo - 1) * data_table.pageSize"],"timeoutInMillisecond":10000.0}]],"layoutOnLoadActionErrors":[],"validOnPageLoadActions":true,"id":"Run results","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":true},"deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781832f"},{"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":950.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":900.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":7.0,"bottomRow":11.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":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":"#93c5fd","widgetId":"xp5u9a9nzq","topRow":7.0,"bottomRow":11.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":62.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":11.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_id.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"},{"key":"primaryColumns.project_id.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_id":275.0,"entity_definition":691.0,"entity_category_description":431.0},"widgetName":"data_table","defaultPageSize":0.0,"columnOrder":["customColumn2","customColumn1","project_id","entity_id","entity_id","entity_category","entity_definition","date_added","date_modified","last_updated_by","entity_category_description"],"dynamicPropertyPathList":[{"key":"primaryColumns.customColumn1.borderRadius"}],"displayName":"Table","bottomRow":88.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_id":{"index":1.0,"width":150.0,"id":"entity_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_id","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_id))}}","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":""},"project_id":{"index":8.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":""}},"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":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":51.0,"dynamicBindingPathList":[],"text":"Add entity","isDisabled":"","key":"2ob5jed9vo","rightColumn":62.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":"#a1a1aa","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":7.0,"bottomRow":11.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":"zjrq8w12dz","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container2Copy","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg","searchTags":["div","parent","group"],"topRow":0.0,"bottomRow":6.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas5Copy1","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":[{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1Copy1","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"}],"leftColumn":3.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":11.0,"iconName":"timeline-line-chart","menuVariant":"TERTIARY","widgetId":"5ef8swmekq","menuItems":{"menuItem1":{"label":"Run log","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Run log', {})}}"},"menuItem2":{"label":"Trends","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0}},"isVisible":true,"label":"Run monitoring","version":1.0,"parentId":"uai74em954","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1CopyCopy","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"},{"key":"menuItems.menuItem2.onClick"},{"key":"menuItems.menuItem5clg3sf596.onClick"},{"key":"menuItems.menuItemzhze0we924.onClick"}],"leftColumn":11.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":19.0,"iconName":"settings","menuVariant":"TERTIARY","widgetId":"le1sepuugs","menuItems":{"menuItem1":{"label":"Tests","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Tests', {})}}"},"menuItem2":{"label":"Entities","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0,"onClick":"{{navigateTo('Entities', {})}}"},"menuItem5clg3sf596":{"id":"menuItem5clg3sf596","index":2.0,"label":"Categories","widgetId":"xj72wvs7rg","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Categories', {})}}"},"menuItemzhze0we924":{"id":"menuItemzhze0we924","index":3.0,"label":"Projects","widgetId":"ail7gs5wwr","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Projects', {})}}"}},"isVisible":true,"label":"Configuration","version":1.0,"parentId":"uai74em954","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"widgetName":"Text17Copy1","borderColor":"#fff","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"DOT","key":"14w22nnzm7","isDeprecated":false,"rightColumn":3.0,"backgroundColor":"#f79113","textAlign":"CENTER","widgetId":"klm3mlyj89","isVisible":true,"fontStyle":"BOLD","textColor":"#fff","version":1.0,"parentId":"uai74em954","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.975rem"}],"key":"zdu4x20wju","isDeprecated":false,"rightColumn":471.0,"detachFromLayout":true,"widgetId":"uai74em954","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"7typnj3j3c","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"borderWidth":"0","key":"nymtbn27w8","backgroundColor":"#3730a3","isDeprecated":false,"rightColumn":64.0,"widgetId":"7typnj3j3c","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}]}],"borderWidth":"0","labelTextSize":"0.875rem","backgroundColor":"#fafafa","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_id.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_id":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_id))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"hhview_visits","isCustomField":false,"accessor":"entity_id","identifier":"entity_id","position":1.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":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":4.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":5.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":6.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":7.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":8.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"},"customField1":{"children":{},"dataType":"string","defaultValue":"","fieldType":"Select","sourceData":"","isCustomField":true,"accessor":"entity_project_id","identifier":"customField1","position":3.0,"originalIdentifier":"customField1","boxShadow":"none","borderRadius":"{{((sourceData, formData, fieldState) => (appsmith.theme.borderRadius.appBorderRadius))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{((sourceData, formData, fieldState) => (appsmith.theme.colors.primaryColor))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":true,"label":"Project","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Projects_Dropdown.data}}"}},"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_id":"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_id.defaultValue"},{"key":"schema.__root_schema__.children.entity_id.borderRadius"},{"key":"schema.__root_schema__.children.entity_id.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"},{"key":"schema.__root_schema__.children.customField1.borderRadius"},{"key":"schema.__root_schema__.children.customField1.accentColor"},{"key":"schema.__root_schema__.children.customField1.options"}],"sourceData":"{}","showReset":true,"resetButtonLabel":"Reset","key":"h9l9ozr8op","labelTextSize":"0.875rem","backgroundColor":"#fff","rightColumn":63.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":716.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":560.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":"Text18CopyCopy1","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.9599609375,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Project","key":"xaqcpsuf8a","isDeprecated":false,"rightColumn":17.0,"textAlign":"LEFT","widgetId":"8cop74ux6s","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_categoryCopy","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","searchTags":["dropdown"],"topRow":14.0,"bottomRow":18.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{data_table.selectedRow.project_id}}","animateLoading":true,"parentColumnSpace":7.9599609375,"dynamicTriggerPathList":[],"leftColumn":20.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultOptionValue"},{"key":"options"}],"labelPosition":"Left","options":"{{Projects_Dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"u0o6ppj7qr","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"widgetId":"niokrl8u8m","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"2adojvqxx2","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"widgetName":"Text18CopyCopy","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":18.0,"bottomRow":22.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":50.0,"bottomRow":54.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":50.0,"bottomRow":54.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":50.0,"bottomRow":54.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Reset","key":"0q5pnr6dj7","isDeprecated":false,"rightColumn":19.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_id","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_id}}"},{"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":18.0,"bottomRow":50.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":63.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":674.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_idEntity 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_Projects_Dropdown","name":"Projects_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":true},"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":950.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":900.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":7.0,"bottomRow":11.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":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":"#93c5fd","widgetId":"xp5u9a9nzq","topRow":7.0,"bottomRow":11.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":62.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":11.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_id.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"},{"key":"primaryColumns.project_id.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_id":275.0,"entity_definition":691.0,"entity_category_description":431.0},"widgetName":"data_table","defaultPageSize":0.0,"columnOrder":["customColumn2","customColumn1","project_id","entity_id","entity_id","entity_category","entity_definition","date_added","date_modified","last_updated_by","entity_category_description"],"dynamicPropertyPathList":[{"key":"primaryColumns.customColumn1.borderRadius"}],"displayName":"Table","bottomRow":88.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_id":{"index":1.0,"width":150.0,"id":"entity_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_id","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_id))}}","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":""},"project_id":{"index":8.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":""}},"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":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":51.0,"dynamicBindingPathList":[],"text":"Add entity","isDisabled":"","key":"2ob5jed9vo","rightColumn":62.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":"#a1a1aa","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":7.0,"bottomRow":11.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":"zjrq8w12dz","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","buttonVariant":"TERTIARY"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container2Copy","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg","searchTags":["div","parent","group"],"topRow":0.0,"bottomRow":6.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas5Copy1","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":[{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1Copy1","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"}],"leftColumn":3.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":11.0,"iconName":"timeline-line-chart","menuVariant":"TERTIARY","widgetId":"5ef8swmekq","menuItems":{"menuItem1":{"label":"Run log","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Run log', {})}}"},"menuItem2":{"label":"Trends","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0}},"isVisible":true,"label":"Run monitoring","version":1.0,"parentId":"uai74em954","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1CopyCopy","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"},{"key":"menuItems.menuItem2.onClick"},{"key":"menuItems.menuItem5clg3sf596.onClick"},{"key":"menuItems.menuItemzhze0we924.onClick"}],"leftColumn":11.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":19.0,"iconName":"settings","menuVariant":"TERTIARY","widgetId":"le1sepuugs","menuItems":{"menuItem1":{"label":"Tests","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Tests', {})}}"},"menuItem2":{"label":"Entities","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0,"onClick":"{{navigateTo('Entities', {})}}"},"menuItem5clg3sf596":{"id":"menuItem5clg3sf596","index":2.0,"label":"Categories","widgetId":"xj72wvs7rg","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Categories', {})}}"},"menuItemzhze0we924":{"id":"menuItemzhze0we924","index":3.0,"label":"Projects","widgetId":"ail7gs5wwr","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Projects', {})}}"}},"isVisible":true,"label":"Configuration","version":1.0,"parentId":"uai74em954","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"widgetName":"Text17Copy1","borderColor":"#fff","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"DOT","key":"14w22nnzm7","isDeprecated":false,"rightColumn":3.0,"backgroundColor":"#f79113","textAlign":"CENTER","widgetId":"klm3mlyj89","isVisible":true,"fontStyle":"BOLD","textColor":"#fff","version":1.0,"parentId":"uai74em954","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.975rem"}],"key":"zdu4x20wju","isDeprecated":false,"rightColumn":471.0,"detachFromLayout":true,"widgetId":"uai74em954","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"7typnj3j3c","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"borderWidth":"0","key":"nymtbn27w8","backgroundColor":"#3730a3","isDeprecated":false,"rightColumn":64.0,"widgetId":"7typnj3j3c","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}]}],"borderWidth":"0","labelTextSize":"0.875rem","backgroundColor":"#fafafa","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_id.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_id":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_id))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","fieldType":"Text Input","sourceData":"hhview_visits","isCustomField":false,"accessor":"entity_id","identifier":"entity_id","position":1.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":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":4.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":5.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":6.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":7.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":8.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"},"customField1":{"children":{},"dataType":"string","defaultValue":"","fieldType":"Select","sourceData":"","isCustomField":true,"accessor":"entity_project_id","identifier":"customField1","position":3.0,"originalIdentifier":"customField1","boxShadow":"none","borderRadius":"{{((sourceData, formData, fieldState) => (appsmith.theme.borderRadius.appBorderRadius))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{((sourceData, formData, fieldState) => (appsmith.theme.colors.primaryColor))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":true,"label":"Project","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Projects_Dropdown.data}}"}},"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_id":"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_id.defaultValue"},{"key":"schema.__root_schema__.children.entity_id.borderRadius"},{"key":"schema.__root_schema__.children.entity_id.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"},{"key":"schema.__root_schema__.children.customField1.borderRadius"},{"key":"schema.__root_schema__.children.customField1.accentColor"},{"key":"schema.__root_schema__.children.customField1.options"}],"sourceData":"{}","showReset":true,"resetButtonLabel":"Reset","key":"h9l9ozr8op","labelTextSize":"0.875rem","backgroundColor":"#fff","rightColumn":63.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":716.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":560.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":"Text18CopyCopy1","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.9599609375,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Project","key":"xaqcpsuf8a","isDeprecated":false,"rightColumn":17.0,"textAlign":"LEFT","widgetId":"8cop74ux6s","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_categoryCopy","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","searchTags":["dropdown"],"topRow":14.0,"bottomRow":18.0,"parentRowSpace":10.0,"labelWidth":5.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{data_table.selectedRow.project_id}}","animateLoading":true,"parentColumnSpace":7.9599609375,"dynamicTriggerPathList":[],"leftColumn":20.0,"dynamicBindingPathList":[{"key":"accentColor"},{"key":"borderRadius"},{"key":"defaultOptionValue"},{"key":"options"}],"labelPosition":"Left","options":"{{Projects_Dropdown.data}}","placeholderText":"Select option","isDisabled":false,"key":"u0o6ppj7qr","labelTextSize":"0.875rem","isRequired":false,"isDeprecated":false,"rightColumn":63.0,"widgetId":"niokrl8u8m","accentColor":"{{appsmith.theme.colors.primaryColor}}","isVisible":true,"version":1.0,"parentId":"2adojvqxx2","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"widgetName":"Text18CopyCopy","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","searchTags":["typography","paragraph"],"topRow":18.0,"bottomRow":22.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":50.0,"bottomRow":54.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":50.0,"bottomRow":54.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":50.0,"bottomRow":54.0,"type":"FORM_BUTTON_WIDGET","hideCard":true,"animateLoading":true,"leftColumn":0.0,"dynamicBindingPathList":[{"key":"buttonColor"},{"key":"borderRadius"}],"text":"Reset","key":"0q5pnr6dj7","isDeprecated":false,"rightColumn":19.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_id","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_id}}"},{"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":18.0,"bottomRow":50.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":63.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":674.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_idEntity 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_Projects_Dropdown","name":"Projects_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":true},"deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818332"},{"unpublishedPage":{"name":"Run log","slug":"run-log","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":69.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":1060.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":7.0,"bottomRow":11.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":"Run log","labelTextSize":"0.875rem","rightColumn":10.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"1.5rem","minDynamicHeight":4.0},{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"#93c5fd","widgetId":"xp5u9a9nzq","topRow":7.0,"bottomRow":11.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":62.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":11.0,"isSortable":true,"onPageChange":"{{SelectQuery.run()}}","type":"TABLE_WIDGET","animateLoading":true,"dynamicBindingPathList":[{"key":"tableData"},{"key":"accentColor"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"primaryColumns.Run_date.computedValue"},{"key":"primaryColumns.Rows_tested.computedValue"},{"key":"primaryColumns.Rows_failed.computedValue"},{"key":"primaryColumns._fail.computedValue"},{"key":"primaryColumns.Run_id.computedValue"},{"key":"primaryColumns.Project_id.computedValue"},{"key":"derivedColumns.customColumn1.boxShadow"},{"key":"primaryColumns.customColumn1.boxShadow"},{"key":"derivedColumns.customColumn1.borderRadius"},{"key":"primaryColumns.customColumn1.borderRadius"},{"key":"derivedColumns.customColumn1.buttonLabel"},{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"primaryColumns.Run_status.computedValue"},{"key":"primaryColumns.Run_error.computedValue"},{"key":"derivedColumns.customColumn1.isCellVisible"},{"key":"primaryColumns.customColumn1.isCellVisible"}],"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":"run_id","columnSizeMap":{"task":245.0,"step":62.0,"status":75.0,"run_start":226.0,"run_finish":224.0,"run_id":150.0,"Run_date":268.0},"widgetName":"data_table","defaultPageSize":0.0,"columnOrder":["Run_date","Project_id","customColumn1","Rows_tested","Rows_failed","_fail","Run_id","Run_status","Run_error"],"dynamicPropertyPathList":[{"key":"primaryColumns.customColumn1.onClick"},{"key":"primaryColumns.customColumn1.isCellVisible"}],"displayName":"Table","bottomRow":104.0,"parentRowSpace":10.0,"defaultSelectedRow":"0","hideCard":false,"parentColumnSpace":16.3125,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"onSearchTextChanged"},{"key":"onSort"},{"key":"primaryColumns.customColumn1.onClick"}],"primaryColumns":{"Run_date":{"index":0.0,"width":150.0,"id":"Run_date","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Run date","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_date))}}","cellBackground":""},"Rows_tested":{"index":2.0,"width":150.0,"id":"Rows_tested","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Rows tested","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_tested))}}","cellBackground":""},"Rows_failed":{"index":3.0,"width":150.0,"id":"Rows_failed","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Rows failed","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed))}}","cellBackground":""},"_fail":{"index":4.0,"width":150.0,"id":"_fail","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"% fail","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow._fail))}}","cellBackground":""},"Run_id":{"index":5.0,"width":150.0,"id":"Run_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Run id","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_id))}}","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":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Project_id))}}","cellBackground":""},"customColumn1":{"index":6.0,"width":150.0,"id":"customColumn1","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isDerived":true,"label":"Run results","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":"#3b82f6","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'View'))}}","buttonVariant":"TERTIARY","onClick":"{{navigateTo('Run results',{\"run_id\":data_table.selectedRow.Run_id, \"run_date\":data_table.selectedRow.Run_date})}}","isCellVisible":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_status == \"Finished\" ? true : false))}}"},"Run_status":{"index":6.0,"width":150.0,"id":"Run_status","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Run_status","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_status))}}","cellBackground":""},"Run_error":{"index":7.0,"width":150.0,"id":"Run_error","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Run_error","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_error))}}","cellBackground":""}},"key":"zba5qel0au","derivedColumns":{"customColumn1":{"index":6.0,"width":150.0,"id":"customColumn1","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isDerived":true,"label":"Run results","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":"#3b82f6","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'View'))}}","buttonVariant":"TERTIARY","onClick":"{{navigateTo('Run results', {})}}","isCellVisible":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_status == \"Finished\" ? true : false))}}"}},"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":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container2","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg","searchTags":["div","parent","group"],"topRow":0.0,"bottomRow":6.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas5","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":[{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"}],"leftColumn":3.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":11.0,"iconName":"timeline-line-chart","menuVariant":"TERTIARY","widgetId":"81s53a2wqj","menuItems":{"menuItem1":{"label":"Run log","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Run log', {})}}"},"menuItem2":{"label":"Trends","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0}},"isVisible":true,"label":"Run monitoring","version":1.0,"parentId":"phekdiq45y","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1Copy","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"},{"key":"menuItems.menuItem2.onClick"},{"key":"menuItems.menuItem5clg3sf596.onClick"},{"key":"menuItems.menuItemzhze0we924.onClick"}],"leftColumn":11.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":24.0,"iconName":"settings","menuVariant":"TERTIARY","widgetId":"zqzg4hujok","menuItems":{"menuItem1":{"label":"Tests","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Tests', {})}}"},"menuItem2":{"label":"Entities","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0,"onClick":"{{navigateTo('Entities', {})}}"},"menuItem5clg3sf596":{"id":"menuItem5clg3sf596","index":2.0,"label":"Categories","widgetId":"xj72wvs7rg","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Categories', {})}}"},"menuItemzhze0we924":{"id":"menuItemzhze0we924","index":3.0,"label":"Projects","widgetId":"ail7gs5wwr","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Projects', {})}}"}},"isVisible":true,"label":"Configuration","version":1.0,"parentId":"phekdiq45y","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"widgetName":"Text17","borderColor":"#fff","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"DOT","key":"14w22nnzm7","isDeprecated":false,"rightColumn":3.0,"backgroundColor":"#f79113","textAlign":"CENTER","dynamicHeight":"FIXED","widgetId":"xuq65qjv6f","isVisible":true,"fontStyle":"BOLD","textColor":"#fff","version":1.0,"parentId":"phekdiq45y","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"fontSize":"0.975rem","minDynamicHeight":4.0}],"key":"zdu4x20wju","isDeprecated":false,"rightColumn":471.0,"detachFromLayout":true,"widgetId":"phekdiq45y","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"h9nyfo3qfn","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"borderWidth":"0","key":"nymtbn27w8","backgroundColor":"#3730a3","isDeprecated":false,"rightColumn":64.0,"dynamicHeight":"FIXED","widgetId":"h9nyfo3qfn","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0}]}],"borderWidth":"0","labelTextSize":"0.875rem","backgroundColor":"#fafafa","rightColumn":64.0,"dynamicHeight":"FIXED","widgetId":"mvubsemxfo","containerStyle":"card","isVisible":"true","version":1.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0},{"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","dynamicHeight":"FIXED","widgetId":"35yoxo4oec","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"1.5rem","minDynamicHeight":4.0},{"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":[],"text":"Are you sure you want to delete this item?","labelTextSize":"0.875rem","rightColumn":63.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"48uac29g6e","isVisible":"true","fontStyle":"","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"1rem","minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"i3whp03wf0","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"width":456.0,"minDynamicHeight":4.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__":{"labelTextSize":"0.875rem","identifier":"__root_schema__","boxShadow":"none","isRequired":false,"isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","dataType":"object","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accessor":"__root_schema__","isVisible":true,"label":"","originalIdentifier":"__root_schema__","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{"col8":{"labelTextSize":"0.875rem","identifier":"col8","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col8))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col8","isVisible":true,"label":"Col 8","originalIdentifier":"col8","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":7.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col12":{"labelTextSize":"0.875rem","identifier":"col12","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col12))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col12","isVisible":true,"label":"Col 12","originalIdentifier":"col12","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":11.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col9":{"labelTextSize":"0.875rem","identifier":"col9","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col9))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col9","isVisible":true,"label":"Col 9","originalIdentifier":"col9","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":8.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col11":{"labelTextSize":"0.875rem","identifier":"col11","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col11))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col11","isVisible":true,"label":"Col 11","originalIdentifier":"col11","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":10.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col6":{"labelTextSize":"0.875rem","identifier":"col6","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col6))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col6","isVisible":true,"label":"Col 6","originalIdentifier":"col6","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":5.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col10":{"labelTextSize":"0.875rem","identifier":"col10","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col10))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col10","isVisible":true,"label":"Col 10","originalIdentifier":"col10","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":9.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col7":{"labelTextSize":"0.875rem","identifier":"col7","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col7))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col7","isVisible":true,"label":"Col 7","originalIdentifier":"col7","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":6.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col4":{"labelTextSize":"0.875rem","identifier":"col4","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col4))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"boolean","cellBorderRadius":"0px","accessor":"col4","isVisible":true,"label":"Col 4","alignWidget":"LEFT","originalIdentifier":"col4","borderRadius":"0px","children":{},"position":3.0,"isDisabled":false,"sourceData":true,"cellBoxShadow":"none","fieldType":"Switch"},"col5":{"labelTextSize":"0.875rem","identifier":"col5","boxShadow":"none","isRequired":false,"isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col5))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"number","accessor":"col5","isVisible":true,"label":"Col 5","originalIdentifier":"col5","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":4.0,"isDisabled":false,"fieldType":"Number Input"},"col2":{"labelTextSize":"0.875rem","identifier":"col2","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col2))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"string","cellBorderRadius":"0px","accessor":"col2","isVisible":true,"label":"Col 2","originalIdentifier":"col2","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":1.0,"isDisabled":false,"sourceData":"skill B","cellBoxShadow":"none","fieldType":"Text Input"},"col3":{"labelTextSize":"0.875rem","identifier":"col3","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col3))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"number","cellBorderRadius":"0px","accessor":"col3","isVisible":true,"label":"Col 3","originalIdentifier":"col3","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":2.0,"isDisabled":false,"sourceData":9.0,"cellBoxShadow":"none","fieldType":"Number Input"},"col1":{"labelTextSize":"0.875rem","identifier":"col1","boxShadow":"none","isRequired":false,"isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col1))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"number","accessor":"col1","isVisible":true,"label":"Col 1","originalIdentifier":"col1","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":0.0,"isDisabled":false,"sourceData":5.0,"fieldType":"Number Input"}},"position":-1.0,"isDisabled":false,"sourceData":{"col4":true,"col2":"skill B","col3":9.0,"col1":5.0},"cellBoxShadow":"none","fieldType":"Object"}},"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 Row","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__.children.col3.defaultValue"},{"key":"schema.__root_schema__.children.col4.defaultValue"},{"key":"schema.__root_schema__.children.col5.defaultValue"},{"key":"schema.__root_schema__.children.col2.defaultValue"},{"key":"schema.__root_schema__.children.col6.defaultValue"},{"key":"schema.__root_schema__.children.col7.defaultValue"},{"key":"schema.__root_schema__.children.col8.defaultValue"},{"key":"schema.__root_schema__.children.col9.defaultValue"},{"key":"schema.__root_schema__.children.col10.defaultValue"},{"key":"schema.__root_schema__.children.col11.defaultValue"},{"key":"schema.__root_schema__.children.col12.defaultValue"},{"key":"schema.__root_schema__.children.col5.accentColor"},{"key":"schema.__root_schema__.children.col5.borderRadius"},{"key":"schema.__root_schema__.borderRadius"},{"key":"schema.__root_schema__.cellBorderRadius"},{"key":"schema.__root_schema__.children.col1.defaultValue"},{"key":"schema.__root_schema__.children.col1.accentColor"},{"key":"schema.__root_schema__.children.col1.borderRadius"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"submitButtonStyles.buttonColor"},{"key":"submitButtonStyles.borderRadius"},{"key":"resetButtonStyles.borderRadius"},{"key":"resetButtonStyles.buttonColor"},{"key":"schema.__root_schema__.children.col2.accentColor"},{"key":"schema.__root_schema__.children.col2.borderRadius"},{"key":"schema.__root_schema__.children.col3.accentColor"},{"key":"schema.__root_schema__.children.col3.borderRadius"},{"key":"schema.__root_schema__.children.col4.accentColor"},{"key":"schema.__root_schema__.children.col6.accentColor"},{"key":"schema.__root_schema__.children.col6.borderRadius"},{"key":"schema.__root_schema__.children.col7.accentColor"},{"key":"schema.__root_schema__.children.col7.borderRadius"},{"key":"schema.__root_schema__.children.col8.accentColor"},{"key":"schema.__root_schema__.children.col8.borderRadius"},{"key":"schema.__root_schema__.children.col9.accentColor"},{"key":"schema.__root_schema__.children.col9.borderRadius"},{"key":"schema.__root_schema__.children.col10.accentColor"},{"key":"schema.__root_schema__.children.col10.borderRadius"},{"key":"schema.__root_schema__.children.col11.accentColor"},{"key":"schema.__root_schema__.children.col11.borderRadius"},{"key":"schema.__root_schema__.children.col12.accentColor"},{"key":"schema.__root_schema__.children.col12.borderRadius"}],"sourceData":"{{_.omit(data_table.tableData[0], \"customColumn1\", \"__primaryKey__\")}}","showReset":true,"resetButtonLabel":"Reset","key":"h9l9ozr8op","labelTextSize":"0.875rem","backgroundColor":"#fff","rightColumn":64.0,"dynamicHeight":"FIXED","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}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"vmorzie6eq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"width":532.0,"minDynamicHeight":4.0}]},"layoutOnLoadActions":[[{"id":"Run log_SelectQuery","name":"SelectQuery","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0}]],"layoutOnLoadActionErrors":[],"validOnPageLoadActions":true,"id":"Run log","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":true},"publishedPage":{"name":"Run log","slug":"run-log","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":69.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":1060.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":7.0,"bottomRow":11.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":"Run log","labelTextSize":"0.875rem","rightColumn":10.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"1.5rem","minDynamicHeight":4.0},{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"#93c5fd","widgetId":"xp5u9a9nzq","topRow":7.0,"bottomRow":11.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":62.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":11.0,"isSortable":true,"onPageChange":"{{SelectQuery.run()}}","type":"TABLE_WIDGET","animateLoading":true,"dynamicBindingPathList":[{"key":"tableData"},{"key":"accentColor"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"primaryColumns.Run_date.computedValue"},{"key":"primaryColumns.Rows_tested.computedValue"},{"key":"primaryColumns.Rows_failed.computedValue"},{"key":"primaryColumns._fail.computedValue"},{"key":"primaryColumns.Run_id.computedValue"},{"key":"primaryColumns.Project_id.computedValue"},{"key":"derivedColumns.customColumn1.boxShadow"},{"key":"primaryColumns.customColumn1.boxShadow"},{"key":"derivedColumns.customColumn1.borderRadius"},{"key":"primaryColumns.customColumn1.borderRadius"},{"key":"derivedColumns.customColumn1.buttonLabel"},{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"primaryColumns.Run_status.computedValue"},{"key":"primaryColumns.Run_error.computedValue"},{"key":"derivedColumns.customColumn1.isCellVisible"},{"key":"primaryColumns.customColumn1.isCellVisible"}],"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":"run_id","columnSizeMap":{"task":245.0,"step":62.0,"status":75.0,"run_start":226.0,"run_finish":224.0,"run_id":150.0,"Run_date":268.0},"widgetName":"data_table","defaultPageSize":0.0,"columnOrder":["Run_date","Project_id","customColumn1","Rows_tested","Rows_failed","_fail","Run_id","Run_status","Run_error"],"dynamicPropertyPathList":[{"key":"primaryColumns.customColumn1.onClick"},{"key":"primaryColumns.customColumn1.isCellVisible"}],"displayName":"Table","bottomRow":104.0,"parentRowSpace":10.0,"defaultSelectedRow":"0","hideCard":false,"parentColumnSpace":16.3125,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"onSearchTextChanged"},{"key":"onSort"},{"key":"primaryColumns.customColumn1.onClick"}],"primaryColumns":{"Run_date":{"index":0.0,"width":150.0,"id":"Run_date","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Run date","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_date))}}","cellBackground":""},"Rows_tested":{"index":2.0,"width":150.0,"id":"Rows_tested","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Rows tested","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_tested))}}","cellBackground":""},"Rows_failed":{"index":3.0,"width":150.0,"id":"Rows_failed","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Rows failed","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed))}}","cellBackground":""},"_fail":{"index":4.0,"width":150.0,"id":"_fail","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"% fail","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow._fail))}}","cellBackground":""},"Run_id":{"index":5.0,"width":150.0,"id":"Run_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Run id","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_id))}}","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":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Project_id))}}","cellBackground":""},"customColumn1":{"index":6.0,"width":150.0,"id":"customColumn1","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isDerived":true,"label":"Run results","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":"#3b82f6","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'View'))}}","buttonVariant":"TERTIARY","onClick":"{{navigateTo('Run results',{\"run_id\":data_table.selectedRow.Run_id, \"run_date\":data_table.selectedRow.Run_date})}}","isCellVisible":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_status == \"Finished\" ? true : false))}}"},"Run_status":{"index":6.0,"width":150.0,"id":"Run_status","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Run_status","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_status))}}","cellBackground":""},"Run_error":{"index":7.0,"width":150.0,"id":"Run_error","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"Run_error","computedValue":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_error))}}","cellBackground":""}},"key":"zba5qel0au","derivedColumns":{"customColumn1":{"index":6.0,"width":150.0,"id":"customColumn1","columnType":"button","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isDerived":true,"label":"Run results","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":"#3b82f6","iconName":"","buttonLabel":"{{data_table.sanitizedTableData.map((currentRow) => ( 'View'))}}","buttonVariant":"TERTIARY","onClick":"{{navigateTo('Run results', {})}}","isCellVisible":"{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_status == \"Finished\" ? true : false))}}"}},"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":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container2","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg","searchTags":["div","parent","group"],"topRow":0.0,"bottomRow":6.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas5","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":[{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"}],"leftColumn":3.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":11.0,"iconName":"timeline-line-chart","menuVariant":"TERTIARY","widgetId":"81s53a2wqj","menuItems":{"menuItem1":{"label":"Run log","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Run log', {})}}"},"menuItem2":{"label":"Trends","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0}},"isVisible":true,"label":"Run monitoring","version":1.0,"parentId":"phekdiq45y","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1Copy","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"},{"key":"menuItems.menuItem2.onClick"},{"key":"menuItems.menuItem5clg3sf596.onClick"},{"key":"menuItems.menuItemzhze0we924.onClick"}],"leftColumn":11.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":24.0,"iconName":"settings","menuVariant":"TERTIARY","widgetId":"zqzg4hujok","menuItems":{"menuItem1":{"label":"Tests","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Tests', {})}}"},"menuItem2":{"label":"Entities","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0,"onClick":"{{navigateTo('Entities', {})}}"},"menuItem5clg3sf596":{"id":"menuItem5clg3sf596","index":2.0,"label":"Categories","widgetId":"xj72wvs7rg","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Categories', {})}}"},"menuItemzhze0we924":{"id":"menuItemzhze0we924","index":3.0,"label":"Projects","widgetId":"ail7gs5wwr","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Projects', {})}}"}},"isVisible":true,"label":"Configuration","version":1.0,"parentId":"phekdiq45y","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"widgetName":"Text17","borderColor":"#fff","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"DOT","key":"14w22nnzm7","isDeprecated":false,"rightColumn":3.0,"backgroundColor":"#f79113","textAlign":"CENTER","dynamicHeight":"FIXED","widgetId":"xuq65qjv6f","isVisible":true,"fontStyle":"BOLD","textColor":"#fff","version":1.0,"parentId":"phekdiq45y","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"fontSize":"0.975rem","minDynamicHeight":4.0}],"key":"zdu4x20wju","isDeprecated":false,"rightColumn":471.0,"detachFromLayout":true,"widgetId":"phekdiq45y","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"h9nyfo3qfn","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"borderWidth":"0","key":"nymtbn27w8","backgroundColor":"#3730a3","isDeprecated":false,"rightColumn":64.0,"dynamicHeight":"FIXED","widgetId":"h9nyfo3qfn","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0}]}],"borderWidth":"0","labelTextSize":"0.875rem","backgroundColor":"#fafafa","rightColumn":64.0,"dynamicHeight":"FIXED","widgetId":"mvubsemxfo","containerStyle":"card","isVisible":"true","version":1.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0},{"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","dynamicHeight":"FIXED","widgetId":"35yoxo4oec","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"1.5rem","minDynamicHeight":4.0},{"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":[],"text":"Are you sure you want to delete this item?","labelTextSize":"0.875rem","rightColumn":63.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"48uac29g6e","isVisible":"true","fontStyle":"","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"1rem","minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"i3whp03wf0","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"width":456.0,"minDynamicHeight":4.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__":{"labelTextSize":"0.875rem","identifier":"__root_schema__","boxShadow":"none","isRequired":false,"isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","dataType":"object","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","accessor":"__root_schema__","isVisible":true,"label":"","originalIdentifier":"__root_schema__","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{"col8":{"labelTextSize":"0.875rem","identifier":"col8","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col8))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col8","isVisible":true,"label":"Col 8","originalIdentifier":"col8","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":7.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col12":{"labelTextSize":"0.875rem","identifier":"col12","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col12))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col12","isVisible":true,"label":"Col 12","originalIdentifier":"col12","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":11.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col9":{"labelTextSize":"0.875rem","identifier":"col9","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col9))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col9","isVisible":true,"label":"Col 9","originalIdentifier":"col9","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":8.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col11":{"labelTextSize":"0.875rem","identifier":"col11","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col11))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col11","isVisible":true,"label":"Col 11","originalIdentifier":"col11","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":10.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col6":{"labelTextSize":"0.875rem","identifier":"col6","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col6))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col6","isVisible":true,"label":"Col 6","originalIdentifier":"col6","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":5.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col10":{"labelTextSize":"0.875rem","identifier":"col10","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col10))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col10","isVisible":true,"label":"Col 10","originalIdentifier":"col10","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":9.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col7":{"labelTextSize":"0.875rem","identifier":"col7","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col7))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"null","cellBorderRadius":"0px","accessor":"col7","isVisible":true,"label":"Col 7","originalIdentifier":"col7","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":6.0,"isDisabled":false,"cellBoxShadow":"none","fieldType":"Text Input"},"col4":{"labelTextSize":"0.875rem","identifier":"col4","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col4))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"boolean","cellBorderRadius":"0px","accessor":"col4","isVisible":true,"label":"Col 4","alignWidget":"LEFT","originalIdentifier":"col4","borderRadius":"0px","children":{},"position":3.0,"isDisabled":false,"sourceData":true,"cellBoxShadow":"none","fieldType":"Switch"},"col5":{"labelTextSize":"0.875rem","identifier":"col5","boxShadow":"none","isRequired":false,"isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col5))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"number","accessor":"col5","isVisible":true,"label":"Col 5","originalIdentifier":"col5","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":4.0,"isDisabled":false,"fieldType":"Number Input"},"col2":{"labelTextSize":"0.875rem","identifier":"col2","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col2))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"string","cellBorderRadius":"0px","accessor":"col2","isVisible":true,"label":"Col 2","originalIdentifier":"col2","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":1.0,"isDisabled":false,"sourceData":"skill B","cellBoxShadow":"none","fieldType":"Text Input"},"col3":{"labelTextSize":"0.875rem","identifier":"col3","isRequired":false,"boxShadow":"none","isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col3))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"number","cellBorderRadius":"0px","accessor":"col3","isVisible":true,"label":"Col 3","originalIdentifier":"col3","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":2.0,"isDisabled":false,"sourceData":9.0,"cellBoxShadow":"none","fieldType":"Number Input"},"col1":{"labelTextSize":"0.875rem","identifier":"col1","boxShadow":"none","isRequired":false,"isCustomField":false,"defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.col1))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}","accentColor":"{{appsmith.theme.colors.primaryColor}}","dataType":"number","accessor":"col1","isVisible":true,"label":"Col 1","originalIdentifier":"col1","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","children":{},"isSpellCheck":false,"iconAlign":"left","position":0.0,"isDisabled":false,"sourceData":5.0,"fieldType":"Number Input"}},"position":-1.0,"isDisabled":false,"sourceData":{"col4":true,"col2":"skill B","col3":9.0,"col1":5.0},"cellBoxShadow":"none","fieldType":"Object"}},"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 Row","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__.children.col3.defaultValue"},{"key":"schema.__root_schema__.children.col4.defaultValue"},{"key":"schema.__root_schema__.children.col5.defaultValue"},{"key":"schema.__root_schema__.children.col2.defaultValue"},{"key":"schema.__root_schema__.children.col6.defaultValue"},{"key":"schema.__root_schema__.children.col7.defaultValue"},{"key":"schema.__root_schema__.children.col8.defaultValue"},{"key":"schema.__root_schema__.children.col9.defaultValue"},{"key":"schema.__root_schema__.children.col10.defaultValue"},{"key":"schema.__root_schema__.children.col11.defaultValue"},{"key":"schema.__root_schema__.children.col12.defaultValue"},{"key":"schema.__root_schema__.children.col5.accentColor"},{"key":"schema.__root_schema__.children.col5.borderRadius"},{"key":"schema.__root_schema__.borderRadius"},{"key":"schema.__root_schema__.cellBorderRadius"},{"key":"schema.__root_schema__.children.col1.defaultValue"},{"key":"schema.__root_schema__.children.col1.accentColor"},{"key":"schema.__root_schema__.children.col1.borderRadius"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"submitButtonStyles.buttonColor"},{"key":"submitButtonStyles.borderRadius"},{"key":"resetButtonStyles.borderRadius"},{"key":"resetButtonStyles.buttonColor"},{"key":"schema.__root_schema__.children.col2.accentColor"},{"key":"schema.__root_schema__.children.col2.borderRadius"},{"key":"schema.__root_schema__.children.col3.accentColor"},{"key":"schema.__root_schema__.children.col3.borderRadius"},{"key":"schema.__root_schema__.children.col4.accentColor"},{"key":"schema.__root_schema__.children.col6.accentColor"},{"key":"schema.__root_schema__.children.col6.borderRadius"},{"key":"schema.__root_schema__.children.col7.accentColor"},{"key":"schema.__root_schema__.children.col7.borderRadius"},{"key":"schema.__root_schema__.children.col8.accentColor"},{"key":"schema.__root_schema__.children.col8.borderRadius"},{"key":"schema.__root_schema__.children.col9.accentColor"},{"key":"schema.__root_schema__.children.col9.borderRadius"},{"key":"schema.__root_schema__.children.col10.accentColor"},{"key":"schema.__root_schema__.children.col10.borderRadius"},{"key":"schema.__root_schema__.children.col11.accentColor"},{"key":"schema.__root_schema__.children.col11.borderRadius"},{"key":"schema.__root_schema__.children.col12.accentColor"},{"key":"schema.__root_schema__.children.col12.borderRadius"}],"sourceData":"{{_.omit(data_table.tableData[0], \"customColumn1\", \"__primaryKey__\")}}","showReset":true,"resetButtonLabel":"Reset","key":"h9l9ozr8op","labelTextSize":"0.875rem","backgroundColor":"#fff","rightColumn":64.0,"dynamicHeight":"FIXED","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}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"vmorzie6eq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"width":532.0,"minDynamicHeight":4.0}]},"layoutOnLoadActions":[[{"id":"Run log_SelectQuery","name":"SelectQuery","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0}]],"layoutOnLoadActionErrors":[],"validOnPageLoadActions":true,"id":"Run log","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":true},"deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781833b"},{"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":1000.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":98.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":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container2","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg","searchTags":["div","parent","group"],"topRow":0.0,"bottomRow":6.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas5Copy","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":[{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"}],"leftColumn":3.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":11.0,"iconName":"timeline-line-chart","menuVariant":"TERTIARY","widgetId":"r6mleco87b","menuItems":{"menuItem1":{"label":"Run log","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Run log', {})}}"},"menuItem2":{"label":"Trends","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0}},"isVisible":true,"label":"Run monitoring","version":1.0,"parentId":"a5uo8h2s6n","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1Copy","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"},{"key":"menuItems.menuItem2.onClick"},{"key":"menuItems.menuItem5clg3sf596.onClick"},{"key":"menuItems.menuItemzhze0we924.onClick"}],"leftColumn":11.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":19.0,"iconName":"settings","menuVariant":"TERTIARY","widgetId":"bel06ytkbw","menuItems":{"menuItem1":{"label":"Tests","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Tests', {})}}"},"menuItem2":{"label":"Entities","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0,"onClick":"{{navigateTo('Entities', {})}}"},"menuItem5clg3sf596":{"id":"menuItem5clg3sf596","index":2.0,"label":"Categories","widgetId":"xj72wvs7rg","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Categories', {})}}"},"menuItemzhze0we924":{"id":"menuItemzhze0we924","index":3.0,"label":"Projects","widgetId":"ail7gs5wwr","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Projects', {})}}"}},"isVisible":true,"label":"Configuration","version":1.0,"parentId":"a5uo8h2s6n","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"widgetName":"Text17Copy","borderColor":"#fff","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"DOT","key":"14w22nnzm7","isDeprecated":false,"rightColumn":3.0,"backgroundColor":"#f79113","textAlign":"CENTER","widgetId":"zh7xuknjgh","isVisible":true,"fontStyle":"BOLD","textColor":"#fff","version":1.0,"parentId":"a5uo8h2s6n","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.975rem"}],"key":"zdu4x20wju","isDeprecated":false,"rightColumn":471.0,"detachFromLayout":true,"widgetId":"a5uo8h2s6n","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"82z7snagh7","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"borderWidth":"0","key":"nymtbn27w8","backgroundColor":"#3730a3","isDeprecated":false,"rightColumn":64.0,"widgetId":"82z7snagh7","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"IconButton2","onClick":"{{showModal('Help_Categories')}}","buttonColor":"#a1a1aa","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":7.0,"bottomRow":11.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":7.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":9.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":7.0,"bottomRow":11.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":7.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":"#93c5fd","widgetId":"xp5u9a9nzq","topRow":7.0,"bottomRow":11.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":62.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":11.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":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"},"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":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":51.0,"dynamicBindingPathList":[],"text":"Add category","isDisabled":"","key":"2ob5jed9vo","rightColumn":62.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":"#fafafa","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":18.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":18.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":18.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":true},"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":1000.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":98.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":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container2","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg","searchTags":["div","parent","group"],"topRow":0.0,"bottomRow":6.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas5Copy","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":[{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"}],"leftColumn":3.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":11.0,"iconName":"timeline-line-chart","menuVariant":"TERTIARY","widgetId":"r6mleco87b","menuItems":{"menuItem1":{"label":"Run log","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Run log', {})}}"},"menuItem2":{"label":"Trends","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0}},"isVisible":true,"label":"Run monitoring","version":1.0,"parentId":"a5uo8h2s6n","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1Copy","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"},{"key":"menuItems.menuItem2.onClick"},{"key":"menuItems.menuItem5clg3sf596.onClick"},{"key":"menuItems.menuItemzhze0we924.onClick"}],"leftColumn":11.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":19.0,"iconName":"settings","menuVariant":"TERTIARY","widgetId":"bel06ytkbw","menuItems":{"menuItem1":{"label":"Tests","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Tests', {})}}"},"menuItem2":{"label":"Entities","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0,"onClick":"{{navigateTo('Entities', {})}}"},"menuItem5clg3sf596":{"id":"menuItem5clg3sf596","index":2.0,"label":"Categories","widgetId":"xj72wvs7rg","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Categories', {})}}"},"menuItemzhze0we924":{"id":"menuItemzhze0we924","index":3.0,"label":"Projects","widgetId":"ail7gs5wwr","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Projects', {})}}"}},"isVisible":true,"label":"Configuration","version":1.0,"parentId":"a5uo8h2s6n","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"widgetName":"Text17Copy","borderColor":"#fff","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"DOT","key":"14w22nnzm7","isDeprecated":false,"rightColumn":3.0,"backgroundColor":"#f79113","textAlign":"CENTER","widgetId":"zh7xuknjgh","isVisible":true,"fontStyle":"BOLD","textColor":"#fff","version":1.0,"parentId":"a5uo8h2s6n","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","fontSize":"0.975rem"}],"key":"zdu4x20wju","isDeprecated":false,"rightColumn":471.0,"detachFromLayout":true,"widgetId":"a5uo8h2s6n","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"82z7snagh7","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"borderWidth":"0","key":"nymtbn27w8","backgroundColor":"#3730a3","isDeprecated":false,"rightColumn":64.0,"widgetId":"82z7snagh7","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},{"boxShadow":"none","widgetName":"IconButton2","onClick":"{{showModal('Help_Categories')}}","buttonColor":"#a1a1aa","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":7.0,"bottomRow":11.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":7.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"isDisabled":false,"key":"zgwqqdr0d5","isDeprecated":false,"rightColumn":9.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":7.0,"bottomRow":11.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":7.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":"#93c5fd","widgetId":"xp5u9a9nzq","topRow":7.0,"bottomRow":11.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":62.0,"dynamicBindingPathList":[{"key":"borderRadius"}],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","onSort":"{{SelectQuery.run()}}","isVisibleDownload":true,"iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":11.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":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"},"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":7.0,"bottomRow":11.0,"parentRowSpace":10.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":51.0,"dynamicBindingPathList":[],"text":"Add category","isDisabled":"","key":"2ob5jed9vo","rightColumn":62.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":"#fafafa","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":18.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":18.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":18.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":true},"deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818340"},{"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":69.0,"minHeight":1130.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"boxShadow":"none","widgetName":"Configured_Tests_Container","topRow":0.0,"bottomRow":106.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":1030.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":"#a1a1aa","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":7.0,"bottomRow":11.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":"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('Edit_Add_Test_Form');storeValue(\"test_action\",\"Add\", false);Entities_dropdown.run();\nshowModal('Edit_Add_Test_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"},{"key":"onClick"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":11.0,"bottomRow":15.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"},{"key":"isVisible"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":11.0,"bottomRow":15.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":"tooltip"},{"key":"isDisabled"},{"key":"isVisible"}],"text":"Delete tests","isDisabled":"{{!JSFunctions.allowUpdate()}}","key":"2ob5jed9vo","rightColumn":51.0,"isDefaultClickDisabled":true,"widgetId":"m8gxn5vx3a","isVisible":"{{JSFunctions.allowUpdate()}}","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","entity_id","test_type","test_id","scenario_id","priority","impact","proposed_remediation","entity_id","column_name","column_description","test_parameters","date_added","date_modified","last_updated_by","test_params_all_json"],"dynamicPropertyPathList":[{"key":"onPageChange"},{"key":"onRowSelected"},{"key":"primaryColumns.customColumn2.onClick"}],"isVisibleDownload":true,"topRow":15.0,"bottomRow":101.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":"primaryColumns.test_params_all_json.computedValue"},{"key":"primaryColumns.entity_id.computedValue"},{"key":"primaryColumns.customColumn2.buttonColor"},{"key":"primaryColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.last_updated_by.computedValue"},{"key":"primaryColumns.date_modified.computedValue"},{"key":"primaryColumns.date_added.computedValue"},{"key":"primaryColumns.test_parameters.computedValue"},{"key":"primaryColumns.column_description.computedValue"},{"key":"primaryColumns.column_name.computedValue"},{"key":"primaryColumns.test_type.computedValue"},{"key":"primaryColumns.entity_id.computedValue"},{"key":"primaryColumns.proposed_remediation.computedValue"},{"key":"primaryColumns.impact.computedValue"},{"key":"primaryColumns.description.computedValue"},{"key":"primaryColumns.priority.computedValue"},{"key":"primaryColumns.scenario_id.computedValue"},{"key":"primaryColumns.test_id.computedValue"},{"key":"primaryColumns.project_id.computedValue"},{"key":"primaryColumns.test_activated.computedValue"},{"key":"accentColor"}],"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); storeValue(\"test_action\",\"Edit\", false);Test_parameters_sample.run(); showModal('Edit_Add_Test_Modal')}}","buttonColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","buttonLabel":"{{configured_tests.sanitizedTableData.map((currentRow) => ( 'Edit'))}}","buttonVariant":"SECONDARY"},"entity_id":{"index":16.0,"width":150.0,"id":"entity_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.entity_id))}}","cellBackground":""},"test_params_all_json":{"index":17.0,"width":150.0,"id":"test_params_all_json","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_params_all_json","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_params_all_json))}}","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_Add_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_id":213.0,"project_id":102.0}},{"boxShadow":"none","widgetName":"order_by_label","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":11.0,"bottomRow":15.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":6.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"l8pgl90klz","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"0.80rem","minDynamicHeight":4.0},{"boxShadow":"none","widgetName":"title__main","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":7.0,"bottomRow":11.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":4.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"1.5rem","minDynamicHeight":4.0},{"boxShadow":"none","widgetName":"refresh_btn","onClick":"{{Configured_tests_data.run()}}","buttonColor":"#93c5fd","dynamicPropertyPathList":[{"key":"borderRadius"}],"topRow":11.0,"bottomRow":15.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":11.0,"bottomRow":15.0,"parentRowSpace":10.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"test_id","animateLoading":true,"parentColumnSpace":22.171875,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":6.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":19.0,"dynamicHeight":"FIXED","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","maxDynamicHeight":9000.0,"onOptionChange":"{{Configured_tests_data.run()}}","minDynamicHeight":4.0},{"boxShadow":"none","widgetName":"order_select","isFilterable":true,"dynamicPropertyPathList":[{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":11.0,"bottomRow":15.0,"parentRowSpace":10.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"ASC","animateLoading":true,"parentColumnSpace":22.171875,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19.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":28.0,"dynamicHeight":"FIXED","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","maxDynamicHeight":9000.0,"onOptionChange":"{{Configured_tests_data.run()}}","minDynamicHeight":4.0},{"boxShadow":"none","widgetName":"Bulk_update_Test_Activated","onClick":"{{showModal('Activate_Tests_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"},{"key":"isVisible"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":11.0,"bottomRow":15.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":"tooltip"},{"key":"isDisabled"},{"key":"isVisible"}],"text":"Activate/Deactivate tests","isDisabled":"{{!JSFunctions.allowUpdate()}}","key":"2ob5jed9vo","rightColumn":40.0,"isDefaultClickDisabled":true,"widgetId":"7puon64f02","isVisible":"{{JSFunctions.allowUpdate()}}","recaptchaType":"V3","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container2","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg","searchTags":["div","parent","group"],"topRow":0.0,"bottomRow":6.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas5","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":[{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"}],"leftColumn":3.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":11.0,"iconName":"timeline-line-chart","menuVariant":"TERTIARY","widgetId":"al32p7pd29","menuItems":{"menuItem1":{"label":"Run log","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Run log', {})}}"},"menuItem2":{"label":"Trends","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0}},"isVisible":true,"label":"Run monitoring","version":1.0,"parentId":"1s66echqo8","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1Copy","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"},{"key":"menuItems.menuItem2.onClick"},{"key":"menuItems.menuItem5clg3sf596.onClick"},{"key":"menuItems.menuItemzhze0we924.onClick"}],"leftColumn":11.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":19.0,"iconName":"settings","menuVariant":"TERTIARY","widgetId":"ubzttrj6le","menuItems":{"menuItem1":{"label":"Tests","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Tests', {})}}"},"menuItem2":{"label":"Entities","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0,"onClick":"{{navigateTo('Entities', {})}}"},"menuItem5clg3sf596":{"id":"menuItem5clg3sf596","index":2.0,"label":"Categories","widgetId":"xj72wvs7rg","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Categories', {})}}"},"menuItemzhze0we924":{"id":"menuItemzhze0we924","index":3.0,"label":"Projects","widgetId":"ail7gs5wwr","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Projects', {})}}"}},"isVisible":true,"label":"Configuration","version":1.0,"parentId":"1s66echqo8","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"widgetName":"Text17","borderColor":"#fff","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"DOT","key":"14w22nnzm7","isDeprecated":false,"rightColumn":3.0,"backgroundColor":"#f79113","textAlign":"CENTER","dynamicHeight":"FIXED","widgetId":"atr47dntub","isVisible":true,"fontStyle":"BOLD","textColor":"#fff","version":1.0,"parentId":"1s66echqo8","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"fontSize":"0.975rem","minDynamicHeight":4.0}],"key":"zdu4x20wju","isDeprecated":false,"rightColumn":471.0,"detachFromLayout":true,"widgetId":"1s66echqo8","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"ynvv850qlw","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"borderWidth":"0","key":"nymtbn27w8","backgroundColor":"#3730a3","isDeprecated":false,"rightColumn":64.0,"dynamicHeight":"FIXED","widgetId":"ynvv850qlw","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0}]}],"labelTextSize":"0.875rem","backgroundColor":"#fafafa","rightColumn":64.0,"dynamicHeight":"FIXED","widgetId":"mvubsemxfo","containerStyle":"card","isVisible":"true","version":1.0,"parentId":"0","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"minDynamicHeight":4.0},{"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","dynamicHeight":"FIXED","widgetId":"fixqpc5ejk","isVisible":"true","fontStyle":"ITALIC","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"0.875rem","minDynamicHeight":4.0},{"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","dynamicHeight":"FIXED","widgetId":"35yoxo4oec","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"1.5rem","minDynamicHeight":4.0},{"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","dynamicHeight":"FIXED","widgetId":"48uac29g6e","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"0.875rem","minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"i3whp03wf0","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"0px","maxDynamicHeight":9000.0,"width":456.0,"minDynamicHeight":4.0},{"boxShadow":"none","widgetName":"Edit_Add_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":[],"children":[{"boxShadow":"none","widgetName":"close_icon","onClick":"{{closeModal('Edit_Add_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":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"text"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"{{appsmith.store.test_action}} Test","key":"oq4bpr35vs","rightColumn":10.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"57kk9tsddv","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"je98hr71pu","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"fontSize":"1.5rem","minDynamicHeight":4.0},{"schema":{"__root_schema__":{"children":{"test_activated":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.test_activated == '✓' || appsmith.store.test_action == 'Add' ? true : false))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Switch","sourceData":"✓","isCustomField":false,"accessor":"test_activated","identifier":"test_activated","position":0.0,"originalIdentifier":"test_activated","accentColor":"{{appsmith.theme.colors.primaryColor}}","boxShadow":"none","alignWidget":"LEFT","isDisabled":false,"isRequired":false,"isVisible":true,"labelTextSize":"0.875rem","label":"On/Off"},"project_id":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.project_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"Muso","isCustomField":false,"accessor":"project_id","identifier":"project_id","position":1.0,"originalIdentifier":"project_id","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":true,"isVisible":true,"label":"Project Id","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Projects_dropdown.data}}"},"test_id":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.test_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"58dac7c9-03e7-3a29-a34c-c4454337b641","isCustomField":false,"accessor":"test_id","identifier":"test_id","position":13.0,"originalIdentifier":"test_id","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":true,"isRequired":false,"isSpellCheck":false,"isVisible":"{{((sourceData, formData, fieldState) => (appsmith.store.test_action == 'Edit'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Test Id"},"scenario_id":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.scenario_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"INCONSISTENT-1","isCustomField":false,"accessor":"scenario_id","identifier":"scenario_id","position":7.0,"originalIdentifier":"scenario_id","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":true,"isVisible":true,"label":"Scenario Id","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Scenario_dropdown.data}}"},"priority":{"children":{},"dataType":"number","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.priority.toString()))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Number Input","sourceData":3.0,"isCustomField":false,"accessor":"priority","identifier":"priority","position":8.0,"originalIdentifier":"priority","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":true,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Priority","minNum":"1","maxNum":"10"},"description":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.description))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Multiline Text Input","sourceData":"Disallowed FP methods entered in form","isCustomField":false,"accessor":"description","identifier":"description","position":2.0,"originalIdentifier":"description","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":true,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Description"},"impact":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.impact))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"","isCustomField":false,"accessor":"impact","identifier":"impact","position":9.0,"originalIdentifier":"impact","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Impact"},"proposed_remediation":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.proposed_remediation))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"","isCustomField":false,"accessor":"proposed_remediation","identifier":"proposed_remediation","position":10.0,"originalIdentifier":"proposed_remediation","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Proposed Remediation"},"entity_id":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"569b9515-eb80-39ab-a537-f6ef571dee64","isCustomField":false,"accessor":"entity_id","identifier":"entity_id","position":11.0,"originalIdentifier":"entity_id","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Entity Id"},"test_type":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.test_type))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"accepted_values","isCustomField":false,"accessor":"test_type","identifier":"test_type","position":3.0,"originalIdentifier":"test_type","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":true,"isVisible":"true","label":"Test Type","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Testtypes_dropdown.data}}","onOptionChange":"{{Test_parameters_sample.run(); Entities_dropdown.run()}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestTypeDescription(Edit_Add_Test_Form.formData.test_type)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"column_name":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.column_name ))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"fp_method_being_used","isCustomField":false,"accessor":"column_name","identifier":"column_name","position":5.0,"originalIdentifier":"column_name","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (JSFunctions.testUsesColumn(formData.test_type)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Column Name","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, undefined) }}","placeholderText":"{{((sourceData, formData, fieldState) => (`Select a column from the entity`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"column_description":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.column_description))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"","isCustomField":false,"accessor":"column_description","identifier":"column_description","position":12.0,"originalIdentifier":"column_description","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Column Description"},"test_parameters":{"children":{"values":{"children":{},"dataType":"array","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.test_parameters == undefined ? '' : sourceData.test_parameters.values))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Multiselect","sourceData":["oral mini-pill (progestogen)","male condom","female sterilization","iud","oral combination pill","implants","injectible"],"isCustomField":false,"accessor":"values","identifier":"values","position":0.0,"originalIdentifier":"values","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":true,"label":"Values","labelTextSize":"0.875rem","serverSideFiltering":false,"options":[{"label":"Blue","value":"BLUE"},{"label":"Green","value":"GREEN"},{"label":"Red","value":"RED"}]}},"dataType":"object","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.test_parameters))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Object","sourceData":{"values":["oral mini-pill (progestogen)","male condom","female sterilization","iud","oral combination pill","implants","injectible"]},"isCustomField":false,"accessor":"test_parameters","identifier":"test_parameters","position":18.0,"originalIdentifier":"test_parameters","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none","isDisabled":false,"isRequired":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Test Parameters raw json"},"date_added":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.date_added))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"2022-07-02T18:43:16.020555Z","isCustomField":false,"accessor":"date_added","identifier":"date_added","position":14.0,"originalIdentifier":"date_added","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":true,"isRequired":false,"isSpellCheck":false,"isVisible":"{{((sourceData, formData, fieldState) => (appsmith.store.test_action == 'Edit'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Date Added"},"date_modified":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.date_modified))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"2022-07-02T18:43:16.020555Z","isCustomField":false,"accessor":"date_modified","identifier":"date_modified","position":15.0,"originalIdentifier":"date_modified","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":true,"isRequired":false,"isSpellCheck":false,"isVisible":"{{((sourceData, formData, fieldState) => (appsmith.store.test_action == 'Edit'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Date Modified"},"last_updated_by":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.last_updated_by))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"Example","isCustomField":false,"accessor":"last_updated_by","identifier":"last_updated_by","position":16.0,"originalIdentifier":"last_updated_by","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":true,"isRequired":false,"isSpellCheck":false,"isVisible":"{{((sourceData, formData, fieldState) => (appsmith.store.test_action == 'Edit'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Last Updated By"},"entity_id":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"fpview_registration","isCustomField":false,"accessor":"entity_id","identifier":"entity_id","position":4.0,"originalIdentifier":"entity_id","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":true,"label":"Entity Name","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Entities_dropdown.data}}"},"test_params_all_json":{"children":{"custom_sql___query":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.query\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Multiline Text Input","sourceData":"SELECT field1, field2, 'table1' as \"primary_table\", 'field1' as \"primary_table_id_field\" WHERE COLOR='green'","isCustomField":false,"accessor":"query","identifier":"custom_sql___query","position":0.0,"originalIdentifier":"custom_sql%%%query","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'custom_sql'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Custom Sql Query","placeholderText":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterExample('query').replace(/\\\\/g,'')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('query')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"relationships___field":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.field\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"uuid","isCustomField":false,"accessor":"field","identifier":"relationships___field","position":2.0,"originalIdentifier":"relationships%%%field","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (Edit_Add_Test_Form.formData.test_type == \"relationships\"))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Reference Field","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Edit_Add_Test_Form.formData.form_test_parameters != undefined && Edit_Add_Test_Form.formData.form_test_parameters.to != undefined ? JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,undefined, Edit_Add_Test_Form.formData.form_test_parameters.to.replace(\"ref('dot_model__\",\"\").replace(\"')\",\"\")) : [] }}","placeholderText":"","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('field')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"accepted_values___values":{"children":{"__array_item__":{"children":{},"dataType":"string","fieldType":"Text Input","sourceData":"dog","isCustomField":false,"accessor":"__array_item__","identifier":"__array_item__","position":-1.0,"originalIdentifier":"__array_item__","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"","defaultValue":"","placeholderText":"{{((sourceData, formData, fieldState) => (`Enter a value`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"}},"dataType":"array","defaultValue":"{{((sourceData, formData, fieldState) => ( formData.test_type == 'accepted_values' ?configured_tests.selectedRow.test_parameters.values : ''\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Array","sourceData":["dog","cat","ostrich"],"isCustomField":false,"accessor":"values","identifier":"accepted_values___values","position":3.0,"originalIdentifier":"accepted_values%%%values","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none","backgroundColor":"#FAFAFA","isCollapsible":false,"isDisabled":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'accepted_values'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Accepted Values ","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('values')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"relationships___reference":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.to\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"ref('dot_model__ancview_pregnancy')","isCustomField":false,"accessor":"to","identifier":"relationships___reference","position":1.0,"originalIdentifier":"relationships%%%reference","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (Edit_Add_Test_Form.formData.test_type == \"relationships\"))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Reference","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Entities_dropdown_dbt_ref_fmt.data}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('field')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"expression_is_true___condition":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.condition\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"(patient_age_in_months<24) and (malaria_give_act is not null)","isCustomField":false,"accessor":"condition","identifier":"expression_is_true___condition","position":4.0,"originalIdentifier":"expression_is_true%%%condition","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'expression_is_true'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Condition","placeholderText":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterExample('condition').replace(/\\\\/g,'')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('condition')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"expression_is_true___expression":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.expression\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"malaria_act_dosage is not null","isCustomField":false,"accessor":"expression","identifier":"expression_is_true___expression","position":5.0,"originalIdentifier":"expression_is_true%%%expression","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'expression_is_true'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Expression","placeholderText":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterExample('expression').replace(/\\\\/g,'')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('expression')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"expect_similar_means_across_reporters___key":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.key\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"reported_by","isCustomField":false,"accessor":"key","identifier":"expect_similar_means_across_reporters___key","position":6.0,"originalIdentifier":"expect_similar_means_across_reporters%%%key","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'expect_similar_means_across_reporters'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Key","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{\nJSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"text\")\n }}","placeholderText":"{{((sourceData, formData, fieldState) => (`Select a key field`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('key')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"possible_duplicate_forms___table_specific_uuid":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.table_specific_uuid\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"uuid","isCustomField":false,"accessor":"table_specific_uuid","identifier":"possible_duplicate_forms___table_specific_uuid","position":12.0,"originalIdentifier":"possible_duplicate_forms%%%table_specific_uuid","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'possible_duplicate_forms'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"UUID","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined) }}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('table_specific_uuid')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"expect_similar_means_across_reporters___quantity":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.quantity\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"temperature","isCustomField":false,"accessor":"quantity","identifier":"expect_similar_means_across_reporters___quantity","position":7.0,"originalIdentifier":"expect_similar_means_across_reporters%%%quantity","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'expect_similar_means_across_reporters'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Quantity field","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{\nJSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"real\").concat(\n\nJSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"double precision\")\n\n)\n }}","placeholderText":"{{((sourceData, formData, fieldState) => (`Select a numeric field`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('quantity')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"possible_duplicate_forms___table_specific_period":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.table_specific_period\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"day","isCustomField":false,"accessor":"table_specific_period","identifier":"possible_duplicate_forms___table_specific_period","position":10.0,"originalIdentifier":"possible_duplicate_forms%%%table_specific_period","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'possible_duplicate_forms'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Period","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"[\n {\n \"label\": \"hour\",\n \"value\": \"hour\"\n },\n {\n \"label\": \"day\",\n \"value\": \"day\"\n },\n {\n \"label\": \"week\",\n \"value\": \"week\"\n }\n]","placeholderText":"{{((sourceData, formData, fieldState) => (`hour, day or week`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('table_specific_period')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"expect_similar_means_across_reporters___form_name":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.form_name\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"dot_model__iccmview_assessment","isCustomField":false,"accessor":"data_table","identifier":"expect_similar_means_across_reporters___form_name","position":8.0,"originalIdentifier":"expect_similar_means_across_reporters%%%form_name","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'expect_similar_means_across_reporters'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Data Table","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Entities_dropdown_with_prefix.data}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('form_name')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"expect_similar_means_across_reporters___id_column":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.id_column\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"reported_by","isCustomField":false,"accessor":"id_column","identifier":"expect_similar_means_across_reporters___id_column","position":9.0,"originalIdentifier":"expect_similar_means_across_reporters%%%id_column","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'expect_similar_means_across_reporters'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Id Column","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined) }}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('id_column')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","placeholderText":""},"possible_duplicate_forms___table_specific_patient_uuid":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.table_specific_patient_uuid\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"patient_id","isCustomField":false,"accessor":"table_specific_patient_uuid","identifier":"possible_duplicate_forms___table_specific_patient_uuid","position":13.0,"originalIdentifier":"possible_duplicate_forms%%%table_specific_patient_uuid","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'possible_duplicate_forms'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Patient UUID","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined) }}","placeholderText":"{{((sourceData, formData, fieldState) => (`Patient id column`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('table_specific_patient_uuid')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"possible_duplicate_forms___table_specific_reported_date":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.table_specific_reported_date\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"reported","isCustomField":false,"accessor":"table_specific_reported_date","identifier":"possible_duplicate_forms___table_specific_reported_date","position":11.0,"originalIdentifier":"possible_duplicate_forms%%%table_specific_reported_date","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'possible_duplicate_forms'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Reported Date","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"timestamp with time zone\").concat(JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"date\").concat(JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"datetime\"))) }}","placeholderText":"{{((sourceData, formData, fieldState) => (sourceData.test_params_all_json[\"table_specific_reported_date\"]))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('table_specific_reported_date')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"}},"dataType":"object","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.test_params_all_json))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Object","sourceData":{"custom_sql%%%query":"SELECT field1, field2, 'table1' as \"primary_table\", 'field1' as \"primary_table_id_field\" WHERE COLOR='green'","relationships%%%field":"uuid","accepted_values%%%values":["dog","cat","ostrich"],"relationships%%%reference":"ref('dot_model__ancview_pregnancy')","expression_is_true%%%condition":"(patient_age_in_months<24) and (malaria_give_act is not null)","expression_is_true%%%expression":"malaria_act_dosage is not null","expect_similar_means_across_reporters%%%key":"reported_by","possible_duplicate_forms%%%table_specific_uuid":"uuid","expect_similar_means_across_reporters%%%quantity":"temperature","possible_duplicate_forms%%%table_specific_period":"day","expect_similar_means_across_reporters%%%form_name":"dot_model__iccmview_assessment","expect_similar_means_across_reporters%%%id_column":"reported_by","possible_duplicate_forms%%%table_specific_patient_uuid":"patient_id","possible_duplicate_forms%%%table_specific_reported_date":"reported"},"isCustomField":false,"accessor":"form_test_parameters","identifier":"test_params_all_json","position":6.0,"originalIdentifier":"test_params_all_json","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none","isDisabled":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (JSFunctions.testUsesParameters(formData.test_type)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Test Parameters"},"customColumn2":{"children":{},"dataType":"string","defaultValue":"","fieldType":"Text Input","sourceData":"","isCustomField":false,"accessor":"customColumn2","identifier":"customColumn2","position":17.0,"originalIdentifier":"customColumn2","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Custom Column 2"},"customField1":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (JSON.stringify(formData.form_test_parameters, null, 4)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Multiline Text Input","sourceData":"","isCustomField":true,"accessor":"form_test_parameters_string","identifier":"customField1","position":19.0,"originalIdentifier":"customField1","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":true,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Test Parameters JSON"},"customField2":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.test_parameters == undefined ? '' : JSON.stringify(sourceData.test_parameters,null,1)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Multiline Text Input","sourceData":"","isCustomField":true,"accessor":"source_data_test_parameters","identifier":"customField2","position":20.0,"originalIdentifier":"customField2","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":true,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Source data test parameters (debug)"}},"dataType":"object","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Object","sourceData":{"test_activated":"✓","project_id":"Muso","test_id":"58dac7c9-03e7-3a29-a34c-c4454337b641","scenario_id":"INCONSISTENT-1","priority":3.0,"description":"Disallowed FP methods entered in form","impact":"","proposed_remediation":"","entity_id":"569b9515-eb80-39ab-a537-f6ef571dee64","test_type":"accepted_values","column_name":"fp_method_being_used","column_description":"","test_parameters":{"values":["oral mini-pill (progestogen)","male condom","female sterilization","iud","oral combination pill","implants","injectible"]},"date_added":"2022-07-02T18:43:16.020555Z","date_modified":"2022-07-02T18:43:16.020555Z","last_updated_by":"Example","entity_id":"fpview_registration","test_params_all_json":{"custom_sql%%%query":"SELECT field1, field2, 'table1' as \"primary_table\", 'field1' as \"primary_table_id_field\" WHERE COLOR='green'","relationships%%%field":"uuid","accepted_values%%%values":["dog","cat","ostrich"],"relationships%%%reference":"ref('dot_model__ancview_pregnancy')","expression_is_true%%%condition":"(patient_age_in_months<24) and (malaria_give_act is not null)","expression_is_true%%%expression":"malaria_act_dosage is not null","expect_similar_means_across_reporters%%%key":"reported_by","possible_duplicate_forms%%%table_specific_uuid":"uuid","expect_similar_means_across_reporters%%%quantity":"temperature","possible_duplicate_forms%%%table_specific_period":"day","expect_similar_means_across_reporters%%%form_name":"dot_model__iccmview_assessment","expect_similar_means_across_reporters%%%id_column":"reported_by","possible_duplicate_forms%%%table_specific_patient_uuid":"patient_id","possible_duplicate_forms%%%table_specific_reported_date":"reported"},"customColumn2":""},"isCustomField":false,"accessor":"__root_schema__","identifier":"__root_schema__","position":-1.0,"originalIdentifier":"__root_schema__","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none","isDisabled":false,"isRequired":false,"isVisible":true,"labelTextSize":"0.875rem","label":""}},"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Edit_Add_Test_Form","submitButtonStyles":{"buttonColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","buttonVariant":"PRIMARY"},"dynamicPropertyPathList":[{"key":"schema.__root_schema__.children.date_of_birth.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.isVisible"},{"key":"schema.__root_schema__.children.test_type.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___field.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___reference.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_period.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_uuid.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_patient_uuid.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_reported_date.isVisible"},{"key":"schema.__root_schema__.children.test_activated.defaultValue"},{"key":"onSubmit"},{"key":"schema.__root_schema__.children.column_name.isVisible"},{"key":"isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.isVisible"},{"key":"schema.__root_schema__.children.test_type.onOptionChange"},{"key":"schema.__root_schema__.children.date_added.isVisible"},{"key":"schema.__root_schema__.children.date_modified.isVisible"},{"key":"schema.__root_schema__.children.last_updated_by.isVisible"},{"key":"schema.__root_schema__.children.test_id.isVisible"}],"displayName":"JSON Form","iconSVG":"/static/media/icon.5b428de1.svg","onSubmit":"{{ appsmith.store.test_action == 'Edit' ? Edit_Test.run(() => { Configured_tests_data.run() ;closeModal('Edit_Add_Test_Modal');resetWidget('configured_tests')}, (error) => showAlert(`Error while editing test! \\n ${error}`,'error')) : Add_Test.run(() => { Configured_tests_data.run() ;closeModal('Edit_Add_Test_Modal');resetWidget('configured_tests')}, (error) => showAlert(`Error while adding test! \\n ${error}`,'error'))}}","topRow":5.0,"bottomRow":74.0,"fieldLimitExceeded":false,"parentRowSpace":10.0,"title":"","type":"JSON_FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":16.6875,"dynamicTriggerPathList":[{"key":"onSubmit"},{"key":"schema.__root_schema__.children.test_type.onOptionChange"}],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"sourceData"},{"key":"schema.__root_schema__.children.customField2.borderRadius"},{"key":"schema.__root_schema__.children.customField2.accentColor"},{"key":"schema.__root_schema__.children.customField2.defaultValue"},{"key":"schema.__root_schema__.children.customField1.borderRadius"},{"key":"schema.__root_schema__.children.customField1.accentColor"},{"key":"schema.__root_schema__.children.customField1.defaultValue"},{"key":"schema.__root_schema__.children.customColumn2.borderRadius"},{"key":"schema.__root_schema__.children.customColumn2.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.cellBorderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_reported_date.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_reported_date.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_patient_uuid.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_patient_uuid.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_patient_uuid.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_patient_uuid.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_period.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_period.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_period.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_period.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_uuid.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_uuid.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_uuid.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_uuid.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.placeholderText"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.placeholderText"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___reference.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___reference.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___reference.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___reference.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.cellBorderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.children.__array_item__.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.children.__array_item__.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.children.__array_item__.placeholderText"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___field.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___field.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___field.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___field.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.isVisible"},{"key":"schema.__root_schema__.children.entity_id.borderRadius"},{"key":"schema.__root_schema__.children.entity_id.accentColor"},{"key":"schema.__root_schema__.children.entity_id.defaultValue"},{"key":"schema.__root_schema__.children.entity_id.options"},{"key":"schema.__root_schema__.children.last_updated_by.borderRadius"},{"key":"schema.__root_schema__.children.last_updated_by.accentColor"},{"key":"schema.__root_schema__.children.last_updated_by.defaultValue"},{"key":"schema.__root_schema__.children.date_modified.borderRadius"},{"key":"schema.__root_schema__.children.date_modified.accentColor"},{"key":"schema.__root_schema__.children.date_modified.defaultValue"},{"key":"schema.__root_schema__.children.date_added.borderRadius"},{"key":"schema.__root_schema__.children.date_added.accentColor"},{"key":"schema.__root_schema__.children.date_added.defaultValue"},{"key":"schema.__root_schema__.children.test_parameters.cellBorderRadius"},{"key":"schema.__root_schema__.children.test_parameters.borderRadius"},{"key":"schema.__root_schema__.children.test_parameters.children.values.borderRadius"},{"key":"schema.__root_schema__.children.test_parameters.children.values.accentColor"},{"key":"schema.__root_schema__.children.test_parameters.children.values.defaultValue"},{"key":"schema.__root_schema__.children.column_description.borderRadius"},{"key":"schema.__root_schema__.children.column_description.accentColor"},{"key":"schema.__root_schema__.children.column_description.defaultValue"},{"key":"schema.__root_schema__.children.column_name.borderRadius"},{"key":"schema.__root_schema__.children.column_name.accentColor"},{"key":"schema.__root_schema__.children.column_name.isVisible"},{"key":"schema.__root_schema__.children.column_name.defaultValue"},{"key":"schema.__root_schema__.children.column_name.options"},{"key":"schema.__root_schema__.children.test_type.borderRadius"},{"key":"schema.__root_schema__.children.test_type.accentColor"},{"key":"schema.__root_schema__.children.test_type.defaultValue"},{"key":"schema.__root_schema__.children.test_type.options"},{"key":"schema.__root_schema__.children.entity_id.borderRadius"},{"key":"schema.__root_schema__.children.entity_id.accentColor"},{"key":"schema.__root_schema__.children.entity_id.defaultValue"},{"key":"schema.__root_schema__.children.proposed_remediation.borderRadius"},{"key":"schema.__root_schema__.children.proposed_remediation.accentColor"},{"key":"schema.__root_schema__.children.proposed_remediation.defaultValue"},{"key":"schema.__root_schema__.children.impact.borderRadius"},{"key":"schema.__root_schema__.children.impact.accentColor"},{"key":"schema.__root_schema__.children.impact.defaultValue"},{"key":"schema.__root_schema__.children.description.borderRadius"},{"key":"schema.__root_schema__.children.description.accentColor"},{"key":"schema.__root_schema__.children.description.defaultValue"},{"key":"schema.__root_schema__.children.priority.borderRadius"},{"key":"schema.__root_schema__.children.priority.accentColor"},{"key":"schema.__root_schema__.children.priority.defaultValue"},{"key":"schema.__root_schema__.children.scenario_id.borderRadius"},{"key":"schema.__root_schema__.children.scenario_id.accentColor"},{"key":"schema.__root_schema__.children.scenario_id.defaultValue"},{"key":"schema.__root_schema__.children.scenario_id.options"},{"key":"schema.__root_schema__.children.test_id.borderRadius"},{"key":"schema.__root_schema__.children.test_id.accentColor"},{"key":"schema.__root_schema__.children.test_id.defaultValue"},{"key":"schema.__root_schema__.children.project_id.borderRadius"},{"key":"schema.__root_schema__.children.project_id.accentColor"},{"key":"schema.__root_schema__.children.project_id.defaultValue"},{"key":"schema.__root_schema__.children.project_id.options"},{"key":"schema.__root_schema__.children.test_activated.accentColor"},{"key":"schema.__root_schema__.children.test_activated.defaultValue"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"submitButtonStyles.buttonColor"},{"key":"submitButtonStyles.borderRadius"},{"key":"resetButtonStyles.buttonColor"},{"key":"resetButtonStyles.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.placeholderText"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.placeholderText"},{"key":"schema.__root_schema__.children.test_parameters.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.defaultValue"},{"key":"schema.__root_schema__.defaultValue"},{"key":"schema.__root_schema__.borderRadius"},{"key":"schema.__root_schema__.cellBorderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_period.placeholderText"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_reported_date.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_reported_date.placeholderText"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_reported_date.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_reported_date.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_uuid.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_patient_uuid.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_patient_uuid.placeholderText"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___field.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___reference.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.defaultValue"},{"key":"schema.__root_schema__.children.column_name.placeholderText"},{"key":"schema.__root_schema__.children.test_type.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___reference.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___field.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_period.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_reported_date.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_uuid.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_patient_uuid.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.placeholderText"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.tooltip"},{"key":"submitButtonLabel"},{"key":"schema.__root_schema__.children.date_added.isVisible"},{"key":"schema.__root_schema__.children.date_modified.isVisible"},{"key":"schema.__root_schema__.children.last_updated_by.isVisible"},{"key":"schema.__root_schema__.children.test_id.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.options"}],"sourceData":"{{configured_tests.selectedRow}}","showReset":true,"resetButtonLabel":"Reset","key":"vfrbaovke0","backgroundColor":"#fff","isDeprecated":false,"rightColumn":63.0,"dynamicHeight":"FIXED","autoGenerateForm":false,"widgetId":"ocsuxzrkzg","resetButtonStyles":{"buttonColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","buttonVariant":"SECONDARY"},"isVisible":"true","version":1.0,"parentId":"je98hr71pu","renderMode":"CANVAS","isLoading":false,"scrollContents":true,"fixedFooter":true,"submitButtonLabel":"{{appsmith.store.test_action}}","childStylesheet":{"ARRAY":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none"},"OBJECT":{"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none"},"CHECKBOX":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},"CURRENCY_INPUT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"DATEPICKER":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"EMAIL_INPUT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"MULTISELECT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"MULTILINE_TEXT_INPUT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"NUMBER_INPUT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"PASSWORD_INPUT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"PHONE_NUMBER_INPUT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"RADIO_GROUP":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","boxShadow":"none"},"SELECT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"SWITCH":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","boxShadow":"none"},"TEXT_INPUT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"}},"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"c14yy2u4yy","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"width":720.0,"minDynamicHeight":4.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":[],"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":[],"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"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Test activation","key":"6b5xi9jrls","rightColumn":48.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"pmvwma9e7p","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"ysscf8xzcv","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"fontSize":"1.25rem","minDynamicHeight":4.0},{"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,"dynamicHeight":"FIXED","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","maxDynamicHeight":9000.0,"minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"o4d52pu954","isVisible":true,"parentId":"a7axo8fac8","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"3yro4n84bq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"width":464.0,"minDynamicHeight":4.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":[],"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"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Tests","key":"lwygtopls1","isDeprecated":false,"rightColumn":41.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"97p90gzohw","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"lg9t8q2l02","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"fontSize":"1.5rem","minDynamicHeight":4.0},{"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,"dynamicHeight":"FIXED","widgetId":"1ad1wvey5j","isVisible":true,"version":1.0,"parentId":"lg9t8q2l02","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"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","minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"7l6rph2c1u","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"width":1084.0,"minDynamicHeight":4.0}]},"layoutOnLoadActions":[[{"id":"Tests_Entity_column_names_cache","name":"Entity_column_names_cache","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0},{"id":"Tests_Test_Types_Cache","name":"Test_Types_Cache","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0},{"id":"Tests_Test_Types_That_Use_Parameters","name":"Test_Types_That_Use_Parameters","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_Entities_dropdown","name":"Entities_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\""],"timeoutInMillisecond":10000.0},{"id":"Tests_Test_Parameters_Cache","name":"Test_Parameters_Cache","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0},{"id":"Tests_Test_Types_That_Use_Column","name":"Test_Types_That_Use_Column","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0},{"id":"Tests_Test_parameters_sample","name":"Test_parameters_sample","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["Edit_Add_Test_Form.formData.test_type"],"timeoutInMillisecond":10000.0}],[{"id":"Tests_Entities_dropdown_dbt_ref_fmt","name":"Entities_dropdown_dbt_ref_fmt","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\""],"timeoutInMillisecond":10000.0},{"id":"Tests_Entities_dropdown_with_prefix","name":"Entities_dropdown_with_prefix","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\""],"timeoutInMillisecond":10000.0}]],"layoutOnLoadActionErrors":[],"validOnPageLoadActions":true,"id":"Tests","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":true},"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":69.0,"minHeight":1130.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"boxShadow":"none","widgetName":"Configured_Tests_Container","topRow":0.0,"bottomRow":106.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"labelTextSize":"0.875rem","boxShadow":"none","widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":1030.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":"#a1a1aa","displayName":"Icon Button","iconSVG":"/static/media/icon.1a0c634a.svg","searchTags":["click","submit"],"topRow":7.0,"bottomRow":11.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":"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('Edit_Add_Test_Form');storeValue(\"test_action\",\"Add\", false);Entities_dropdown.run();\nshowModal('Edit_Add_Test_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"},{"key":"onClick"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":11.0,"bottomRow":15.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"},{"key":"isVisible"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":11.0,"bottomRow":15.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":"tooltip"},{"key":"isDisabled"},{"key":"isVisible"}],"text":"Delete tests","isDisabled":"{{!JSFunctions.allowUpdate()}}","key":"2ob5jed9vo","rightColumn":51.0,"isDefaultClickDisabled":true,"widgetId":"m8gxn5vx3a","isVisible":"{{JSFunctions.allowUpdate()}}","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","entity_id","test_type","test_id","scenario_id","priority","impact","proposed_remediation","entity_id","column_name","column_description","test_parameters","date_added","date_modified","last_updated_by","test_params_all_json"],"dynamicPropertyPathList":[{"key":"onPageChange"},{"key":"onRowSelected"},{"key":"primaryColumns.customColumn2.onClick"}],"isVisibleDownload":true,"topRow":15.0,"bottomRow":101.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":"primaryColumns.test_params_all_json.computedValue"},{"key":"primaryColumns.entity_id.computedValue"},{"key":"primaryColumns.customColumn2.buttonColor"},{"key":"primaryColumns.customColumn2.buttonLabel"},{"key":"primaryColumns.last_updated_by.computedValue"},{"key":"primaryColumns.date_modified.computedValue"},{"key":"primaryColumns.date_added.computedValue"},{"key":"primaryColumns.test_parameters.computedValue"},{"key":"primaryColumns.column_description.computedValue"},{"key":"primaryColumns.column_name.computedValue"},{"key":"primaryColumns.test_type.computedValue"},{"key":"primaryColumns.entity_id.computedValue"},{"key":"primaryColumns.proposed_remediation.computedValue"},{"key":"primaryColumns.impact.computedValue"},{"key":"primaryColumns.description.computedValue"},{"key":"primaryColumns.priority.computedValue"},{"key":"primaryColumns.scenario_id.computedValue"},{"key":"primaryColumns.test_id.computedValue"},{"key":"primaryColumns.project_id.computedValue"},{"key":"primaryColumns.test_activated.computedValue"},{"key":"accentColor"}],"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); storeValue(\"test_action\",\"Edit\", false);Test_parameters_sample.run(); showModal('Edit_Add_Test_Modal')}}","buttonColor":"{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}","buttonLabel":"{{configured_tests.sanitizedTableData.map((currentRow) => ( 'Edit'))}}","buttonVariant":"SECONDARY"},"entity_id":{"index":16.0,"width":150.0,"id":"entity_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"entity_id","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.entity_id))}}","cellBackground":""},"test_params_all_json":{"index":17.0,"width":150.0,"id":"test_params_all_json","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textColor":"","textSize":"0.875rem","enableFilter":true,"enableSort":true,"isVisible":false,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"test_params_all_json","computedValue":"{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_params_all_json))}}","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_Add_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_id":213.0,"project_id":102.0}},{"boxShadow":"none","widgetName":"order_by_label","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":11.0,"bottomRow":15.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":6.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"l8pgl90klz","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"0.80rem","minDynamicHeight":4.0},{"boxShadow":"none","widgetName":"title__main","dynamicPropertyPathList":[{"key":"fontSize"}],"topRow":7.0,"bottomRow":11.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":4.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"urzv99hdc8","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"1.5rem","minDynamicHeight":4.0},{"boxShadow":"none","widgetName":"refresh_btn","onClick":"{{Configured_tests_data.run()}}","buttonColor":"#93c5fd","dynamicPropertyPathList":[{"key":"borderRadius"}],"topRow":11.0,"bottomRow":15.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":11.0,"bottomRow":15.0,"parentRowSpace":10.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"test_id","animateLoading":true,"parentColumnSpace":22.171875,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":6.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":19.0,"dynamicHeight":"FIXED","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","maxDynamicHeight":9000.0,"onOptionChange":"{{Configured_tests_data.run()}}","minDynamicHeight":4.0},{"boxShadow":"none","widgetName":"order_select","isFilterable":true,"dynamicPropertyPathList":[{"key":"isVisible"}],"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":11.0,"bottomRow":15.0,"parentRowSpace":10.0,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"ASC","animateLoading":true,"parentColumnSpace":22.171875,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":19.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":28.0,"dynamicHeight":"FIXED","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","maxDynamicHeight":9000.0,"onOptionChange":"{{Configured_tests_data.run()}}","minDynamicHeight":4.0},{"boxShadow":"none","widgetName":"Bulk_update_Test_Activated","onClick":"{{showModal('Activate_Tests_Modal')}}","buttonColor":"#2E3D49","dynamicPropertyPathList":[{"key":"isDisabled"},{"key":"isVisible"}],"displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":11.0,"bottomRow":15.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":"tooltip"},{"key":"isDisabled"},{"key":"isVisible"}],"text":"Activate/Deactivate tests","isDisabled":"{{!JSFunctions.allowUpdate()}}","key":"2ob5jed9vo","rightColumn":40.0,"isDefaultClickDisabled":true,"widgetId":"7puon64f02","isVisible":"{{JSFunctions.allowUpdate()}}","recaptchaType":"V3","version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","buttonVariant":"SECONDARY","placement":"CENTER"},{"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Container2","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg","searchTags":["div","parent","group"],"topRow":0.0,"bottomRow":6.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"borderRadius"},{"key":"boxShadow"}],"children":[{"boxShadow":"none","widgetName":"Canvas5","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":[{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"}],"leftColumn":3.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":11.0,"iconName":"timeline-line-chart","menuVariant":"TERTIARY","widgetId":"al32p7pd29","menuItems":{"menuItem1":{"label":"Run log","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Run log', {})}}"},"menuItem2":{"label":"Trends","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0}},"isVisible":true,"label":"Run monitoring","version":1.0,"parentId":"1s66echqo8","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"isCompact":true,"boxShadow":"none","widgetName":"MenuButton1Copy","displayName":"Menu Button","iconSVG":"/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"MENU_BUTTON_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":19.625,"dynamicTriggerPathList":[{"key":"menuItems.menuItem1.onClick"},{"key":"menuItems.menuItem2.onClick"},{"key":"menuItems.menuItem5clg3sf596.onClick"},{"key":"menuItems.menuItemzhze0we924.onClick"}],"leftColumn":11.0,"dynamicBindingPathList":[],"isDisabled":false,"key":"lp56mrifo9","isDeprecated":false,"rightColumn":19.0,"iconName":"settings","menuVariant":"TERTIARY","widgetId":"ubzttrj6le","menuItems":{"menuItem1":{"label":"Tests","id":"menuItem1","widgetId":"","isVisible":true,"isDisabled":false,"index":0.0,"onClick":"{{navigateTo('Tests', {})}}"},"menuItem2":{"label":"Entities","id":"menuItem2","widgetId":"","isVisible":true,"isDisabled":false,"index":1.0,"onClick":"{{navigateTo('Entities', {})}}"},"menuItem5clg3sf596":{"id":"menuItem5clg3sf596","index":2.0,"label":"Categories","widgetId":"xj72wvs7rg","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Categories', {})}}"},"menuItemzhze0we924":{"id":"menuItemzhze0we924","index":3.0,"label":"Projects","widgetId":"ail7gs5wwr","isDisabled":false,"isVisible":true,"onClick":"{{navigateTo('Projects', {})}}"}},"isVisible":true,"label":"Configuration","version":1.0,"parentId":"1s66echqo8","renderMode":"CANVAS","isLoading":false,"borderRadius":"0.375rem","menuColor":"#fff","iconAlign":"left","placement":"CENTER"},{"widgetName":"Text17","borderColor":"#fff","dynamicPropertyPathList":[{"key":"fontSize"}],"displayName":"Text","iconSVG":"/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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":19.625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"borderRadius"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"DOT","key":"14w22nnzm7","isDeprecated":false,"rightColumn":3.0,"backgroundColor":"#f79113","textAlign":"CENTER","dynamicHeight":"FIXED","widgetId":"atr47dntub","isVisible":true,"fontStyle":"BOLD","textColor":"#fff","version":1.0,"parentId":"1s66echqo8","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"fontSize":"0.975rem","minDynamicHeight":4.0}],"key":"zdu4x20wju","isDeprecated":false,"rightColumn":471.0,"detachFromLayout":true,"widgetId":"1s66echqo8","accentColor":"{{appsmith.theme.colors.primaryColor}}","containerStyle":"none","isVisible":true,"version":1.0,"parentId":"ynvv850qlw","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"}],"borderWidth":"0","key":"nymtbn27w8","backgroundColor":"#3730a3","isDeprecated":false,"rightColumn":64.0,"dynamicHeight":"FIXED","widgetId":"ynvv850qlw","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"59rw5mx0bq","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0}]}],"labelTextSize":"0.875rem","backgroundColor":"#fafafa","rightColumn":64.0,"dynamicHeight":"FIXED","widgetId":"mvubsemxfo","containerStyle":"card","isVisible":"true","version":1.0,"parentId":"0","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"minDynamicHeight":4.0},{"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","dynamicHeight":"FIXED","widgetId":"fixqpc5ejk","isVisible":"true","fontStyle":"ITALIC","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"0.875rem","minDynamicHeight":4.0},{"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","dynamicHeight":"FIXED","widgetId":"35yoxo4oec","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"1.5rem","minDynamicHeight":4.0},{"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","dynamicHeight":"FIXED","widgetId":"48uac29g6e","isVisible":"true","fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"borderRadius":"0px","maxDynamicHeight":9000.0,"fontSize":"0.875rem","minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"i3whp03wf0","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"0px","maxDynamicHeight":9000.0,"width":456.0,"minDynamicHeight":4.0},{"boxShadow":"none","widgetName":"Edit_Add_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":[],"children":[{"boxShadow":"none","widgetName":"close_icon","onClick":"{{closeModal('Edit_Add_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":0.0,"dynamicBindingPathList":[{"key":"fontFamily"},{"key":"text"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"{{appsmith.store.test_action}} Test","key":"oq4bpr35vs","rightColumn":10.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"57kk9tsddv","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"je98hr71pu","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"fontSize":"1.5rem","minDynamicHeight":4.0},{"schema":{"__root_schema__":{"children":{"test_activated":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.test_activated == '✓' || appsmith.store.test_action == 'Add' ? true : false))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Switch","sourceData":"✓","isCustomField":false,"accessor":"test_activated","identifier":"test_activated","position":0.0,"originalIdentifier":"test_activated","accentColor":"{{appsmith.theme.colors.primaryColor}}","boxShadow":"none","alignWidget":"LEFT","isDisabled":false,"isRequired":false,"isVisible":true,"labelTextSize":"0.875rem","label":"On/Off"},"project_id":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.project_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"Muso","isCustomField":false,"accessor":"project_id","identifier":"project_id","position":1.0,"originalIdentifier":"project_id","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":true,"isVisible":true,"label":"Project Id","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Projects_dropdown.data}}"},"test_id":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.test_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"58dac7c9-03e7-3a29-a34c-c4454337b641","isCustomField":false,"accessor":"test_id","identifier":"test_id","position":13.0,"originalIdentifier":"test_id","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":true,"isRequired":false,"isSpellCheck":false,"isVisible":"{{((sourceData, formData, fieldState) => (appsmith.store.test_action == 'Edit'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Test Id"},"scenario_id":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.scenario_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"INCONSISTENT-1","isCustomField":false,"accessor":"scenario_id","identifier":"scenario_id","position":7.0,"originalIdentifier":"scenario_id","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":true,"isVisible":true,"label":"Scenario Id","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Scenario_dropdown.data}}"},"priority":{"children":{},"dataType":"number","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.priority.toString()))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Number Input","sourceData":3.0,"isCustomField":false,"accessor":"priority","identifier":"priority","position":8.0,"originalIdentifier":"priority","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":true,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Priority","minNum":"1","maxNum":"10"},"description":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.description))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Multiline Text Input","sourceData":"Disallowed FP methods entered in form","isCustomField":false,"accessor":"description","identifier":"description","position":2.0,"originalIdentifier":"description","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":true,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Description"},"impact":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.impact))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"","isCustomField":false,"accessor":"impact","identifier":"impact","position":9.0,"originalIdentifier":"impact","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Impact"},"proposed_remediation":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.proposed_remediation))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"","isCustomField":false,"accessor":"proposed_remediation","identifier":"proposed_remediation","position":10.0,"originalIdentifier":"proposed_remediation","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Proposed Remediation"},"entity_id":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"569b9515-eb80-39ab-a537-f6ef571dee64","isCustomField":false,"accessor":"entity_id","identifier":"entity_id","position":11.0,"originalIdentifier":"entity_id","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Entity Id"},"test_type":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.test_type))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"accepted_values","isCustomField":false,"accessor":"test_type","identifier":"test_type","position":3.0,"originalIdentifier":"test_type","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":true,"isVisible":"true","label":"Test Type","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Testtypes_dropdown.data}}","onOptionChange":"{{Test_parameters_sample.run(); Entities_dropdown.run()}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestTypeDescription(Edit_Add_Test_Form.formData.test_type)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"column_name":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.column_name ))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"fp_method_being_used","isCustomField":false,"accessor":"column_name","identifier":"column_name","position":5.0,"originalIdentifier":"column_name","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (JSFunctions.testUsesColumn(formData.test_type)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Column Name","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, undefined) }}","placeholderText":"{{((sourceData, formData, fieldState) => (`Select a column from the entity`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"column_description":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.column_description))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"","isCustomField":false,"accessor":"column_description","identifier":"column_description","position":12.0,"originalIdentifier":"column_description","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Column Description"},"test_parameters":{"children":{"values":{"children":{},"dataType":"array","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.test_parameters == undefined ? '' : sourceData.test_parameters.values))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Multiselect","sourceData":["oral mini-pill (progestogen)","male condom","female sterilization","iud","oral combination pill","implants","injectible"],"isCustomField":false,"accessor":"values","identifier":"values","position":0.0,"originalIdentifier":"values","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":true,"label":"Values","labelTextSize":"0.875rem","serverSideFiltering":false,"options":[{"label":"Blue","value":"BLUE"},{"label":"Green","value":"GREEN"},{"label":"Red","value":"RED"}]}},"dataType":"object","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.test_parameters))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Object","sourceData":{"values":["oral mini-pill (progestogen)","male condom","female sterilization","iud","oral combination pill","implants","injectible"]},"isCustomField":false,"accessor":"test_parameters","identifier":"test_parameters","position":18.0,"originalIdentifier":"test_parameters","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none","isDisabled":false,"isRequired":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Test Parameters raw json"},"date_added":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.date_added))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"2022-07-02T18:43:16.020555Z","isCustomField":false,"accessor":"date_added","identifier":"date_added","position":14.0,"originalIdentifier":"date_added","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":true,"isRequired":false,"isSpellCheck":false,"isVisible":"{{((sourceData, formData, fieldState) => (appsmith.store.test_action == 'Edit'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Date Added"},"date_modified":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.date_modified))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"2022-07-02T18:43:16.020555Z","isCustomField":false,"accessor":"date_modified","identifier":"date_modified","position":15.0,"originalIdentifier":"date_modified","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":true,"isRequired":false,"isSpellCheck":false,"isVisible":"{{((sourceData, formData, fieldState) => (appsmith.store.test_action == 'Edit'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Date Modified"},"last_updated_by":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.last_updated_by))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"Example","isCustomField":false,"accessor":"last_updated_by","identifier":"last_updated_by","position":16.0,"originalIdentifier":"last_updated_by","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":true,"isRequired":false,"isSpellCheck":false,"isVisible":"{{((sourceData, formData, fieldState) => (appsmith.store.test_action == 'Edit'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Last Updated By"},"entity_id":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.entity_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"fpview_registration","isCustomField":false,"accessor":"entity_id","identifier":"entity_id","position":4.0,"originalIdentifier":"entity_id","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":true,"label":"Entity Name","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Entities_dropdown.data}}"},"test_params_all_json":{"children":{"custom_sql___query":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.query\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Multiline Text Input","sourceData":"SELECT field1, field2, 'table1' as \"primary_table\", 'field1' as \"primary_table_id_field\" WHERE COLOR='green'","isCustomField":false,"accessor":"query","identifier":"custom_sql___query","position":0.0,"originalIdentifier":"custom_sql%%%query","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'custom_sql'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Custom Sql Query","placeholderText":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterExample('query').replace(/\\\\/g,'')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('query')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"relationships___field":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.field\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"uuid","isCustomField":false,"accessor":"field","identifier":"relationships___field","position":2.0,"originalIdentifier":"relationships%%%field","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (Edit_Add_Test_Form.formData.test_type == \"relationships\"))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Reference Field","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Edit_Add_Test_Form.formData.form_test_parameters != undefined && Edit_Add_Test_Form.formData.form_test_parameters.to != undefined ? JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,undefined, Edit_Add_Test_Form.formData.form_test_parameters.to.replace(\"ref('dot_model__\",\"\").replace(\"')\",\"\")) : [] }}","placeholderText":"","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('field')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"accepted_values___values":{"children":{"__array_item__":{"children":{},"dataType":"string","fieldType":"Text Input","sourceData":"dog","isCustomField":false,"accessor":"__array_item__","identifier":"__array_item__","position":-1.0,"originalIdentifier":"__array_item__","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"","defaultValue":"","placeholderText":"{{((sourceData, formData, fieldState) => (`Enter a value`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"}},"dataType":"array","defaultValue":"{{((sourceData, formData, fieldState) => ( formData.test_type == 'accepted_values' ?configured_tests.selectedRow.test_parameters.values : ''\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Array","sourceData":["dog","cat","ostrich"],"isCustomField":false,"accessor":"values","identifier":"accepted_values___values","position":3.0,"originalIdentifier":"accepted_values%%%values","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none","backgroundColor":"#FAFAFA","isCollapsible":false,"isDisabled":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'accepted_values'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Accepted Values ","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('values')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"relationships___reference":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.to\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"ref('dot_model__ancview_pregnancy')","isCustomField":false,"accessor":"to","identifier":"relationships___reference","position":1.0,"originalIdentifier":"relationships%%%reference","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (Edit_Add_Test_Form.formData.test_type == \"relationships\"))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Reference","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Entities_dropdown_dbt_ref_fmt.data}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('field')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"expression_is_true___condition":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.condition\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"(patient_age_in_months<24) and (malaria_give_act is not null)","isCustomField":false,"accessor":"condition","identifier":"expression_is_true___condition","position":4.0,"originalIdentifier":"expression_is_true%%%condition","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'expression_is_true'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Condition","placeholderText":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterExample('condition').replace(/\\\\/g,'')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('condition')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"expression_is_true___expression":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.expression\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Text Input","sourceData":"malaria_act_dosage is not null","isCustomField":false,"accessor":"expression","identifier":"expression_is_true___expression","position":5.0,"originalIdentifier":"expression_is_true%%%expression","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'expression_is_true'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Expression","placeholderText":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterExample('expression').replace(/\\\\/g,'')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('expression')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"expect_similar_means_across_reporters___key":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.key\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"reported_by","isCustomField":false,"accessor":"key","identifier":"expect_similar_means_across_reporters___key","position":6.0,"originalIdentifier":"expect_similar_means_across_reporters%%%key","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'expect_similar_means_across_reporters'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Key","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined) }}","placeholderText":"{{((sourceData, formData, fieldState) => (`Select a key field`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('key')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"possible_duplicate_forms___table_specific_uuid":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.table_specific_uuid\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"uuid","isCustomField":false,"accessor":"table_specific_uuid","identifier":"possible_duplicate_forms___table_specific_uuid","position":12.0,"originalIdentifier":"possible_duplicate_forms%%%table_specific_uuid","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'possible_duplicate_forms'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"UUID","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined) }}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('table_specific_uuid')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"expect_similar_means_across_reporters___quantity":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.quantity\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"temperature","isCustomField":false,"accessor":"quantity","identifier":"expect_similar_means_across_reporters___quantity","position":7.0,"originalIdentifier":"expect_similar_means_across_reporters%%%quantity","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'expect_similar_means_across_reporters'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Quantity field","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"real\") }}","placeholderText":"{{((sourceData, formData, fieldState) => (`Select a numeric field`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('quantity')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"possible_duplicate_forms___table_specific_period":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.table_specific_period\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"day","isCustomField":false,"accessor":"table_specific_period","identifier":"possible_duplicate_forms___table_specific_period","position":10.0,"originalIdentifier":"possible_duplicate_forms%%%table_specific_period","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'possible_duplicate_forms'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Period","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"[\n {\n \"label\": \"hour\",\n \"value\": \"hour\"\n },\n {\n \"label\": \"day\",\n \"value\": \"day\"\n },\n {\n \"label\": \"week\",\n \"value\": \"week\"\n }\n]","placeholderText":"{{((sourceData, formData, fieldState) => (`hour, day or week`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('table_specific_period')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"expect_similar_means_across_reporters___form_name":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.form_name\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"dot_model__iccmview_assessment","isCustomField":false,"accessor":"data_table","identifier":"expect_similar_means_across_reporters___form_name","position":8.0,"originalIdentifier":"expect_similar_means_across_reporters%%%form_name","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'expect_similar_means_across_reporters'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Data Table","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{Entities_dropdown_with_prefix.data}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('form_name')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"expect_similar_means_across_reporters___id_column":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.id_column\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"reported_by","isCustomField":false,"accessor":"id_column","identifier":"expect_similar_means_across_reporters___id_column","position":9.0,"originalIdentifier":"expect_similar_means_across_reporters%%%id_column","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'expect_similar_means_across_reporters'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Id Column","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined) }}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('id_column')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","placeholderText":""},"possible_duplicate_forms___table_specific_patient_uuid":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.table_specific_patient_uuid\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"patient_id","isCustomField":false,"accessor":"table_specific_patient_uuid","identifier":"possible_duplicate_forms___table_specific_patient_uuid","position":13.0,"originalIdentifier":"possible_duplicate_forms%%%table_specific_patient_uuid","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'possible_duplicate_forms'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Patient UUID","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined) }}","placeholderText":"{{((sourceData, formData, fieldState) => (`Patient id column`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('table_specific_patient_uuid')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"},"possible_duplicate_forms___table_specific_reported_date":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.table_specific_reported_date\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Select","sourceData":"reported","isCustomField":false,"accessor":"table_specific_reported_date","identifier":"possible_duplicate_forms___table_specific_reported_date","position":11.0,"originalIdentifier":"possible_duplicate_forms%%%table_specific_reported_date","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","isDisabled":false,"isFilterable":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (formData.test_type == 'possible_duplicate_forms'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","label":"Reported Date","labelTextSize":"0.875rem","serverSideFiltering":false,"options":"{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"timestamp with time zone\").concat(JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"date\").concat(JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"datetime\"))) }}","placeholderText":"{{((sourceData, formData, fieldState) => (sourceData.test_params_all_json[\"table_specific_reported_date\"]))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","tooltip":"{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('table_specific_reported_date')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}"}},"dataType":"object","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.test_params_all_json))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Object","sourceData":{"custom_sql%%%query":"SELECT field1, field2, 'table1' as \"primary_table\", 'field1' as \"primary_table_id_field\" WHERE COLOR='green'","relationships%%%field":"uuid","accepted_values%%%values":["dog","cat","ostrich"],"relationships%%%reference":"ref('dot_model__ancview_pregnancy')","expression_is_true%%%condition":"(patient_age_in_months<24) and (malaria_give_act is not null)","expression_is_true%%%expression":"malaria_act_dosage is not null","expect_similar_means_across_reporters%%%key":"reported_by","possible_duplicate_forms%%%table_specific_uuid":"uuid","expect_similar_means_across_reporters%%%quantity":"temperature","possible_duplicate_forms%%%table_specific_period":"day","expect_similar_means_across_reporters%%%form_name":"dot_model__iccmview_assessment","expect_similar_means_across_reporters%%%id_column":"reported_by","possible_duplicate_forms%%%table_specific_patient_uuid":"patient_id","possible_duplicate_forms%%%table_specific_reported_date":"reported"},"isCustomField":false,"accessor":"form_test_parameters","identifier":"test_params_all_json","position":6.0,"originalIdentifier":"test_params_all_json","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none","isDisabled":false,"isRequired":false,"isVisible":"{{((sourceData, formData, fieldState) => (JSFunctions.testUsesParameters(formData.test_type)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","labelTextSize":"0.875rem","label":"Test Parameters"},"customColumn2":{"children":{},"dataType":"string","defaultValue":"","fieldType":"Text Input","sourceData":"","isCustomField":false,"accessor":"customColumn2","identifier":"customColumn2","position":17.0,"originalIdentifier":"customColumn2","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":false,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Custom Column 2"},"customField1":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (JSON.stringify(formData.form_test_parameters, null, 4)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Multiline Text Input","sourceData":"","isCustomField":true,"accessor":"form_test_parameters_string","identifier":"customField1","position":19.0,"originalIdentifier":"customField1","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":true,"isRequired":false,"isSpellCheck":false,"isVisible":true,"labelTextSize":"0.875rem","label":"Test Parameters JSON"},"customField2":{"children":{},"dataType":"string","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData.test_parameters == undefined ? '' : JSON.stringify(sourceData.test_parameters,null,1)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Multiline Text Input","sourceData":"","isCustomField":true,"accessor":"source_data_test_parameters","identifier":"customField2","position":20.0,"originalIdentifier":"customField2","accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","iconAlign":"left","isDisabled":true,"isRequired":false,"isSpellCheck":false,"isVisible":false,"labelTextSize":"0.875rem","label":"Source data test parameters (debug)"}},"dataType":"object","defaultValue":"{{((sourceData, formData, fieldState) => (sourceData))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}","fieldType":"Object","sourceData":{"test_activated":"✓","project_id":"Muso","test_id":"58dac7c9-03e7-3a29-a34c-c4454337b641","scenario_id":"INCONSISTENT-1","priority":3.0,"description":"Disallowed FP methods entered in form","impact":"","proposed_remediation":"","entity_id":"569b9515-eb80-39ab-a537-f6ef571dee64","test_type":"accepted_values","column_name":"fp_method_being_used","column_description":"","test_parameters":{"values":["oral mini-pill (progestogen)","male condom","female sterilization","iud","oral combination pill","implants","injectible"]},"date_added":"2022-07-02T18:43:16.020555Z","date_modified":"2022-07-02T18:43:16.020555Z","last_updated_by":"Example","entity_id":"fpview_registration","test_params_all_json":{"custom_sql%%%query":"SELECT field1, field2, 'table1' as \"primary_table\", 'field1' as \"primary_table_id_field\" WHERE COLOR='green'","relationships%%%field":"uuid","accepted_values%%%values":["dog","cat","ostrich"],"relationships%%%reference":"ref('dot_model__ancview_pregnancy')","expression_is_true%%%condition":"(patient_age_in_months<24) and (malaria_give_act is not null)","expression_is_true%%%expression":"malaria_act_dosage is not null","expect_similar_means_across_reporters%%%key":"reported_by","possible_duplicate_forms%%%table_specific_uuid":"uuid","expect_similar_means_across_reporters%%%quantity":"temperature","possible_duplicate_forms%%%table_specific_period":"day","expect_similar_means_across_reporters%%%form_name":"dot_model__iccmview_assessment","expect_similar_means_across_reporters%%%id_column":"reported_by","possible_duplicate_forms%%%table_specific_patient_uuid":"patient_id","possible_duplicate_forms%%%table_specific_reported_date":"reported"},"customColumn2":""},"isCustomField":false,"accessor":"__root_schema__","identifier":"__root_schema__","position":-1.0,"originalIdentifier":"__root_schema__","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none","isDisabled":false,"isRequired":false,"isVisible":true,"labelTextSize":"0.875rem","label":""}},"boxShadow":"{{appsmith.theme.boxShadow.appBoxShadow}}","widgetName":"Edit_Add_Test_Form","submitButtonStyles":{"buttonColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","buttonVariant":"PRIMARY"},"dynamicPropertyPathList":[{"key":"schema.__root_schema__.children.date_of_birth.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.isVisible"},{"key":"schema.__root_schema__.children.test_type.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___field.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___reference.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_period.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_uuid.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_patient_uuid.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_reported_date.isVisible"},{"key":"schema.__root_schema__.children.test_activated.defaultValue"},{"key":"onSubmit"},{"key":"schema.__root_schema__.children.column_name.isVisible"},{"key":"isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.isVisible"},{"key":"schema.__root_schema__.children.test_type.onOptionChange"},{"key":"schema.__root_schema__.children.date_added.isVisible"},{"key":"schema.__root_schema__.children.date_modified.isVisible"},{"key":"schema.__root_schema__.children.last_updated_by.isVisible"},{"key":"schema.__root_schema__.children.test_id.isVisible"}],"displayName":"JSON Form","iconSVG":"/static/media/icon.5b428de1.svg","onSubmit":"{{ appsmith.store.test_action == 'Edit' ? Edit_Test.run(() => { Configured_tests_data.run() ;closeModal('Edit_Add_Test_Modal');resetWidget('configured_tests')}, (error) => showAlert(`Error while editing test! \\n ${error}`,'error')) : Add_Test.run(() => { Configured_tests_data.run() ;closeModal('Edit_Add_Test_Modal');resetWidget('configured_tests')}, (error) => showAlert(`Error while adding test! \\n ${error}`,'error'))}}","topRow":5.0,"bottomRow":74.0,"fieldLimitExceeded":false,"parentRowSpace":10.0,"title":"","type":"JSON_FORM_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":16.6875,"dynamicTriggerPathList":[{"key":"onSubmit"},{"key":"schema.__root_schema__.children.test_type.onOptionChange"}],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"sourceData"},{"key":"schema.__root_schema__.children.customField2.borderRadius"},{"key":"schema.__root_schema__.children.customField2.accentColor"},{"key":"schema.__root_schema__.children.customField2.defaultValue"},{"key":"schema.__root_schema__.children.customField1.borderRadius"},{"key":"schema.__root_schema__.children.customField1.accentColor"},{"key":"schema.__root_schema__.children.customField1.defaultValue"},{"key":"schema.__root_schema__.children.customColumn2.borderRadius"},{"key":"schema.__root_schema__.children.customColumn2.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.cellBorderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_reported_date.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_reported_date.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_patient_uuid.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_patient_uuid.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_patient_uuid.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_patient_uuid.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_period.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_period.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_period.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_period.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_uuid.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_uuid.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_uuid.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_uuid.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.placeholderText"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.placeholderText"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___reference.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___reference.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___reference.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___reference.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.cellBorderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.children.__array_item__.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.children.__array_item__.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.children.__array_item__.placeholderText"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___field.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___field.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___field.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___field.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.isVisible"},{"key":"schema.__root_schema__.children.entity_id.borderRadius"},{"key":"schema.__root_schema__.children.entity_id.accentColor"},{"key":"schema.__root_schema__.children.entity_id.defaultValue"},{"key":"schema.__root_schema__.children.entity_id.options"},{"key":"schema.__root_schema__.children.last_updated_by.borderRadius"},{"key":"schema.__root_schema__.children.last_updated_by.accentColor"},{"key":"schema.__root_schema__.children.last_updated_by.defaultValue"},{"key":"schema.__root_schema__.children.date_modified.borderRadius"},{"key":"schema.__root_schema__.children.date_modified.accentColor"},{"key":"schema.__root_schema__.children.date_modified.defaultValue"},{"key":"schema.__root_schema__.children.date_added.borderRadius"},{"key":"schema.__root_schema__.children.date_added.accentColor"},{"key":"schema.__root_schema__.children.date_added.defaultValue"},{"key":"schema.__root_schema__.children.test_parameters.cellBorderRadius"},{"key":"schema.__root_schema__.children.test_parameters.borderRadius"},{"key":"schema.__root_schema__.children.test_parameters.children.values.borderRadius"},{"key":"schema.__root_schema__.children.test_parameters.children.values.accentColor"},{"key":"schema.__root_schema__.children.test_parameters.children.values.defaultValue"},{"key":"schema.__root_schema__.children.column_description.borderRadius"},{"key":"schema.__root_schema__.children.column_description.accentColor"},{"key":"schema.__root_schema__.children.column_description.defaultValue"},{"key":"schema.__root_schema__.children.column_name.borderRadius"},{"key":"schema.__root_schema__.children.column_name.accentColor"},{"key":"schema.__root_schema__.children.column_name.isVisible"},{"key":"schema.__root_schema__.children.column_name.defaultValue"},{"key":"schema.__root_schema__.children.column_name.options"},{"key":"schema.__root_schema__.children.test_type.borderRadius"},{"key":"schema.__root_schema__.children.test_type.accentColor"},{"key":"schema.__root_schema__.children.test_type.defaultValue"},{"key":"schema.__root_schema__.children.test_type.options"},{"key":"schema.__root_schema__.children.entity_id.borderRadius"},{"key":"schema.__root_schema__.children.entity_id.accentColor"},{"key":"schema.__root_schema__.children.entity_id.defaultValue"},{"key":"schema.__root_schema__.children.proposed_remediation.borderRadius"},{"key":"schema.__root_schema__.children.proposed_remediation.accentColor"},{"key":"schema.__root_schema__.children.proposed_remediation.defaultValue"},{"key":"schema.__root_schema__.children.impact.borderRadius"},{"key":"schema.__root_schema__.children.impact.accentColor"},{"key":"schema.__root_schema__.children.impact.defaultValue"},{"key":"schema.__root_schema__.children.description.borderRadius"},{"key":"schema.__root_schema__.children.description.accentColor"},{"key":"schema.__root_schema__.children.description.defaultValue"},{"key":"schema.__root_schema__.children.priority.borderRadius"},{"key":"schema.__root_schema__.children.priority.accentColor"},{"key":"schema.__root_schema__.children.priority.defaultValue"},{"key":"schema.__root_schema__.children.scenario_id.borderRadius"},{"key":"schema.__root_schema__.children.scenario_id.accentColor"},{"key":"schema.__root_schema__.children.scenario_id.defaultValue"},{"key":"schema.__root_schema__.children.scenario_id.options"},{"key":"schema.__root_schema__.children.test_id.borderRadius"},{"key":"schema.__root_schema__.children.test_id.accentColor"},{"key":"schema.__root_schema__.children.test_id.defaultValue"},{"key":"schema.__root_schema__.children.project_id.borderRadius"},{"key":"schema.__root_schema__.children.project_id.accentColor"},{"key":"schema.__root_schema__.children.project_id.defaultValue"},{"key":"schema.__root_schema__.children.project_id.options"},{"key":"schema.__root_schema__.children.test_activated.accentColor"},{"key":"schema.__root_schema__.children.test_activated.defaultValue"},{"key":"borderRadius"},{"key":"boxShadow"},{"key":"submitButtonStyles.buttonColor"},{"key":"submitButtonStyles.borderRadius"},{"key":"resetButtonStyles.buttonColor"},{"key":"resetButtonStyles.borderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.placeholderText"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.placeholderText"},{"key":"schema.__root_schema__.children.test_parameters.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.accentColor"},{"key":"schema.__root_schema__.children.test_params_all_json.defaultValue"},{"key":"schema.__root_schema__.defaultValue"},{"key":"schema.__root_schema__.borderRadius"},{"key":"schema.__root_schema__.cellBorderRadius"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_period.placeholderText"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_reported_date.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_reported_date.placeholderText"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_reported_date.isVisible"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_reported_date.defaultValue"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_uuid.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_patient_uuid.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_patient_uuid.placeholderText"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___field.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___reference.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.defaultValue"},{"key":"schema.__root_schema__.children.column_name.placeholderText"},{"key":"schema.__root_schema__.children.test_type.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___reference.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.relationships___field.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_period.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_reported_date.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_uuid.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___table_specific_patient_uuid.tooltip"},{"key":"schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.placeholderText"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.options"},{"key":"schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.tooltip"},{"key":"submitButtonLabel"},{"key":"schema.__root_schema__.children.date_added.isVisible"},{"key":"schema.__root_schema__.children.date_modified.isVisible"},{"key":"schema.__root_schema__.children.last_updated_by.isVisible"},{"key":"schema.__root_schema__.children.test_id.isVisible"}],"sourceData":"{{configured_tests.selectedRow}}","showReset":true,"resetButtonLabel":"Reset","key":"vfrbaovke0","backgroundColor":"#fff","isDeprecated":false,"rightColumn":63.0,"dynamicHeight":"FIXED","autoGenerateForm":false,"widgetId":"ocsuxzrkzg","resetButtonStyles":{"buttonColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","buttonVariant":"SECONDARY"},"isVisible":"true","version":1.0,"parentId":"je98hr71pu","renderMode":"CANVAS","isLoading":false,"scrollContents":true,"fixedFooter":true,"submitButtonLabel":"{{appsmith.store.test_action}}","childStylesheet":{"ARRAY":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none"},"OBJECT":{"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none","cellBorderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","cellBoxShadow":"none"},"CHECKBOX":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}"},"CURRENCY_INPUT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"DATEPICKER":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"EMAIL_INPUT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"MULTISELECT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"MULTILINE_TEXT_INPUT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"NUMBER_INPUT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"PASSWORD_INPUT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"PHONE_NUMBER_INPUT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"RADIO_GROUP":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","boxShadow":"none"},"SELECT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"},"SWITCH":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","boxShadow":"none"},"TEXT_INPUT":{"accentColor":"{{appsmith.theme.colors.primaryColor}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","boxShadow":"none"}},"disabledWhenInvalid":true,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"c14yy2u4yy","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"width":720.0,"minDynamicHeight":4.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":[],"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":[],"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"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Test activation","key":"6b5xi9jrls","rightColumn":48.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"pmvwma9e7p","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"ysscf8xzcv","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"fontSize":"1.25rem","minDynamicHeight":4.0},{"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,"dynamicHeight":"FIXED","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","maxDynamicHeight":9000.0,"minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"o4d52pu954","isVisible":true,"parentId":"a7axo8fac8","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"3yro4n84bq","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"onClose":"{{resetWidget('configured_tests')}}","borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"width":464.0,"minDynamicHeight":4.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":[],"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"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Tests","key":"lwygtopls1","isDeprecated":false,"rightColumn":41.0,"textAlign":"LEFT","dynamicHeight":"FIXED","widgetId":"97p90gzohw","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1.0,"parentId":"lg9t8q2l02","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"fontSize":"1.5rem","minDynamicHeight":4.0},{"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,"dynamicHeight":"FIXED","widgetId":"1ad1wvey5j","isVisible":true,"version":1.0,"parentId":"lg9t8q2l02","labelAlignment":"left","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"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","minDynamicHeight":4.0}],"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,"dynamicHeight":"FIXED","widgetId":"7l6rph2c1u","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"{{appsmith.theme.borderRadius.appBorderRadius}}","maxDynamicHeight":9000.0,"width":1084.0,"minDynamicHeight":4.0}]},"layoutOnLoadActions":[[{"id":"Tests_Entity_column_names_cache","name":"Entity_column_names_cache","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0},{"id":"Tests_Test_Types_Cache","name":"Test_Types_Cache","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0},{"id":"Tests_Test_Types_That_Use_Parameters","name":"Test_Types_That_Use_Parameters","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_Entities_dropdown","name":"Entities_dropdown","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\""],"timeoutInMillisecond":10000.0},{"id":"Tests_Test_Parameters_Cache","name":"Test_Parameters_Cache","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0},{"id":"Tests_Test_Types_That_Use_Column","name":"Test_Types_That_Use_Column","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000.0},{"id":"Tests_Test_parameters_sample","name":"Test_parameters_sample","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["Edit_Add_Test_Form.formData.test_type"],"timeoutInMillisecond":10000.0}],[{"id":"Tests_Entities_dropdown_dbt_ref_fmt","name":"Entities_dropdown_dbt_ref_fmt","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\""],"timeoutInMillisecond":10000.0},{"id":"Tests_Entities_dropdown_with_prefix","name":"Entities_dropdown_with_prefix","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\""],"timeoutInMillisecond":10000.0}]],"layoutOnLoadActionErrors":[],"validOnPageLoadActions":true,"id":"Tests","deleted":false,"policies":[],"userPermissions":[]}],"userPermissions":[],"policies":[],"isHidden":true},"deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781833e"}],"actionList":[{"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":"Run log","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n rl.run_start as \"Run_date\",\n rl.project_id as \"Project_id\",\n SUM(tr.rows_total) as \"Rows_tested\",\n SUM(tr.rows_failed) as \"Rows_failed\",\n ROUND(100 * SUM(tr.rows_failed) / (1.0*SUM(tr.rows_total)),2) as \"% fail\",\n\t rl.run_id as \"Run_id\",\n\t rl.run_status as \"Run status\",\n\t rl.run_error as \"Run error\"\nfrom\n dot.run_log rl\nleft outer join dot.test_results_summary tr ON rl.run_id = tr.run_id\ngroup BY \n rl.run_start,\n\t rl.run_id,\n\t rl.run_status,\n\t rl.run_error\nORDER BY\n rl.run_start DESC","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"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":"Run log","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n rl.run_start as \"Run_date\",\n rl.project_id as \"Project_id\",\n SUM(tr.rows_total) as \"Rows_tested\",\n SUM(tr.rows_failed) as \"Rows_failed\",\n ROUND(100 * SUM(tr.rows_failed) / (1.0*SUM(tr.rows_total)),2) as \"% fail\",\n\t rl.run_id as \"Run_id\",\n\t rl.run_status as \"Run status\",\n\t rl.run_error as \"Run error\"\nfrom\n dot.run_log rl\nleft outer join dot.test_results_summary tr ON rl.run_id = tr.run_id\ngroup BY \n rl.run_start,\n\t rl.run_id,\n\t rl.run_status,\n\t rl.run_error\nORDER BY\n rl.run_start DESC","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Run log_SelectQuery","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818345"},{"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_id,\n\tdot.test_params_all_json()::jsonb\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}};","selfReferencingDataPaths":[],"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_id,\n\tdot.test_params_all_json()::jsonb\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}};","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781836c"},{"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_id\" 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}};","selfReferencingDataPaths":[],"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_id\" 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}};","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781834a"},{"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}};","selfReferencingDataPaths":[],"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}};","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781835b"},{"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}}';","selfReferencingDataPaths":[],"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}}';","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818354"},{"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","selfReferencingDataPaths":[],"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","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818363"},{"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}};","selfReferencingDataPaths":[],"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}};","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818347"},{"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;","selfReferencingDataPaths":[],"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;","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818369"},{"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;","selfReferencingDataPaths":[],"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;","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Testtypes_dropdown","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1cb293c75c9781836e"},{"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 const test_types = Test_Types_That_Use_Parameters.data.map(item => {\n return item.test_type;\n });\n return test_types.includes(test_type_in);\n}","selfReferencingDataPaths":[],"jsArguments":[{"name":"item"},{"name":"","value":">"},{"name":"{"},{"name":"return"},{"name":"item.test_type;"},{"name":"}"}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["test_type_in => {\n const test_types = Test_Types_That_Use_Parameters.data.map(item => {\n return item.test_type;\n });\n return test_types.includes(test_type_in);\n}"],"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 const test_types = Test_Types_That_Use_Parameters.data.map(item => {\n return item.test_type;\n });\n return test_types.includes(test_type_in);\n}","selfReferencingDataPaths":[],"jsArguments":[{"name":"item"},{"name":"","value":">"},{"name":"{"},{"name":"return"},{"name":"item.test_type;"},{"name":"}"}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["test_type_in => {\n const test_types = Test_Types_That_Use_Parameters.data.map(item => {\n return item.test_type;\n });\n return test_types.includes(test_type_in);\n}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_JSFunctions.testUsesParameters","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781836d"},{"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;","selfReferencingDataPaths":[],"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;","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Projects_dropdown","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818365"},{"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}}');","selfReferencingDataPaths":[],"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}}');","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818356"},{"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 }};","selfReferencingDataPaths":[],"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 }};","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1cb293c75c97818373"},{"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 Bulk_Delete_Tests.run(() => {\n showAlert('Successfully deleted tests');\n closeModal('Delete_Tests_Modal');\n Configured_tests_data.run();\n }, () => {}, {\n 'test_ids': JSFunctions.getIds()\n });\n}","selfReferencingDataPaths":[],"jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n Bulk_Delete_Tests.run(() => {\n showAlert('Successfully deleted tests');\n closeModal('Delete_Tests_Modal');\n Configured_tests_data.run();\n }, () => {}, {\n 'test_ids': JSFunctions.getIds()\n });\n}"],"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 Bulk_Delete_Tests.run(() => {\n showAlert('Successfully deleted tests');\n closeModal('Delete_Tests_Modal');\n Configured_tests_data.run();\n }, () => {}, {\n 'test_ids': JSFunctions.getIds()\n });\n}","selfReferencingDataPaths":[],"jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n Bulk_Delete_Tests.run(() => {\n showAlert('Successfully deleted tests');\n closeModal('Delete_Tests_Modal');\n Configured_tests_data.run();\n }, () => {}, {\n 'test_ids': JSFunctions.getIds()\n });\n}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_JSFunctions.bulkDelete","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1cb293c75c97818371"},{"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 let test_activated_b = test_activated_bulk.isChecked;\n Bulk_Update_Test_Activated.run(() => {\n showAlert('Successfully updated test activation status');\n closeModal('Activate_Tests_Modal');\n resetWidget('test_activated_bulk');\n Configured_tests_data.run();\n }, () => {}, {\n 'test_activated_bulk': test_activated_b,\n 'test_ids': JSFunctions.getIds()\n });\n}","selfReferencingDataPaths":[],"jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n let test_activated_b = test_activated_bulk.isChecked;\n Bulk_Update_Test_Activated.run(() => {\n showAlert('Successfully updated test activation status');\n closeModal('Activate_Tests_Modal');\n resetWidget('test_activated_bulk');\n Configured_tests_data.run();\n }, () => {}, {\n 'test_activated_bulk': test_activated_b,\n 'test_ids': JSFunctions.getIds()\n });\n}"],"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 let test_activated_b = test_activated_bulk.isChecked;\n Bulk_Update_Test_Activated.run(() => {\n showAlert('Successfully updated test activation status');\n closeModal('Activate_Tests_Modal');\n resetWidget('test_activated_bulk');\n Configured_tests_data.run();\n }, () => {}, {\n 'test_activated_bulk': test_activated_b,\n 'test_ids': JSFunctions.getIds()\n });\n}","selfReferencingDataPaths":[],"jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n let test_activated_b = test_activated_bulk.isChecked;\n Bulk_Update_Test_Activated.run(() => {\n showAlert('Successfully updated test activation status');\n closeModal('Activate_Tests_Modal');\n resetWidget('test_activated_bulk');\n Configured_tests_data.run();\n }, () => {}, {\n 'test_activated_bulk': test_activated_b,\n 'test_ids': JSFunctions.getIds()\n });\n}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_JSFunctions.bulkUpdate","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781836b"},{"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}};","selfReferencingDataPaths":[],"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}};","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818348"},{"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}};","selfReferencingDataPaths":[],"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}};","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1cb293c75c9781837f"},{"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;","selfReferencingDataPaths":[],"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;","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Scenario_dropdown","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1cb293c75c9781837e"},{"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\t\texample\nFROM \n dot.test_parameters_interface\nWHERE\n\t\ttest_type = '{{Edit_Add_Test_Form.formData.test_type}}' AND\n\t\ttest_type = '{{Edit_Add_Test_Form.formData.test_type}}'\n","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Edit_Add_Test_Form.formData.test_type"],"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\t\texample\nFROM \n dot.test_parameters_interface\nWHERE\n\t\ttest_type = '{{Edit_Add_Test_Form.formData.test_type}}' AND\n\t\ttest_type = '{{Edit_Add_Test_Form.formData.test_type}}'\n","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Edit_Add_Test_Form.formData.test_type"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Test_parameters_sample","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1cb293c75c97818386"},{"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\" = {{Edit_Add_Test_Form.formData.test_activated}},\n\t\t\"project_id\" = '{{Edit_Add_Test_Form.formData.project_id}}',\n\t\t\"scenario_id\" = '{{Edit_Add_Test_Form.formData.scenario_id}}',\n\t\t\"priority\" = {{Edit_Add_Test_Form.formData.priority}},\n\t\t\"description\" = '{{Edit_Add_Test_Form.formData.description}}',\n\t\t\"impact\" = '{{Edit_Add_Test_Form.formData.impact}}',\n\t\t\"proposed_remediation\" = '{{Edit_Add_Test_Form.formData.proposed_remediation}}',\n\t\t\"entity_id\" = '{{Edit_Add_Test_Form.formData.entity_id}}',\n\t\t\"test_type\" = '{{Edit_Add_Test_Form.formData.test_type}}',\n\t\t\"column_name\" = '{{Edit_Add_Test_Form.formData.column_name}}',\n\t\t\"test_parameters\" = $${{Edit_Add_Test_Form.formData.form_test_parameters_string}}$$,\n\t\t\"last_updated_by\" = '{{appsmith.user.name == null ? '' : appsmith.user.name == null }}',\n\t\t\"date_modified\" = NOW()\n WHERE \"test_id\" = '{{Edit_Add_Test_Form.formData.test_id}}';","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Edit_Add_Test_Form.formData.description","Edit_Add_Test_Form.formData.scenario_id","Edit_Add_Test_Form.formData.priority","appsmith.user.name == null ? '' : appsmith.user.name == null","Edit_Add_Test_Form.formData.test_activated","Edit_Add_Test_Form.formData.form_test_parameters_string","Edit_Add_Test_Form.formData.impact","Edit_Add_Test_Form.formData.entity_id","Edit_Add_Test_Form.formData.project_id","Edit_Add_Test_Form.formData.test_type","Edit_Add_Test_Form.formData.column_name","Edit_Add_Test_Form.formData.test_id","Edit_Add_Test_Form.formData.proposed_remediation"],"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\" = {{Edit_Add_Test_Form.formData.test_activated}},\n\t\t\"project_id\" = '{{Edit_Add_Test_Form.formData.project_id}}',\n\t\t\"scenario_id\" = '{{Edit_Add_Test_Form.formData.scenario_id}}',\n\t\t\"priority\" = {{Edit_Add_Test_Form.formData.priority}},\n\t\t\"description\" = '{{Edit_Add_Test_Form.formData.description}}',\n\t\t\"impact\" = '{{Edit_Add_Test_Form.formData.impact}}',\n\t\t\"proposed_remediation\" = '{{Edit_Add_Test_Form.formData.proposed_remediation}}',\n\t\t\"entity_id\" = '{{Edit_Add_Test_Form.formData.entity_id}}',\n\t\t\"test_type\" = '{{Edit_Add_Test_Form.formData.test_type}}',\n\t\t\"column_name\" = '{{Edit_Add_Test_Form.formData.column_name}}',\n\t\t\"test_parameters\" = $${{Edit_Add_Test_Form.formData.form_test_parameters_string}}$$,\n\t\t\"last_updated_by\" = '{{appsmith.user.name == null ? '' : appsmith.user.name == null }}',\n\t\t\"date_modified\" = NOW()\n WHERE \"test_id\" = '{{Edit_Add_Test_Form.formData.test_id}}';","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Edit_Add_Test_Form.formData.description","Edit_Add_Test_Form.formData.scenario_id","Edit_Add_Test_Form.formData.priority","appsmith.user.name == null ? '' : appsmith.user.name == null","Edit_Add_Test_Form.formData.test_activated","Edit_Add_Test_Form.formData.form_test_parameters_string","Edit_Add_Test_Form.formData.impact","Edit_Add_Test_Form.formData.entity_id","Edit_Add_Test_Form.formData.project_id","Edit_Add_Test_Form.formData.test_type","Edit_Add_Test_Form.formData.column_name","Edit_Add_Test_Form.formData.test_id","Edit_Add_Test_Form.formData.proposed_remediation"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Edit_Test","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1cb293c75c9781837b"},{"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 \n entity_id as \"label\", \n\t entity_id as \"value\" \nfrom \n dot.configured_entities\nwhere\n {{Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\" }}\n\n","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\""],"userSetOnLoad":true,"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 \n entity_id as \"label\", \n\t entity_id as \"value\" \nfrom \n dot.configured_entities\nwhere\n {{Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\" }}\n\n","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\""],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Entities_dropdown","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1cb293c75c97818377"},{"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';","selfReferencingDataPaths":[],"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';","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818346"},{"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}};","selfReferencingDataPaths":[],"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}};","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1cb293c75c97818380"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Entity_column_names_cache","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":"-- A cache of all entity column names. This is further filtered in javascript for the list \n-- appropriate to each widget, eg by project, type, etc. We populate a cache so we get all \n-- the data once, better than executing lots of conditional queries, simpler. mjh\nSELECT DISTINCT\n ce.entity_id,\n\t ce.entity_id,\n CONCAT(c.column_name, ' (', c.data_type, ')') as \"label\",\n c.column_name as \"value\",\n ce.project_id,\n c.column_name, \n c.data_type, \n t.table_name, \n t.table_schema\nFROM \n dot.configured_entities ce,\n\t\tdot.projects cp,\n information_schema.tables t\n left join information_schema.columns c \n on t.table_schema = c.table_schema \n and t.table_name = c.table_name \n and c.column_name is not null\nWHERE \n t.table_name = CONCAT('dot_model__',ce.entity_id) AND -- dbt entities only \n\t\tcp.project_id = ce.project_id AND\n t.table_schema = CONCAT(cp.project_schema, '_tests')","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Entity_column_names_cache","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":"-- A cache of all entity column names. This is further filtered in javascript for the list \n-- appropriate to each widget, eg by project, type, etc. We populate a cache so we get all \n-- the data once, better than executing lots of conditional queries, simpler. mjh\nSELECT DISTINCT\n ce.entity_id,\n\t ce.entity_id,\n CONCAT(c.column_name, ' (', c.data_type, ')') as \"label\",\n c.column_name as \"value\",\n ce.project_id,\n c.column_name, \n c.data_type, \n t.table_name, \n t.table_schema\nFROM \n dot.configured_entities ce,\n\t\tdot.projects cp,\n information_schema.tables t\n left join information_schema.columns c \n on t.table_schema = c.table_schema \n and t.table_name = c.table_name \n and c.column_name is not null\nWHERE \n t.table_name = CONCAT('dot_model__',ce.entity_id) AND -- dbt entities only \n\t\tcp.project_id = ce.project_id AND\n t.table_schema = CONCAT(cp.project_schema, '_tests')","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Entity_column_names_cache","deleted":false,"gitSyncId":"62c0be1797ff1761a68b0a61_62c1f90f97ff1761a68b0ad1"},{"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":"Failed tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"\nSELECT \n\t\ttr.status,\n\t\tct.description,\n\t\tct.test_type,\n ce.entity_id, \n\t\tdot.get_test_result_data_record(ce.entity_id, tr.id_column_name, \n tr.id_column_value,CONCAT(dp.project_schema,'_tests'))::jsonb as \"data_record\",\n\t\ttr.test_result_id\nFROM \n dot.\"test_results\" tr,\n\t\tdot.configured_entities ce,\n\t\tdot.configured_tests ct,\n\t dot.projects dp\nWHERE \n ct.test_id = tr.test_id AND\n ce.entity_id = tr.entity_id AND\n tr.view_name ilike '%{{data_table.searchText || \"\"}}%' AND\n\t tr.run_id = '{{appsmith.URL.queryParams.run_id}}' AND\n\t tr.test_id = '{{appsmith.URL.queryParams.test_id}}' AND\n\t ce.project_id = dp.project_id\nORDER BY \"{{data_table.sortOrder.column || 'test_result_id'}}\" {{data_table.sortOrder.order || 'ASC'}}\nLIMIT {{data_table.pageSize}}\nOFFSET {{(data_table.pageNo - 1) * data_table.pageSize}};","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["appsmith.URL.queryParams.run_id","data_table.sortOrder.order || 'ASC'","data_table.pageSize","data_table.searchText || \"\"","data_table.sortOrder.column || 'test_result_id'","(data_table.pageNo - 1) * data_table.pageSize","appsmith.URL.queryParams.test_id"],"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":"Failed tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"\nSELECT \n\t\ttr.status,\n\t\tct.description,\n\t\tct.test_type,\n ce.entity_id, \n\t\tdot.get_test_result_data_record(ce.entity_id, tr.id_column_name, \n tr.id_column_value,CONCAT(dp.project_schema,'_tests'))::jsonb as \"data_record\",\n\t\ttr.test_result_id\nFROM \n dot.\"test_results\" tr,\n\t\tdot.configured_entities ce,\n\t\tdot.configured_tests ct,\n\t dot.projects dp\nWHERE \n ct.test_id = tr.test_id AND\n ce.entity_id = tr.entity_id AND\n tr.view_name ilike '%{{data_table.searchText || \"\"}}%' AND\n\t tr.run_id = '{{appsmith.URL.queryParams.run_id}}' AND\n\t tr.test_id = '{{appsmith.URL.queryParams.test_id}}' AND\n\t ce.project_id = dp.project_id\nORDER BY \"{{data_table.sortOrder.column || 'test_result_id'}}\" {{data_table.sortOrder.order || 'ASC'}}\nLIMIT {{data_table.pageSize}}\nOFFSET {{(data_table.pageNo - 1) * data_table.pageSize}};","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["appsmith.URL.queryParams.run_id","data_table.sortOrder.order || 'ASC'","data_table.pageSize","data_table.searchText || \"\"","data_table.sortOrder.column || 'test_result_id'","(data_table.pageNo - 1) * data_table.pageSize","appsmith.URL.queryParams.test_id"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Failed tests_SelectQuery","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818338"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Entities_dropdown_with_prefix","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 entity_id as \"label\" ,\n\t CONCAT('dot_model__',entity_id) as \"value\" \nfrom \n dot.configured_entities\nwhere\n {{Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\" }}","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\""],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Entities_dropdown_with_prefix","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 entity_id as \"label\" ,\n\t CONCAT('dot_model__',entity_id) as \"value\" \nfrom \n dot.configured_entities\nwhere\n {{Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\" }}","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\""],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Entities_dropdown_with_prefix","deleted":false,"gitSyncId":"62c0be1797ff1761a68b0a61_62c1eb9e97ff1761a68b0ac4"},{"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 return `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`;\n}","selfReferencingDataPaths":[],"jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n return `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`;\n}"],"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 return `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`;\n}","selfReferencingDataPaths":[],"jsArguments":[],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["() => {\n return `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`;\n}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_JSFunctions.getIds","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1cb293c75c97818389"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Entities_dropdown_dbt_ref_fmt","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 entity_id as \"label\" ,\n\t CONCAT('ref(''dot_model__',entity_id, ''')') as \"value\" \nfrom \n dot.configured_entities\nwhere\n {{Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\" }}","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\""],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Entities_dropdown_dbt_ref_fmt","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 entity_id as \"label\" ,\n\t CONCAT('ref(''dot_model__',entity_id, ''')') as \"value\" \nfrom \n dot.configured_entities\nwhere\n {{Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\" }}","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\""],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Entities_dropdown_dbt_ref_fmt","deleted":false,"gitSyncId":"62c204e997ff1761a68b0ade_62c2f9b297ff1761a68b0b35"},{"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":"Run results","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n rl.run_start as \"Run date\",\n ct.project_id,\n ct.description as \"Test\",\n ce.entity_id as \"Entity\", \n ct.test_type as \"Test type\",\n s.scenario_id as \"Scenario\",\n tr.test_status as \"Test status\",\n tr.rows_total as \"Rows tested\",\n tr.rows_failed as \"Rows failed\",\n\t CASE WHEN tr.rows_total = 0 THEN 0\n\t ELSE ROUND(100 * tr.rows_failed / (1.0*tr.rows_total),2) END \"% fail\",\n\t tr.run_id as \"Run id\",\n\t tr.test_id as \"Test id\"\nFROM\n dot.scenarios s,\n dot.configured_tests ct,\n dot.test_results_summary tr,\n dot.configured_entities ce,\n dot.run_log rl\nWHERE \n s.scenario_id=ct.scenario_id AND\n tr.test_id=ct.test_id AND\n ce.entity_id = ct.entity_id and \n rl.run_id = tr.run_id AND \n\t rl.project_id ilike '%{{data_table.searchText || \"\"}}%' AND\n\t rl.run_id = '{{appsmith.URL.queryParams.run_id}}'\nORDER BY \"{{data_table.sortOrder.column || 'Run id'}}\" {{data_table.sortOrder.order || 'ASC'}}\nLIMIT {{data_table.pageSize}}\nOFFSET {{(data_table.pageNo - 1) * data_table.pageSize}};","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["appsmith.URL.queryParams.run_id","data_table.sortOrder.order || 'ASC'","data_table.sortOrder.column || 'Run id'","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":"Run results","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n rl.run_start as \"Run date\",\n ct.project_id,\n ct.description as \"Test\",\n ce.entity_id as \"Entity\", \n ct.test_type as \"Test type\",\n s.scenario_id as \"Scenario\",\n tr.test_status as \"Test status\",\n tr.rows_total as \"Rows tested\",\n tr.rows_failed as \"Rows failed\",\n\t CASE WHEN tr.rows_total = 0 THEN 0\n\t ELSE ROUND(100 * tr.rows_failed / (1.0*tr.rows_total),2) END \"% fail\",\n\t tr.run_id as \"Run id\",\n\t tr.test_id as \"Test id\"\nFROM\n dot.scenarios s,\n dot.configured_tests ct,\n dot.test_results_summary tr,\n dot.configured_entities ce,\n dot.run_log rl\nWHERE \n s.scenario_id=ct.scenario_id AND\n tr.test_id=ct.test_id AND\n ce.entity_id = ct.entity_id and \n rl.run_id = tr.run_id AND \n\t rl.project_id ilike '%{{data_table.searchText || \"\"}}%' AND\n\t rl.run_id = '{{appsmith.URL.queryParams.run_id}}'\nORDER BY \"{{data_table.sortOrder.column || 'Run id'}}\" {{data_table.sortOrder.order || 'ASC'}}\nLIMIT {{data_table.pageSize}}\nOFFSET {{(data_table.pageNo - 1) * data_table.pageSize}};","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["appsmith.URL.queryParams.run_id","data_table.sortOrder.order || 'ASC'","data_table.sortOrder.column || 'Run id'","data_table.pageSize","data_table.searchText || \"\"","(data_table.pageNo - 1) * data_table.pageSize"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Run results_SelectQuery","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781834b"},{"pluginType":"JS","pluginId":"js-plugin","unpublishedAction":{"name":"getTestTypeDescription","fullyQualifiedName":"JSFunctions.getTestTypeDescription","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 var params = Test_Types_Cache.data.filter(function (el) {\n return el.test_type == test_type_in;\n });\n var tooltip = params.length == 0 ? ' ' : params[0].description;\n return tooltip;\n}","selfReferencingDataPaths":[],"jsArguments":[{"name":"function"},{"name":"(el"}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["test_type_in => {\n var params = Test_Types_Cache.data.filter(function (el) {\n return el.test_type == test_type_in;\n });\n var tooltip = params.length == 0 ? ' ' : params[0].description;\n return tooltip;\n}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"getTestTypeDescription","fullyQualifiedName":"JSFunctions.getTestTypeDescription","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 var params = Test_Types_Cache.data.filter(function (el) {\n return el.test_type == test_type_in;\n });\n var tooltip = params.length == 0 ? ' ' : params[0].description;\n return tooltip;\n}","selfReferencingDataPaths":[],"jsArguments":[{"name":"function"},{"name":"(el"}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["test_type_in => {\n var params = Test_Types_Cache.data.filter(function (el) {\n return el.test_type == test_type_in;\n });\n var tooltip = params.length == 0 ? ' ' : params[0].description;\n return tooltip;\n}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_JSFunctions.getTestTypeDescription","deleted":false,"gitSyncId":"62c4319bfa65ed18bbd7c88a_62c4d2678b0ebe338ec57999"},{"pluginType":"JS","pluginId":"js-plugin","unpublishedAction":{"name":"paramIsVisible","fullyQualifiedName":"JSFunctions.paramIsVisible","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, param_in) => {\n const params = Test_Parameters.data.map(item => {\n return item.test_type == test_type_in ? item.parameter : undefined;\n });\n return params.includes(param_in);\n}","selfReferencingDataPaths":[],"jsArguments":[{"name":"test_type_in"},{"name":"param_in"}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(test_type_in, param_in) => {\n const params = Test_Parameters.data.map(item => {\n return item.test_type == test_type_in ? item.parameter : undefined;\n });\n return params.includes(param_in);\n}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"paramIsVisible","fullyQualifiedName":"JSFunctions.paramIsVisible","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, param_in) => {\n const params = Test_Parameters.data.map(item => {\n return item.test_type == test_type_in ? item.parameter : undefined;\n });\n return params.includes(param_in);\n}","selfReferencingDataPaths":[],"jsArguments":[{"name":"test_type_in"},{"name":"param_in"}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(test_type_in, param_in) => {\n const params = Test_Parameters.data.map(item => {\n return item.test_type == test_type_in ? item.parameter : undefined;\n });\n return params.includes(param_in);\n}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_JSFunctions.paramIsVisible","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bd1a71b293c75c978183fe"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Test_Types_Cache","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, description from dot.test_types ","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Test_Types_Cache","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, description from dot.test_types ","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Test_Types_Cache","deleted":false,"gitSyncId":"62c4319bfa65ed18bbd7c88a_62c4c87e8b0ebe338ec57990"},{"pluginType":"JS","pluginId":"js-plugin","unpublishedAction":{"name":"getTestParameterExample","fullyQualifiedName":"JSFunctions.getTestParameterExample","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_parameter_in => {\n var params = Test_Parameters_Cache.data.filter(function (el) {\n return el.parameter == test_parameter_in;\n });\n var example = params.length == 0 ? ' ' : params[0].example;\n return example;\n}","selfReferencingDataPaths":[],"jsArguments":[{"name":"function"},{"name":"(el"}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["test_parameter_in => {\n var params = Test_Parameters_Cache.data.filter(function (el) {\n return el.parameter == test_parameter_in;\n });\n var example = params.length == 0 ? ' ' : params[0].example;\n return example;\n}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"getTestParameterExample","fullyQualifiedName":"JSFunctions.getTestParameterExample","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_parameter_in => {\n var params = Test_Parameters_Cache.data.filter(function (el) {\n return el.parameter == test_parameter_in;\n });\n var example = params.length == 0 ? ' ' : params[0].example;\n return example;\n}","selfReferencingDataPaths":[],"jsArguments":[{"name":"function"},{"name":"(el"}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["test_parameter_in => {\n var params = Test_Parameters_Cache.data.filter(function (el) {\n return el.parameter == test_parameter_in;\n });\n var example = params.length == 0 ? ' ' : params[0].example;\n return example;\n}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_JSFunctions.getTestParameterExample","deleted":false,"gitSyncId":"62c4319bfa65ed18bbd7c88a_62c4da798b0ebe338ec5799b"},{"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 }};","selfReferencingDataPaths":[],"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 }};","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818366"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Run_Fails_By_Scenario_plot","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Run results","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n s.scenario as \"x\", \n ROUND(100 * SUM(tr.rows_failed) / (1.0*SUM(tr.rows_total)),2) as \"y\"\nFROM\n dot.scenarios s,\n dot.configured_tests ct,\n dot.test_results_summary tr,\n dot.configured_entities ce,\n dot.run_log rl,\n dot.entity_categories ec \nWHERE \n s.scenario_id=ct.scenario_id AND\n tr.test_id=ct.test_id AND\n ce.entity_id = ct.entity_id and \n rl.run_id = tr.run_id and \n ce.entity_category = ec.entity_category and\n\t rl.run_id = '{{appsmith.URL.queryParams.run_id}}'\ngroup by\n s.scenario ","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["appsmith.URL.queryParams.run_id"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Run_Fails_By_Scenario_plot","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Run results","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n s.scenario as \"x\", \n ROUND(100 * SUM(tr.rows_failed) / (1.0*SUM(tr.rows_total)),2) as \"y\"\nFROM\n dot.scenarios s,\n dot.configured_tests ct,\n dot.test_results_summary tr,\n dot.configured_entities ce,\n dot.run_log rl,\n dot.entity_categories ec \nWHERE \n s.scenario_id=ct.scenario_id AND\n tr.test_id=ct.test_id AND\n ce.entity_id = ct.entity_id and \n rl.run_id = tr.run_id and \n ce.entity_category = ec.entity_category and\n\t rl.run_id = '{{appsmith.URL.queryParams.run_id}}'\ngroup by\n s.scenario ","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["appsmith.URL.queryParams.run_id"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Run results_Run_Fails_By_Scenario_plot","deleted":false,"gitSyncId":"62c4319bfa65ed18bbd7c88a_62c5adae8b0ebe338ec579be"},{"pluginType":"JS","pluginId":"js-plugin","unpublishedAction":{"name":"getEntityColumns","fullyQualifiedName":"JSFunctions.getEntityColumns","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":"(project_id_in, entity_id_in, entity_id_in, data_type_in) => {\n entity_id_in = entity_id_in == undefined ? undefined : entity_id_in.replace(\"ref('dot_model__\", \"\").replace(\"')\", \"\");\n var columns = Entity_column_names_cache.data.filter(function (el) {\n return (el.entity_id == entity_id_in || entity_id_in == undefined) && (el.entity_id == entity_id_in || entity_id_in == undefined) && (el.project_id == project_id_in || project_id_in == undefined) && (el.data_type == data_type_in || data_type_in == undefined);\n }).map(({label, value}) => ({\n label,\n value\n }));\n return columns;\n}","selfReferencingDataPaths":[],"jsArguments":[{},{},{},{}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(project_id_in, entity_id_in, entity_id_in, data_type_in) => {\n entity_id_in = entity_id_in == undefined ? undefined : entity_id_in.replace(\"ref('dot_model__\", \"\").replace(\"')\", \"\");\n var columns = Entity_column_names_cache.data.filter(function (el) {\n return (el.entity_id == entity_id_in || entity_id_in == undefined) && (el.entity_id == entity_id_in || entity_id_in == undefined) && (el.project_id == project_id_in || project_id_in == undefined) && (el.data_type == data_type_in || data_type_in == undefined);\n }).map(({label, value}) => ({\n label,\n value\n }));\n return columns;\n}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"getEntityColumns","fullyQualifiedName":"JSFunctions.getEntityColumns","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":"(project_id_in, entity_id_in, entity_id_in, data_type_in) => {\n entity_id_in = entity_id_in == undefined ? undefined : entity_id_in.replace(\"ref('dot_model__\", \"\").replace(\"')\", \"\");\n var columns = Entity_column_names_cache.data.filter(function (el) {\n return (el.entity_id == entity_id_in || entity_id_in == undefined) && (el.entity_id == entity_id_in || entity_id_in == undefined) && (el.project_id == project_id_in || project_id_in == undefined) && (el.data_type == data_type_in || data_type_in == undefined);\n }).map(({label, value}) => ({\n label,\n value\n }));\n return columns;\n}","selfReferencingDataPaths":[],"jsArguments":[{},{},{},{}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(project_id_in, entity_id_in, entity_id_in, data_type_in) => {\n entity_id_in = entity_id_in == undefined ? undefined : entity_id_in.replace(\"ref('dot_model__\", \"\").replace(\"')\", \"\");\n var columns = Entity_column_names_cache.data.filter(function (el) {\n return (el.entity_id == entity_id_in || entity_id_in == undefined) && (el.entity_id == entity_id_in || entity_id_in == undefined) && (el.project_id == project_id_in || project_id_in == undefined) && (el.data_type == data_type_in || data_type_in == undefined);\n }).map(({label, value}) => ({\n label,\n value\n }));\n return columns;\n}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_JSFunctions.getEntityColumns","deleted":false,"gitSyncId":"62c204e997ff1761a68b0ade_62c2078397ff1761a68b0b24"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Failed_Test_data_record","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Failed tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n dot.get_test_result_data_record(ce.entity_id, tr.id_column_name, \n tr.id_column_value,CONCAT(dp.project_schema,'_tests'))\nFROM \n dot.\"test_results\" tr,\n\t\tdot.configured_entities ce,\n\t\tdot.projects dp\nWHERE \n\t tr.test_result_id = '{{data_table.selectedRow.test_result_id}}' AND\n\t tr.entity_id = ce.entity_id AND\n\t ce.project_id = dp.project_id","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["data_table.selectedRow.test_result_id"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Failed_Test_data_record","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Failed tests","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n dot.get_test_result_data_record(ce.entity_id, tr.id_column_name, \n tr.id_column_value,CONCAT(dp.project_schema,'_tests'))\nFROM \n dot.\"test_results\" tr,\n\t\tdot.configured_entities ce,\n\t\tdot.projects dp\nWHERE \n\t tr.test_result_id = '{{data_table.selectedRow.test_result_id}}' AND\n\t tr.entity_id = ce.entity_id AND\n\t ce.project_id = dp.project_id","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["data_table.selectedRow.test_result_id"],"userSetOnLoad":true,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Failed tests_Failed_Test_data_record","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781833a"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Run_fails_by_category_plot","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Run results","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n ec.description as \"x\", \n ROUND(100 * SUM(tr.rows_failed) / (1.0*SUM(tr.rows_total)),2) as \"y\"\nFROM\n dot.scenarios s,\n dot.configured_tests ct,\n dot.test_results_summary tr,\n dot.configured_entities ce,\n dot.run_log rl,\n dot.entity_categories ec \nWHERE \n s.scenario_id=ct.scenario_id AND\n tr.test_id=ct.test_id AND\n ce.entity_id = ct.entity_id and \n rl.run_id = tr.run_id and \n ce.entity_category = ec.entity_category and\n\t rl.run_id = '{{appsmith.URL.queryParams.run_id}}'\ngroup by\n ec.description ","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["appsmith.URL.queryParams.run_id"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Run_fails_by_category_plot","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Run results","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n ec.description as \"x\", \n ROUND(100 * SUM(tr.rows_failed) / (1.0*SUM(tr.rows_total)),2) as \"y\"\nFROM\n dot.scenarios s,\n dot.configured_tests ct,\n dot.test_results_summary tr,\n dot.configured_entities ce,\n dot.run_log rl,\n dot.entity_categories ec \nWHERE \n s.scenario_id=ct.scenario_id AND\n tr.test_id=ct.test_id AND\n ce.entity_id = ct.entity_id and \n rl.run_id = tr.run_id and \n ce.entity_category = ec.entity_category and\n\t rl.run_id = '{{appsmith.URL.queryParams.run_id}}'\ngroup by\n ec.description ","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["appsmith.URL.queryParams.run_id"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Run results_Run_fails_by_category_plot","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818350"},{"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}};","selfReferencingDataPaths":[],"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}};","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818355"},{"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_id\" = '{{entity_id.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 == null ? '' : appsmith.user.name == null }}'\nWHERE \"entity_id\" = {{data_table.selectedRow.entity_id}};","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["entity_definition.text","entity_id.text","entity_category.selectedOptionValue","appsmith.user.name == null ? '' : appsmith.user.name == null","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_id\" = '{{entity_id.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 == null ? '' : appsmith.user.name == null }}'\nWHERE \"entity_id\" = {{data_table.selectedRow.entity_id}};","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["entity_definition.text","entity_id.text","entity_category.selectedOptionValue","appsmith.user.name == null ? '' : appsmith.user.name == null","data_table.selectedRow.entity_id"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Entities_EditQuery","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781834e"},{"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}};","selfReferencingDataPaths":[],"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}};","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818349"},{"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","selfReferencingDataPaths":[],"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","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818344"},{"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;","selfReferencingDataPaths":[],"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;","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1cb293c75c9781838a"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Test_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, parameter from dot.test_parameters_interface;\n","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Test_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, parameter from dot.test_parameters_interface;\n","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Test_Parameters","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bd1a8eb293c75c97818400"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Run_Fails_by_Test_Type","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Run results","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n tt.description as \"x\", \n CASE WHEN SUM(tr.rows_total) = 0 THEN \n\t 0 \n\t ELSE\n\t ROUND(100 * SUM(tr.rows_failed) / (1.0*SUM(tr.rows_total)),2) \n\t END as \"y\"\nFROM\n dot.configured_tests ct,\n dot.test_results_summary tr,\n dot.test_types tt,\n dot.run_log rl\nWHERE \n tr.test_id=ct.test_id AND\n tt.test_type = ct.test_type and \n rl.run_id = tr.run_id and \n\t rl.run_id = '{{appsmith.URL.queryParams.run_id}}'\ngroup by\n tt.description ","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["appsmith.URL.queryParams.run_id"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Run_Fails_by_Test_Type","datasource":{"name":"dot_db_local","pluginId":"postgres-plugin","messages":[],"isAutoGenerated":false,"id":"dot_db_local","deleted":false,"policies":[],"userPermissions":[]},"pageId":"Run results","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT \n tt.description as \"x\", \n CASE WHEN SUM(tr.rows_total) = 0 THEN \n\t 0 \n\t ELSE\n\t ROUND(100 * SUM(tr.rows_failed) / (1.0*SUM(tr.rows_total)),2) \n\t END as \"y\"\nFROM\n dot.configured_tests ct,\n dot.test_results_summary tr,\n dot.test_types tt,\n dot.run_log rl\nWHERE \n tr.test_id=ct.test_id AND\n tt.test_type = ct.test_type and \n rl.run_id = tr.run_id and \n\t rl.run_id = '{{appsmith.URL.queryParams.run_id}}'\ngroup by\n tt.description ","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["appsmith.URL.queryParams.run_id"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Run results_Run_Fails_by_Test_Type","deleted":false,"gitSyncId":"62c4319bfa65ed18bbd7c88a_62c5ad3b8b0ebe338ec579bc"},{"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 const test_types = Test_Types_That_Use_Column.data.map(item => {\n return item.test_type;\n });\n return test_types.includes(test_type_in);\n}","selfReferencingDataPaths":[],"jsArguments":[{"name":"item"},{"name":"","value":">"},{"name":"{"},{"name":"return"},{"name":"item.test_type;"},{"name":"}"}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["test_type_in => {\n const test_types = Test_Types_That_Use_Column.data.map(item => {\n return item.test_type;\n });\n return test_types.includes(test_type_in);\n}"],"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 const test_types = Test_Types_That_Use_Column.data.map(item => {\n return item.test_type;\n });\n return test_types.includes(test_type_in);\n}","selfReferencingDataPaths":[],"jsArguments":[{"name":"item"},{"name":"","value":">"},{"name":"{"},{"name":"return"},{"name":"item.test_type;"},{"name":"}"}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["test_type_in => {\n const test_types = Test_Types_That_Use_Column.data.map(item => {\n return item.test_type;\n });\n return test_types.includes(test_type_in);\n}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_JSFunctions.testUsesColumn","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818364"},{"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_id\",\n\t\"entity_category\",\n\t\"project_id\",\n\t\"entity_definition\",\n\t\"date_added\",\n\t\"date_modified\",\n\t\"last_updated_by\")\nVALUES (\n\t'{{insert_form.formData.entity_id}}',\n\t'{{insert_form.formData.entity_category}}',\n\t'{{insert_form.formData.entity_project_id}}',\n\t'{{insert_form.formData.entity_definition}}',\n\tNOW(),\n\tNOW(),\n\t'{{appsmith.user.name == null ? '' : appsmith.user.name == null }}');","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["insert_form.formData.entity_project_id","insert_form.formData.entity_definition","appsmith.user.name == null ? '' : appsmith.user.name == null","insert_form.formData.entity_category","insert_form.formData.entity_id"],"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_id\",\n\t\"entity_category\",\n\t\"project_id\",\n\t\"entity_definition\",\n\t\"date_added\",\n\t\"date_modified\",\n\t\"last_updated_by\")\nVALUES (\n\t'{{insert_form.formData.entity_id}}',\n\t'{{insert_form.formData.entity_category}}',\n\t'{{insert_form.formData.entity_project_id}}',\n\t'{{insert_form.formData.entity_definition}}',\n\tNOW(),\n\tNOW(),\n\t'{{appsmith.user.name == null ? '' : appsmith.user.name == null }}');","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["insert_form.formData.entity_project_id","insert_form.formData.entity_definition","appsmith.user.name == null ? '' : appsmith.user.name == null","insert_form.formData.entity_category","insert_form.formData.entity_id"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Entities_InsertQuery","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818343"},{"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":"Entities","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select \n project_id as \"label\",\n project_id as \"value\"\nfrom \n dot.projects\n","selfReferencingDataPaths":[],"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":"Entities","actionConfiguration":{"timeoutInMillisecond":10000.0,"paginationType":"NONE","encodeParamsToggle":true,"body":"select \n project_id as \"label\",\n project_id as \"value\"\nfrom \n dot.projects\n","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Entities_Projects_Dropdown","deleted":false,"gitSyncId":"62d47185ee678f7d50b97a55_62d849788dd06c702055913e"},{"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);","selfReferencingDataPaths":[],"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);","selfReferencingDataPaths":[],"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":"62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818342"},{"pluginType":"JS","pluginId":"js-plugin","unpublishedAction":{"name":"getTestParameterDescription","fullyQualifiedName":"JSFunctions.getTestParameterDescription","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_parameter_in => {\n var params = Test_Parameters_Cache.data.filter(function (el) {\n return el.parameter == test_parameter_in;\n });\n var tooltip = params.length == 0 ? ' ' : params[0].description;\n return tooltip;\n}","selfReferencingDataPaths":[],"jsArguments":[{"name":"function"},{"name":"(el"}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["test_parameter_in => {\n var params = Test_Parameters_Cache.data.filter(function (el) {\n return el.parameter == test_parameter_in;\n });\n var tooltip = params.length == 0 ? ' ' : params[0].description;\n return tooltip;\n}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"getTestParameterDescription","fullyQualifiedName":"JSFunctions.getTestParameterDescription","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_parameter_in => {\n var params = Test_Parameters_Cache.data.filter(function (el) {\n return el.parameter == test_parameter_in;\n });\n var tooltip = params.length == 0 ? ' ' : params[0].description;\n return tooltip;\n}","selfReferencingDataPaths":[],"jsArguments":[{"name":"function"},{"name":"(el"}],"isAsync":false},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["test_parameter_in => {\n var params = Test_Parameters_Cache.data.filter(function (el) {\n return el.parameter == test_parameter_in;\n });\n var tooltip = params.length == 0 ? ' ' : params[0].description;\n return tooltip;\n}"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_JSFunctions.getTestParameterDescription","deleted":false,"gitSyncId":"62c4319bfa65ed18bbd7c88a_62c4ccb38b0ebe338ec57994"},{"pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"Test_Parameters_Cache","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 * from dot.test_parameters_interface","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"publishedAction":{"name":"Test_Parameters_Cache","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 * from dot.test_parameters_interface","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Test_Parameters_Cache","deleted":false,"gitSyncId":"62c4319bfa65ed18bbd7c88a_62c4cc7e8b0ebe338ec57992"},{"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\t \"test_id\",\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) VALUES(\n\t uuid_generate_v3(uuid_ns_oid(), '123'), \n {{Edit_Add_Test_Form.formData.test_activated}},\n\t\t'{{Edit_Add_Test_Form.formData.project_id}}',\n\t\t'{{Edit_Add_Test_Form.formData.scenario_id}}',\n\t\t {{Edit_Add_Test_Form.formData.priority}},\n\t\t'{{Edit_Add_Test_Form.formData.description}}',\n\t\t'{{Edit_Add_Test_Form.formData.impact}}',\n\t\t'{{Edit_Add_Test_Form.formData.proposed_remediation}}',\n\t\t'{{Edit_Add_Test_Form.formData.entity_id}}',\n\t '{{Edit_Add_Test_Form.formData.test_type}}',\n\t '{{Edit_Add_Test_Form.formData.column_name}}',\n\t\t'{{Edit_Add_Test_Form.formData.form_test_parameters_string}}',\n\t\t'{{appsmith.user.name == null ? '' : appsmith.user.name == null }}',\n\t\t NOW(),\n\t\t NOW()) ;\n","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Edit_Add_Test_Form.formData.description","Edit_Add_Test_Form.formData.scenario_id","Edit_Add_Test_Form.formData.impact","Edit_Add_Test_Form.formData.entity_id","Edit_Add_Test_Form.formData.priority","Edit_Add_Test_Form.formData.project_id","Edit_Add_Test_Form.formData.test_type","Edit_Add_Test_Form.formData.column_name","Edit_Add_Test_Form.formData.proposed_remediation","appsmith.user.name == null ? '' : appsmith.user.name == null","Edit_Add_Test_Form.formData.test_activated","Edit_Add_Test_Form.formData.form_test_parameters_string"],"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\t \"test_id\",\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) VALUES(\n\t uuid_generate_v3(uuid_ns_oid(), '123'), \n {{Edit_Add_Test_Form.formData.test_activated}},\n\t\t'{{Edit_Add_Test_Form.formData.project_id}}',\n\t\t'{{Edit_Add_Test_Form.formData.scenario_id}}',\n\t\t {{Edit_Add_Test_Form.formData.priority}},\n\t\t'{{Edit_Add_Test_Form.formData.description}}',\n\t\t'{{Edit_Add_Test_Form.formData.impact}}',\n\t\t'{{Edit_Add_Test_Form.formData.proposed_remediation}}',\n\t\t'{{Edit_Add_Test_Form.formData.entity_id}}',\n\t '{{Edit_Add_Test_Form.formData.test_type}}',\n\t '{{Edit_Add_Test_Form.formData.column_name}}',\n\t\t'{{Edit_Add_Test_Form.formData.form_test_parameters_string}}',\n\t\t'{{appsmith.user.name == null ? '' : appsmith.user.name == null }}',\n\t\t NOW(),\n\t\t NOW()) ;\n","selfReferencingDataPaths":[],"pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Edit_Add_Test_Form.formData.description","Edit_Add_Test_Form.formData.scenario_id","Edit_Add_Test_Form.formData.impact","Edit_Add_Test_Form.formData.entity_id","Edit_Add_Test_Form.formData.priority","Edit_Add_Test_Form.formData.project_id","Edit_Add_Test_Form.formData.test_type","Edit_Add_Test_Form.formData.column_name","Edit_Add_Test_Form.formData.proposed_remediation","appsmith.user.name == null ? '' : appsmith.user.name == null","Edit_Add_Test_Form.formData.test_activated","Edit_Add_Test_Form.formData.form_test_parameters_string"],"userSetOnLoad":false,"confirmBeforeExecute":false,"policies":[],"userPermissions":[]},"id":"Tests_Add_Test","deleted":false,"gitSyncId":"62c4319bfa65ed18bbd7c88a_62c4e3eb8b0ebe338ec5799e"}],"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\tparamIsVisible: (test_type_in, param_in) => {\n\t\tconst params = Test_Parameters.data.map(item => { return item.test_type == test_type_in ? item.parameter : undefined;});\n\t\treturn params.includes(param_in);\n\t},\n\tgetEntityColumns: (project_id_in, entity_id_in, data_type_in) => { \n\t\t//project_id_in = 'riders';\n\t\t//entity_id_in = 'riders_all_fuel_log_data';\n\t\t//data_type_in='double precision'\n\t\t// JSON forms don't allow us to access selected label, unlike regular forms, so we need tor strip out artifacts\n\t\t// TODO Refactor test_parameters to lose dbt artifacts like ref('')\n\t\tentity_id_in = entity_id_in == undefined ? undefined : entity_id_in.replace(\"ref('dot_model__\",\"\").replace(\"')\",\"\");\n\t\t// Filter and subset\n\t\tvar columns = Entity_column_names_cache.data.filter(function (el) {\n \t\treturn (el.entity_id == entity_id_in || entity_id_in == undefined) &&\n\t\t\t\t (el.entity_id == entity_id_in || entity_id_in == undefined) &&\n\t\t\t\t (el.project_id == project_id_in || project_id_in == undefined) &&\n\t\t\t\t (el.data_type == data_type_in || data_type_in == undefined);\n\t\t}).map( ({label, value}) => ({label, value} ) );\n\t\treturn columns;\n\t},\n\tgetTestParameterDescription: (test_parameter_in) => { \n\t\t//test_parameter_in = 'values';\n\t\t// Filter \n\t\tvar params = Test_Parameters_Cache.data.filter(function (el) {\n \t\treturn el.parameter == test_parameter_in;\n\t\t});\n\t\tvar tooltip = params.length == 0 ? ' ' : params[0].description;\n\t\treturn tooltip;\n\t},\n\tgetTestParameterExample: (test_parameter_in) => { \n\t\tvar params = Test_Parameters_Cache.data.filter(function (el) {\n \t\treturn el.parameter == test_parameter_in;\n\t\t});\n\t\tvar example = params.length == 0 ? ' ' : params[0].example;\n\t\treturn example;\n\t},\n\tgetTestTypeDescription: (test_type_in) => { \n\t\t// Filter \n\t\tvar params = Test_Types_Cache.data.filter(function (el) {\n \t\treturn el.test_type == test_type_in;\n\t\t});\n\t\tvar tooltip = params.length == 0 ? ' ' : params[0].description;\n\t\treturn tooltip;\n\t}\n}","variables":[],"userPermissions":[]},"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\tparamIsVisible: (test_type_in, param_in) => {\n\t\tconst params = Test_Parameters.data.map(item => { return item.test_type == test_type_in ? item.parameter : undefined;});\n\t\treturn params.includes(param_in);\n\t},\n\tgetEntityColumns: (project_id_in, entity_id_in, data_type_in) => { \n\t\t//project_id_in = 'Brac';\n\t\t//entity_id_in = 'ancview_pregnancy';\n\t\t// JSON forms don't allow us to access selected label, unlike regular forms, so we need tor strip out artifacts\n\t\t// TODO Refactor test_parameters to lose dbt artifacts like ref('')\n\t\tentity_id_in = entity_id_in == undefined ? undefined : entity_id_in.replace(\"ref('dot_model__\",\"\").replace(\"')\",\"\");\n\t\t// Filter and subset\n\t\tvar columns = Entity_column_names_cache.data.filter(function (el) {\n \t\treturn (el.entity_id == entity_id_in || entity_id_in == undefined) &&\n\t\t\t\t (el.entity_id == entity_id_in || entity_id_in == undefined) &&\n\t\t\t\t (el.project_id == project_id_in || project_id_in == undefined) &&\n\t\t\t\t (el.data_type == data_type_in || data_type_in == undefined);\n\t\t}).map( ({label, value}) => ({label, value} ) );\n\t\treturn columns;\n\t},\n\tgetTestParameterDescription: (test_parameter_in) => { \n\t\t//test_parameter_in = 'values';\n\t\t// Filter \n\t\tvar params = Test_Parameters_Cache.data.filter(function (el) {\n \t\treturn el.parameter == test_parameter_in;\n\t\t});\n\t\tvar tooltip = params.length == 0 ? ' ' : params[0].description;\n\t\treturn tooltip;\n\t},\n\tgetTestParameterExample: (test_parameter_in) => { \n\t\tvar params = Test_Parameters_Cache.data.filter(function (el) {\n \t\treturn el.parameter == test_parameter_in;\n\t\t});\n\t\tvar example = params.length == 0 ? ' ' : params[0].example;\n\t\treturn example;\n\t},\n\tgetTestTypeDescription: (test_type_in) => { \n\t\t// Filter \n\t\tvar params = Test_Types_Cache.data.filter(function (el) {\n \t\treturn el.test_type == test_type_in;\n\t\t});\n\t\tvar tooltip = params.length == 0 ? ' ' : params[0].description;\n\t\treturn tooltip;\n\t}\n}","variables":[],"userPermissions":[]},"id":"Tests_JSFunctions","deleted":false,"gitSyncId":"62bcfc1bb293c75c97818326_62bcfc1cb293c75c9781838d"}],"updatedResources":{"actionList":["JSFunctions.bulkUpdate##ENTITY_SEPARATOR##Tests","EditQuery##ENTITY_SEPARATOR##Entities","SelectQuery##ENTITY_SEPARATOR##Run log","Entities_dropdown_with_prefix##ENTITY_SEPARATOR##Tests","EditQuery##ENTITY_SEPARATOR##Projects","Test_parameters_sample##ENTITY_SEPARATOR##Tests","Test_Types_That_Use_Parameters##ENTITY_SEPARATOR##Tests","JSFunctions.allowUpdate##ENTITY_SEPARATOR##Tests","JSFunctions.getTestParameterExample##ENTITY_SEPARATOR##Tests","Bulk_Update_Test_Activated##ENTITY_SEPARATOR##Tests","InsertQuery##ENTITY_SEPARATOR##Categories","Delete_Test##ENTITY_SEPARATOR##Tests","Bulk_Delete_Tests##ENTITY_SEPARATOR##Tests","Entity_Categories_Dropdown##ENTITY_SEPARATOR##Entities","Test_Types_Cache##ENTITY_SEPARATOR##Tests","SelectQuery##ENTITY_SEPARATOR##Failed tests","DeleteQuery##ENTITY_SEPARATOR##Entities","Test_Parameters_Cache##ENTITY_SEPARATOR##Tests","DeleteQuery##ENTITY_SEPARATOR##Projects","Entities_dropdown_dbt_ref_fmt##ENTITY_SEPARATOR##Tests","Test_Parameters##ENTITY_SEPARATOR##Tests","JSFunctions.paramIsVisible##ENTITY_SEPARATOR##Tests","JSFunctions.bulkDelete##ENTITY_SEPARATOR##Tests","DB_Schemas_dropdown##ENTITY_SEPARATOR##Projects","Entities_dropdown##ENTITY_SEPARATOR##Tests","JSFunctions.getIds##ENTITY_SEPARATOR##Tests","Projects_Dropdown##ENTITY_SEPARATOR##Entities","Entity_column_names_cache##ENTITY_SEPARATOR##Tests","JSFunctions.testUsesParameters##ENTITY_SEPARATOR##Tests","Failed_Test_data_record##ENTITY_SEPARATOR##Failed tests","JSFunctions.getTestTypeDescription##ENTITY_SEPARATOR##Tests","SelectQuery##ENTITY_SEPARATOR##Run results","Test_Types_That_Use_Column##ENTITY_SEPARATOR##Tests","Testtypes_dropdown##ENTITY_SEPARATOR##Tests","JSFunctions.testUsesColumn##ENTITY_SEPARATOR##Tests","Run_Fails_by_Test_Type##ENTITY_SEPARATOR##Run results","InsertQuery##ENTITY_SEPARATOR##Entities","EditQuery##ENTITY_SEPARATOR##Categories","SelectQuery##ENTITY_SEPARATOR##Entities","Scenario_dropdown##ENTITY_SEPARATOR##Tests","Run_Fails_By_Scenario_plot##ENTITY_SEPARATOR##Run results","Projects_dropdown##ENTITY_SEPARATOR##Tests","Run_fails_by_category_plot##ENTITY_SEPARATOR##Run results","InsertQuery##ENTITY_SEPARATOR##Projects","Configured_tests_data##ENTITY_SEPARATOR##Tests","Add_Test##ENTITY_SEPARATOR##Tests","JSFunctions.getTestParameterDescription##ENTITY_SEPARATOR##Tests","Edit_Test##ENTITY_SEPARATOR##Tests","DeleteQuery##ENTITY_SEPARATOR##Categories","JSFunctions.getEntityColumns##ENTITY_SEPARATOR##Tests","SelectQuery##ENTITY_SEPARATOR##Projects","SelectQuery##ENTITY_SEPARATOR##Categories"],"pageList":["Failed tests","Categories","Projects","Run results","Run log","Tests","Entities"],"actionCollectionList":["JSFunctions##ENTITY_SEPARATOR##Tests"]},"editModeTheme":{"name":"Classic","displayName":"Classic","isSystemTheme":true,"deleted":false},"publishedTheme":{"name":"Classic","displayName":"Classic","isSystemTheme":true,"deleted":false}} \ No newline at end of file +{ + "clientSchemaVersion": 1.0, + "serverSchemaVersion": 6.0, + "exportedApplication": { + "name": "Data Observation Toolkit", + "isPublic": false, + "pages": [ + { + "id": "Run log", + "isDefault": true + }, + { + "id": "Run results", + "isDefault": false + }, + { + "id": "Failed tests", + "isDefault": false + }, + { + "id": "Projects", + "isDefault": false + }, + { + "id": "Entities", + "isDefault": false + }, + { + "id": "Categories", + "isDefault": false + }, + { + "id": "Tests", + "isDefault": false + } + ], + "publishedPages": [ + { + "id": "Run log", + "isDefault": true + }, + { + "id": "Run results", + "isDefault": false + }, + { + "id": "Failed tests", + "isDefault": false + }, + { + "id": "Projects", + "isDefault": false + }, + { + "id": "Entities", + "isDefault": false + }, + { + "id": "Categories", + "isDefault": false + }, + { + "id": "Tests", + "isDefault": false + } + ], + "viewMode": false, + "appIsExample": false, + "unreadCommentThreads": 0.0, + "clonedFromApplicationId": "62bc52b4b293c75c978181fc", + "color": "#F1DEFF", + "icon": "pie-chart", + "slug": "data-observation-toolkit", + "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": "Failed tests", + "slug": "failed-tests", + "layouts": [ + { + "viewMode": false, + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 1174.0, + "snapColumns": 64.0, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0.0, + "bottomRow": 880.0, + "containerStyle": "none", + "snapRows": 125.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 64.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": 890.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": [ + { + "widgetName": "Text17Copy", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "searchTags": [ + "typography", + "paragraph" + ], + "topRow": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "overflow": "NONE", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "parentColumnSpace": 15.265625, + "dynamicTriggerPathList": [], + "leftColumn": 19.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + }, + { + "key": "text" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "Run ID: {{appsmith.URL.queryParams.run_id}}; Test ID: {{appsmith.URL.queryParams.test_id}}", + "key": "cmvb93zwil", + "isDeprecated": false, + "rightColumn": 64.0, + "textAlign": "RIGHT", + "widgetId": "0h26pt3z0q", + "isVisible": true, + "fontStyle": "", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontSize": "0.575rem" + }, + { + "boxShadow": "none", + "widgetName": "Text16", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "topRow": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 11.78515625, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "leftColumn": 2.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + } + ], + "text": "Failed tests", + "labelTextSize": "0.875rem", + "rightColumn": 10.0, + "textAlign": "LEFT", + "widgetId": "urzv99hdc8", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "1.5rem" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "onSort": "{{SelectQuery.run()}}", + "isVisibleDownload": true, + "iconSVG": "/static/media/icon.db8a9cbd.svg", + "topRow": 11.0, + "isSortable": true, + "onPageChange": "{{SelectQuery.run()}}", + "type": "TABLE_WIDGET", + "animateLoading": true, + "dynamicBindingPathList": [ + { + "key": "tableData" + }, + { + "key": "accentColor" + }, + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + }, + { + "key": "primaryColumns.status.computedValue" + }, + { + "key": "derivedColumns.customColumn1.boxShadow" + }, + { + "key": "primaryColumns.customColumn1.boxShadow" + }, + { + "key": "derivedColumns.customColumn1.borderRadius" + }, + { + "key": "primaryColumns.customColumn1.borderRadius" + }, + { + "key": "derivedColumns.customColumn1.buttonLabel" + }, + { + "key": "primaryColumns.customColumn1.buttonLabel" + }, + { + "key": "primaryColumns.test_type.computedValue" + }, + { + "key": "primaryColumns.entity_id.computedValue" + }, + { + "key": "primaryColumns.data_record.computedValue" + }, + { + "key": "primaryColumns.description.computedValue" + }, + { + "key": "primaryColumns.test_result_id.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": "test_result_id", + "columnSizeMap": { + "task": 245.0, + "step": 62.0, + "status": 75.0, + "test_id": 367.0, + "test_result_id": 318.0, + "run_id": 251.0, + "data_record": 818.0, + "test_type": 227.0, + "description": 314.0 + }, + "widgetName": "data_table", + "defaultPageSize": 0.0, + "columnOrder": [ + "status", + "description", + "test_type", + "entity_id", + "data_record", + "test_result_id", + "customColumn1" + ], + "dynamicPropertyPathList": [ + { + "key": "primaryColumns.customColumn1.onClick" + } + ], + "displayName": "Table", + "bottomRow": 87.0, + "parentRowSpace": 10.0, + "defaultSelectedRow": "0", + "hideCard": false, + "parentColumnSpace": 16.3125, + "dynamicTriggerPathList": [ + { + "key": "onPageChange" + }, + { + "key": "onSearchTextChanged" + }, + { + "key": "onSort" + }, + { + "key": "primaryColumns.customColumn1.onClick" + } + ], + "primaryColumns": { + "status": { + "index": 4.0, + "width": 150.0, + "id": "status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": false, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "status", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.status))}}", + "cellBackground": "" + }, + "customColumn1": { + "index": 3.0, + "width": 150.0, + "id": "customColumn1", + "columnType": "button", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": true, + "label": "Data", + "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": "#3b82f6", + "iconName": "", + "buttonLabel": "{{data_table.sanitizedTableData.map((currentRow) => ( 'View data'))}}", + "buttonVariant": "TERTIARY", + "onClick": "{{Failed_Test_data_record.run(); showModal('View_data')}}" + }, + "test_type": { + "index": 3.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": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.test_type))}}", + "cellBackground": "" + }, + "entity_id": { + "index": 4.0, + "width": 150.0, + "id": "entity_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "entity_id", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_id))}}", + "cellBackground": "" + }, + "data_record": { + "index": 5.0, + "width": 150.0, + "id": "data_record", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "data_record", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.data_record))}}", + "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": "" + }, + "test_result_id": { + "index": 5.0, + "width": 150.0, + "id": "test_result_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_result_id", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.test_result_id))}}", + "cellBackground": "" + } + }, + "key": "zba5qel0au", + "derivedColumns": { + "customColumn1": { + "index": 3.0, + "width": 150.0, + "id": "customColumn1", + "columnType": "button", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": true, + "label": "Data", + "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": "#3b82f6", + "iconName": "", + "buttonLabel": "{{data_table.sanitizedTableData.map((currentRow) => ( 'View data'))}}", + "buttonVariant": "TERTIARY", + "onClick": "{{navigateTo('Failed test data',{\"run_id\":data_table.selectedRow.Run_id, \"run_date\":data_table.selectedRow.Run_date, \"test_id\":data_table.selectedRow.Test_id, \"test_description\":data_table.selectedRow.Test, \"test_result_id\":data_table.selectedRow.test_result_id})}}" + } + }, + "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": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Container2", + "borderColor": "transparent", + "isCanvas": true, + "displayName": "Container", + "iconSVG": "/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0.0, + "bottomRow": 6.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Canvas5Copy", + "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": [ + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + } + ], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 11.0, + "iconName": "timeline-line-chart", + "menuVariant": "TERTIARY", + "widgetId": "542xlgbz2x", + "menuItems": { + "menuItem1": { + "label": "Run log", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Run log', {})}}" + }, + "menuItem2": { + "label": "Trends", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0 + } + }, + "isVisible": true, + "label": "Run monitoring", + "version": 1.0, + "parentId": "b3b5y0a4zl", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1Copy", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + }, + { + "key": "menuItems.menuItem2.onClick" + }, + { + "key": "menuItems.menuItem5clg3sf596.onClick" + }, + { + "key": "menuItems.menuItemzhze0we924.onClick" + } + ], + "leftColumn": 11.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 19.0, + "iconName": "settings", + "menuVariant": "TERTIARY", + "widgetId": "ngw2hyj23a", + "menuItems": { + "menuItem1": { + "label": "Tests", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Tests', {})}}" + }, + "menuItem2": { + "label": "Entities", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0, + "onClick": "{{navigateTo('Entities', {})}}" + }, + "menuItem5clg3sf596": { + "id": "menuItem5clg3sf596", + "index": 2.0, + "label": "Categories", + "widgetId": "xj72wvs7rg", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Categories', {})}}" + }, + "menuItemzhze0we924": { + "id": "menuItemzhze0we924", + "index": 3.0, + "label": "Projects", + "widgetId": "ail7gs5wwr", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Projects', {})}}" + } + }, + "isVisible": true, + "label": "Configuration", + "version": 1.0, + "parentId": "b3b5y0a4zl", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "widgetName": "Text17", + "borderColor": "#fff", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "DOT", + "key": "14w22nnzm7", + "isDeprecated": false, + "rightColumn": 3.0, + "backgroundColor": "#f79113", + "textAlign": "CENTER", + "widgetId": "1r0rbhpgj8", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#fff", + "version": 1.0, + "parentId": "b3b5y0a4zl", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontSize": "0.975rem" + } + ], + "key": "zdu4x20wju", + "isDeprecated": false, + "rightColumn": 471.0, + "detachFromLayout": true, + "widgetId": "b3b5y0a4zl", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "containerStyle": "none", + "isVisible": true, + "version": 1.0, + "parentId": "svr3lslf83", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ], + "borderWidth": "0", + "key": "nymtbn27w8", + "backgroundColor": "#3730a3", + "isDeprecated": false, + "rightColumn": 64.0, + "widgetId": "svr3lslf83", + "containerStyle": "card", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + }, + { + "boxShadow": "none", + "widgetName": "IconButton1Copy", + "onClick": "{{navigateTo('Run results', {\"run_id\": appsmith.URL.queryParams.run_id})}}", + "buttonColor": "#3b82f6", + "dynamicPropertyPathList": [ + { + "key": "onClick" + } + ], + "displayName": "Icon Button", + "iconSVG": "/static/media/icon.1a0c634ac75f9fa6b6ae7a8df882a3ba.svg", + "searchTags": [ + "click", + "submit" + ], + "topRow": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "ICON_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "isDisabled": false, + "key": "y0ebyprd68", + "isDeprecated": false, + "rightColumn": 2.0, + "iconName": "chevron-left", + "widgetId": "lwa6u9k3ev", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "buttonVariant": "TERTIARY" + } + ] + } + ], + "borderWidth": "0", + "labelTextSize": "0.875rem", + "backgroundColor": "#fafafa", + "rightColumn": 63.0, + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "isVisible": "true", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + }, + { + "boxShadow": "none", + "widgetName": "View_data", + "isCanvas": true, + "displayName": "Modal", + "iconSVG": "/static/media/icon.4975978e.svg", + "searchTags": [ + "dialog", + "popup", + "notification" + ], + "topRow": 23.0, + "bottomRow": 47.0, + "parentRowSpace": 10.0, + "type": "MODAL_WIDGET", + "hideCard": false, + "shouldScrollContents": true, + "animateLoading": true, + "parentColumnSpace": 15.022216796875, + "dynamicTriggerPathList": [], + "leftColumn": 16.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Canvas5", + "displayName": "Canvas", + "topRow": 0.0, + "bottomRow": 670.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "hideCard": true, + "shouldScrollContents": false, + "minHeight": 622.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "accentColor" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Text16CopyCopy", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "topRow": 6.0, + "bottomRow": 10.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 11.78515625, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "leftColumn": 1.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "text" + } + ], + "text": "{{appsmith.URL.queryParams.test_description}}", + "labelTextSize": "0.875rem", + "rightColumn": 55.0, + "textAlign": "LEFT", + "widgetId": "mpe3prm83t", + "isVisible": "true", + "fontStyle": "ITALIC", + "textColor": "#231F20", + "version": 1.0, + "parentId": "vr0dle664y", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "1.0rem" + }, + { + "boxShadow": "none", + "widgetName": "IconButton1", + "onClick": "{{closeModal('View_data')}}", + "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": "mfzdt9imkk", + "isDeprecated": false, + "rightColumn": 64.0, + "iconName": "cross", + "widgetId": "z7rx6iz3l6", + "isVisible": true, + "version": 1.0, + "parentId": "vr0dle664y", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "buttonVariant": "TERTIARY" + }, + { + "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": 1.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "Failed test source data", + "key": "hdngpw1wkf", + "isDeprecated": false, + "rightColumn": 52.0, + "textAlign": "LEFT", + "widgetId": "hpudma1hqr", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "vr0dle664y", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontSize": "1.5rem" + }, + { + "boxShadow": "none", + "widgetName": "Button3", + "onClick": "{{closeModal('View_data')}}", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "displayName": "Button", + "iconSVG": "/static/media/icon.cca02633.svg", + "searchTags": [ + "click", + "submit" + ], + "topRow": 61.0, + "bottomRow": 65.0, + "type": "BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "leftColumn": 47.0, + "dynamicBindingPathList": [ + { + "key": "buttonColor" + }, + { + "key": "borderRadius" + } + ], + "text": "Close", + "isDisabled": false, + "key": "0pv6rud52s", + "isDeprecated": false, + "rightColumn": 63.0, + "isDefaultClickDisabled": true, + "widgetId": "0m833s10x7", + "buttonStyle": "PRIMARY", + "isVisible": true, + "recaptchaType": "V3", + "version": 1.0, + "parentId": "vr0dle664y", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "buttonVariant": "SECONDARY", + "placement": "CENTER" + }, + { + "widgetName": "Text19", + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "searchTags": [ + "typography", + "paragraph" + ], + "topRow": 14.0, + "bottomRow": 60.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "overflow": "NONE", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "parentColumnSpace": 13.96875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + }, + { + "key": "text" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "{{JSON.stringify(Failed_Test_data_record.data[0].get_test_result_data_record,null,1)}}", + "key": "hdngpw1wkf", + "isDeprecated": false, + "rightColumn": 63.0, + "backgroundColor": "#fff", + "textAlign": "LEFT", + "widgetId": "xu1bz8v599", + "isVisible": true, + "fontStyle": "", + "textColor": "#231F20", + "version": 1.0, + "parentId": "vr0dle664y", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontSize": "1rem" + }, + { + "widgetName": "Text20", + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "searchTags": [ + "typography", + "paragraph" + ], + "topRow": 10.0, + "bottomRow": 14.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "overflow": "NONE", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "parentColumnSpace": 13.96875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + }, + { + "key": "text" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "{{data_table.selectedRow.test_result_id}}", + "key": "ez8ua9k09z", + "isDeprecated": false, + "rightColumn": 36.0, + "textAlign": "LEFT", + "widgetId": "gvsoi2jju5", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "vr0dle664y", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontSize": "1rem" + } + ], + "isDisabled": false, + "key": "orp8l1tsno", + "isDeprecated": false, + "rightColumn": 360.533203125, + "detachFromLayout": true, + "widgetId": "vr0dle664y", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": true, + "version": 1.0, + "parentId": "1fsp0qaged", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ], + "key": "jzxnrzxxye", + "height": 622.0, + "isDeprecated": false, + "rightColumn": 40.0, + "backgroundColor": "#fafafa", + "detachFromLayout": true, + "widgetId": "1fsp0qaged", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "width": 906.0 + } + ] + }, + "layoutOnLoadActions": [ + [ + { + "id": "Failed tests_Failed_Test_data_record", + "name": "Failed_Test_data_record", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [ + "data_table.selectedRow.test_result_id" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Failed tests_SelectQuery", + "name": "SelectQuery", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [ + "appsmith.URL.queryParams.run_id", + "data_table.sortOrder.order || 'ASC'", + "data_table.pageSize", + "data_table.searchText || \"\"", + "data_table.sortOrder.column || 'test_result_id'", + "(data_table.pageNo - 1) * data_table.pageSize", + "appsmith.URL.queryParams.test_id" + ], + "timeoutInMillisecond": 10000.0 + } + ] + ], + "layoutOnLoadActionErrors": [], + "validOnPageLoadActions": true, + "id": "Failed tests", + "deleted": false, + "policies": [], + "userPermissions": [] + } + ], + "userPermissions": [], + "policies": [], + "isHidden": true + }, + "publishedPage": { + "name": "Failed tests", + "slug": "failed-tests", + "layouts": [ + { + "viewMode": false, + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 1174.0, + "snapColumns": 64.0, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0.0, + "bottomRow": 880.0, + "containerStyle": "none", + "snapRows": 125.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 64.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": 890.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": [ + { + "widgetName": "Text17Copy", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "searchTags": [ + "typography", + "paragraph" + ], + "topRow": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "overflow": "NONE", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "parentColumnSpace": 15.265625, + "dynamicTriggerPathList": [], + "leftColumn": 19.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + }, + { + "key": "text" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "Run ID: {{appsmith.URL.queryParams.run_id}}; Test ID: {{appsmith.URL.queryParams.test_id}}", + "key": "cmvb93zwil", + "isDeprecated": false, + "rightColumn": 64.0, + "textAlign": "RIGHT", + "widgetId": "0h26pt3z0q", + "isVisible": true, + "fontStyle": "", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontSize": "0.575rem" + }, + { + "boxShadow": "none", + "widgetName": "Text16", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "topRow": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 11.78515625, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "leftColumn": 2.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + } + ], + "text": "Failed tests", + "labelTextSize": "0.875rem", + "rightColumn": 10.0, + "textAlign": "LEFT", + "widgetId": "urzv99hdc8", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "1.5rem" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "onSort": "{{SelectQuery.run()}}", + "isVisibleDownload": true, + "iconSVG": "/static/media/icon.db8a9cbd.svg", + "topRow": 11.0, + "isSortable": true, + "onPageChange": "{{SelectQuery.run()}}", + "type": "TABLE_WIDGET", + "animateLoading": true, + "dynamicBindingPathList": [ + { + "key": "tableData" + }, + { + "key": "accentColor" + }, + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + }, + { + "key": "primaryColumns.status.computedValue" + }, + { + "key": "derivedColumns.customColumn1.boxShadow" + }, + { + "key": "primaryColumns.customColumn1.boxShadow" + }, + { + "key": "derivedColumns.customColumn1.borderRadius" + }, + { + "key": "primaryColumns.customColumn1.borderRadius" + }, + { + "key": "derivedColumns.customColumn1.buttonLabel" + }, + { + "key": "primaryColumns.customColumn1.buttonLabel" + }, + { + "key": "primaryColumns.test_type.computedValue" + }, + { + "key": "primaryColumns.entity_id.computedValue" + }, + { + "key": "primaryColumns.data_record.computedValue" + }, + { + "key": "primaryColumns.description.computedValue" + }, + { + "key": "primaryColumns.test_result_id.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": "test_result_id", + "columnSizeMap": { + "task": 245.0, + "step": 62.0, + "status": 75.0, + "test_id": 367.0, + "test_result_id": 318.0, + "run_id": 251.0, + "data_record": 818.0, + "test_type": 227.0, + "description": 314.0 + }, + "widgetName": "data_table", + "defaultPageSize": 0.0, + "columnOrder": [ + "status", + "description", + "test_type", + "entity_id", + "data_record", + "test_result_id", + "customColumn1" + ], + "dynamicPropertyPathList": [ + { + "key": "primaryColumns.customColumn1.onClick" + } + ], + "displayName": "Table", + "bottomRow": 87.0, + "parentRowSpace": 10.0, + "defaultSelectedRow": "0", + "hideCard": false, + "parentColumnSpace": 16.3125, + "dynamicTriggerPathList": [ + { + "key": "onPageChange" + }, + { + "key": "onSearchTextChanged" + }, + { + "key": "onSort" + }, + { + "key": "primaryColumns.customColumn1.onClick" + } + ], + "primaryColumns": { + "status": { + "index": 4.0, + "width": 150.0, + "id": "status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": false, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "status", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.status))}}", + "cellBackground": "" + }, + "customColumn1": { + "index": 3.0, + "width": 150.0, + "id": "customColumn1", + "columnType": "button", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": true, + "label": "Data", + "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": "#3b82f6", + "iconName": "", + "buttonLabel": "{{data_table.sanitizedTableData.map((currentRow) => ( 'View data'))}}", + "buttonVariant": "TERTIARY", + "onClick": "{{Failed_Test_data_record.run(); showModal('View_data')}}" + }, + "test_type": { + "index": 3.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": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.test_type))}}", + "cellBackground": "" + }, + "entity_id": { + "index": 4.0, + "width": 150.0, + "id": "entity_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "entity_id", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_id))}}", + "cellBackground": "" + }, + "data_record": { + "index": 5.0, + "width": 150.0, + "id": "data_record", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "data_record", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.data_record))}}", + "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": "" + }, + "test_result_id": { + "index": 5.0, + "width": 150.0, + "id": "test_result_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_result_id", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.test_result_id))}}", + "cellBackground": "" + } + }, + "key": "zba5qel0au", + "derivedColumns": { + "customColumn1": { + "index": 3.0, + "width": 150.0, + "id": "customColumn1", + "columnType": "button", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": true, + "label": "Data", + "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": "#3b82f6", + "iconName": "", + "buttonLabel": "{{data_table.sanitizedTableData.map((currentRow) => ( 'View data'))}}", + "buttonVariant": "TERTIARY", + "onClick": "{{navigateTo('Failed test data',{\"run_id\":data_table.selectedRow.Run_id, \"run_date\":data_table.selectedRow.Run_date, \"test_id\":data_table.selectedRow.Test_id, \"test_description\":data_table.selectedRow.Test, \"test_result_id\":data_table.selectedRow.test_result_id})}}" + } + }, + "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": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Container2", + "borderColor": "transparent", + "isCanvas": true, + "displayName": "Container", + "iconSVG": "/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0.0, + "bottomRow": 6.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Canvas5Copy", + "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": [ + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + } + ], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 11.0, + "iconName": "timeline-line-chart", + "menuVariant": "TERTIARY", + "widgetId": "542xlgbz2x", + "menuItems": { + "menuItem1": { + "label": "Run log", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Run log', {})}}" + }, + "menuItem2": { + "label": "Trends", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0 + } + }, + "isVisible": true, + "label": "Run monitoring", + "version": 1.0, + "parentId": "b3b5y0a4zl", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1Copy", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + }, + { + "key": "menuItems.menuItem2.onClick" + }, + { + "key": "menuItems.menuItem5clg3sf596.onClick" + }, + { + "key": "menuItems.menuItemzhze0we924.onClick" + } + ], + "leftColumn": 11.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 19.0, + "iconName": "settings", + "menuVariant": "TERTIARY", + "widgetId": "ngw2hyj23a", + "menuItems": { + "menuItem1": { + "label": "Tests", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Tests', {})}}" + }, + "menuItem2": { + "label": "Entities", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0, + "onClick": "{{navigateTo('Entities', {})}}" + }, + "menuItem5clg3sf596": { + "id": "menuItem5clg3sf596", + "index": 2.0, + "label": "Categories", + "widgetId": "xj72wvs7rg", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Categories', {})}}" + }, + "menuItemzhze0we924": { + "id": "menuItemzhze0we924", + "index": 3.0, + "label": "Projects", + "widgetId": "ail7gs5wwr", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Projects', {})}}" + } + }, + "isVisible": true, + "label": "Configuration", + "version": 1.0, + "parentId": "b3b5y0a4zl", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "widgetName": "Text17", + "borderColor": "#fff", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "DOT", + "key": "14w22nnzm7", + "isDeprecated": false, + "rightColumn": 3.0, + "backgroundColor": "#f79113", + "textAlign": "CENTER", + "widgetId": "1r0rbhpgj8", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#fff", + "version": 1.0, + "parentId": "b3b5y0a4zl", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontSize": "0.975rem" + } + ], + "key": "zdu4x20wju", + "isDeprecated": false, + "rightColumn": 471.0, + "detachFromLayout": true, + "widgetId": "b3b5y0a4zl", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "containerStyle": "none", + "isVisible": true, + "version": 1.0, + "parentId": "svr3lslf83", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ], + "borderWidth": "0", + "key": "nymtbn27w8", + "backgroundColor": "#3730a3", + "isDeprecated": false, + "rightColumn": 64.0, + "widgetId": "svr3lslf83", + "containerStyle": "card", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + }, + { + "boxShadow": "none", + "widgetName": "IconButton1Copy", + "onClick": "{{navigateTo('Run results', {\"run_id\": appsmith.URL.queryParams.run_id})}}", + "buttonColor": "#3b82f6", + "dynamicPropertyPathList": [ + { + "key": "onClick" + } + ], + "displayName": "Icon Button", + "iconSVG": "/static/media/icon.1a0c634ac75f9fa6b6ae7a8df882a3ba.svg", + "searchTags": [ + "click", + "submit" + ], + "topRow": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "ICON_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "isDisabled": false, + "key": "y0ebyprd68", + "isDeprecated": false, + "rightColumn": 2.0, + "iconName": "chevron-left", + "widgetId": "lwa6u9k3ev", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "buttonVariant": "TERTIARY" + } + ] + } + ], + "borderWidth": "0", + "labelTextSize": "0.875rem", + "backgroundColor": "#fafafa", + "rightColumn": 63.0, + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "isVisible": "true", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + }, + { + "boxShadow": "none", + "widgetName": "View_data", + "isCanvas": true, + "displayName": "Modal", + "iconSVG": "/static/media/icon.4975978e.svg", + "searchTags": [ + "dialog", + "popup", + "notification" + ], + "topRow": 23.0, + "bottomRow": 47.0, + "parentRowSpace": 10.0, + "type": "MODAL_WIDGET", + "hideCard": false, + "shouldScrollContents": true, + "animateLoading": true, + "parentColumnSpace": 15.022216796875, + "dynamicTriggerPathList": [], + "leftColumn": 16.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Canvas5", + "displayName": "Canvas", + "topRow": 0.0, + "bottomRow": 670.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "hideCard": true, + "shouldScrollContents": false, + "minHeight": 622.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "accentColor" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Text16CopyCopy", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "topRow": 6.0, + "bottomRow": 10.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 11.78515625, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "leftColumn": 1.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "text" + } + ], + "text": "{{appsmith.URL.queryParams.test_description}}", + "labelTextSize": "0.875rem", + "rightColumn": 55.0, + "textAlign": "LEFT", + "widgetId": "mpe3prm83t", + "isVisible": "true", + "fontStyle": "ITALIC", + "textColor": "#231F20", + "version": 1.0, + "parentId": "vr0dle664y", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "1.0rem" + }, + { + "boxShadow": "none", + "widgetName": "IconButton1", + "onClick": "{{closeModal('View_data')}}", + "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": "mfzdt9imkk", + "isDeprecated": false, + "rightColumn": 64.0, + "iconName": "cross", + "widgetId": "z7rx6iz3l6", + "isVisible": true, + "version": 1.0, + "parentId": "vr0dle664y", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "buttonVariant": "TERTIARY" + }, + { + "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": 1.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "Failed test source data", + "key": "hdngpw1wkf", + "isDeprecated": false, + "rightColumn": 52.0, + "textAlign": "LEFT", + "widgetId": "hpudma1hqr", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "vr0dle664y", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontSize": "1.5rem" + }, + { + "boxShadow": "none", + "widgetName": "Button3", + "onClick": "{{closeModal('View_data')}}", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "displayName": "Button", + "iconSVG": "/static/media/icon.cca02633.svg", + "searchTags": [ + "click", + "submit" + ], + "topRow": 61.0, + "bottomRow": 65.0, + "type": "BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "leftColumn": 47.0, + "dynamicBindingPathList": [ + { + "key": "buttonColor" + }, + { + "key": "borderRadius" + } + ], + "text": "Close", + "isDisabled": false, + "key": "0pv6rud52s", + "isDeprecated": false, + "rightColumn": 63.0, + "isDefaultClickDisabled": true, + "widgetId": "0m833s10x7", + "buttonStyle": "PRIMARY", + "isVisible": true, + "recaptchaType": "V3", + "version": 1.0, + "parentId": "vr0dle664y", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "buttonVariant": "SECONDARY", + "placement": "CENTER" + }, + { + "widgetName": "Text19", + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "searchTags": [ + "typography", + "paragraph" + ], + "topRow": 14.0, + "bottomRow": 60.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "overflow": "NONE", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "parentColumnSpace": 13.96875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + }, + { + "key": "text" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "{{JSON.stringify(Failed_Test_data_record.data[0].get_test_result_data_record,null,1)}}", + "key": "hdngpw1wkf", + "isDeprecated": false, + "rightColumn": 63.0, + "backgroundColor": "#fff", + "textAlign": "LEFT", + "widgetId": "xu1bz8v599", + "isVisible": true, + "fontStyle": "", + "textColor": "#231F20", + "version": 1.0, + "parentId": "vr0dle664y", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontSize": "1rem" + }, + { + "widgetName": "Text20", + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "searchTags": [ + "typography", + "paragraph" + ], + "topRow": 10.0, + "bottomRow": 14.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "overflow": "NONE", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "parentColumnSpace": 13.96875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + }, + { + "key": "text" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "{{data_table.selectedRow.test_result_id}}", + "key": "ez8ua9k09z", + "isDeprecated": false, + "rightColumn": 36.0, + "textAlign": "LEFT", + "widgetId": "gvsoi2jju5", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "vr0dle664y", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontSize": "1rem" + } + ], + "isDisabled": false, + "key": "orp8l1tsno", + "isDeprecated": false, + "rightColumn": 360.533203125, + "detachFromLayout": true, + "widgetId": "vr0dle664y", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": true, + "version": 1.0, + "parentId": "1fsp0qaged", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ], + "key": "jzxnrzxxye", + "height": 622.0, + "isDeprecated": false, + "rightColumn": 40.0, + "backgroundColor": "#fafafa", + "detachFromLayout": true, + "widgetId": "1fsp0qaged", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "width": 906.0 + } + ] + }, + "layoutOnLoadActions": [ + [ + { + "id": "Failed tests_Failed_Test_data_record", + "name": "Failed_Test_data_record", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [ + "data_table.selectedRow.test_result_id" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Failed tests_SelectQuery", + "name": "SelectQuery", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [ + "appsmith.URL.queryParams.run_id", + "data_table.sortOrder.order || 'ASC'", + "data_table.pageSize", + "data_table.searchText || \"\"", + "data_table.sortOrder.column || 'test_result_id'", + "(data_table.pageNo - 1) * data_table.pageSize", + "appsmith.URL.queryParams.test_id" + ], + "timeoutInMillisecond": 10000.0 + } + ] + ], + "layoutOnLoadActionErrors": [], + "validOnPageLoadActions": true, + "id": "Failed tests", + "deleted": false, + "policies": [], + "userPermissions": [] + } + ], + "userPermissions": [], + "policies": [], + "isHidden": true + }, + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818330" + }, + { + "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": 1080.0, + "containerStyle": "none", + "snapRows": 125.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 63.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": 99.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": 890.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": 7.0, + "bottomRow": 11.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": 6.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": "#93c5fd", + "widgetId": "xp5u9a9nzq", + "topRow": 7.0, + "bottomRow": 11.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": 62.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "onSort": "{{SelectQuery.run()}}", + "isVisibleDownload": true, + "iconSVG": "/static/media/icon.db8a9cbd.svg", + "topRow": 11.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": 87.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": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "leftColumn": 51.0, + "dynamicBindingPathList": [], + "text": "Add project", + "isDisabled": "", + "key": "2ob5jed9vo", + "rightColumn": 62.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": "#a1a1aa", + "displayName": "Icon Button", + "iconSVG": "/static/media/icon.1a0c634a.svg", + "searchTags": [ + "click", + "submit" + ], + "topRow": 7.0, + "bottomRow": 11.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": 6.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "isDisabled": false, + "key": "zgwqqdr0d5", + "isDeprecated": false, + "rightColumn": 8.0, + "iconName": "help", + "widgetId": "voej6bbkxb", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "buttonVariant": "TERTIARY" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Container2Copy", + "borderColor": "transparent", + "isCanvas": true, + "displayName": "Container", + "iconSVG": "/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0.0, + "bottomRow": 6.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Canvas5Copy1", + "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": [ + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1Copy1", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + } + ], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 11.0, + "iconName": "timeline-line-chart", + "menuVariant": "TERTIARY", + "widgetId": "vay3agbkyn", + "menuItems": { + "menuItem1": { + "label": "Run log", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Run log', {})}}" + }, + "menuItem2": { + "label": "Trends", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0 + } + }, + "isVisible": true, + "label": "Run monitoring", + "version": 1.0, + "parentId": "5rp9uew9ut", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1CopyCopy", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + }, + { + "key": "menuItems.menuItem2.onClick" + }, + { + "key": "menuItems.menuItem5clg3sf596.onClick" + }, + { + "key": "menuItems.menuItemzhze0we924.onClick" + } + ], + "leftColumn": 11.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 19.0, + "iconName": "settings", + "menuVariant": "TERTIARY", + "widgetId": "mjri251cjb", + "menuItems": { + "menuItem1": { + "label": "Tests", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Tests', {})}}" + }, + "menuItem2": { + "label": "Entities", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0, + "onClick": "{{navigateTo('Entities', {})}}" + }, + "menuItem5clg3sf596": { + "id": "menuItem5clg3sf596", + "index": 2.0, + "label": "Categories", + "widgetId": "xj72wvs7rg", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Categories', {})}}" + }, + "menuItemzhze0we924": { + "id": "menuItemzhze0we924", + "index": 3.0, + "label": "Projects", + "widgetId": "ail7gs5wwr", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Projects', {})}}" + } + }, + "isVisible": true, + "label": "Configuration", + "version": 1.0, + "parentId": "5rp9uew9ut", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "widgetName": "Text17Copy1", + "borderColor": "#fff", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "DOT", + "key": "14w22nnzm7", + "isDeprecated": false, + "rightColumn": 3.0, + "backgroundColor": "#f79113", + "textAlign": "CENTER", + "widgetId": "hxdfkwjboj", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#fff", + "version": 1.0, + "parentId": "5rp9uew9ut", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontSize": "0.975rem" + } + ], + "key": "zdu4x20wju", + "isDeprecated": false, + "rightColumn": 471.0, + "detachFromLayout": true, + "widgetId": "5rp9uew9ut", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "containerStyle": "none", + "isVisible": true, + "version": 1.0, + "parentId": "orwzo0ty1u", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ], + "borderWidth": "0", + "key": "nymtbn27w8", + "backgroundColor": "#3730a3", + "isDeprecated": false, + "rightColumn": 64.0, + "widgetId": "orwzo0ty1u", + "containerStyle": "card", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ] + } + ], + "borderWidth": "0", + "labelTextSize": "0.875rem", + "backgroundColor": "#fafafa", + "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": 36.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": 19.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": 24.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": "{{ ((options, serverSideFiltering) => ( data_table.selectedRow.project_schema))(project_schema_edit.options, project_schema_edit.serverSideFiltering) }}", + "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 + } + ] + ], + "layoutOnLoadActionErrors": [], + "validOnPageLoadActions": true, + "id": "Projects", + "deleted": false, + "policies": [], + "userPermissions": [] + } + ], + "userPermissions": [], + "policies": [], + "isHidden": true + }, + "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": 1080.0, + "containerStyle": "none", + "snapRows": 125.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 63.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": 99.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": 890.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": 7.0, + "bottomRow": 11.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": 6.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": "#93c5fd", + "widgetId": "xp5u9a9nzq", + "topRow": 7.0, + "bottomRow": 11.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": 62.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "onSort": "{{SelectQuery.run()}}", + "isVisibleDownload": true, + "iconSVG": "/static/media/icon.db8a9cbd.svg", + "topRow": 11.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": 87.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": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "leftColumn": 51.0, + "dynamicBindingPathList": [], + "text": "Add project", + "isDisabled": "", + "key": "2ob5jed9vo", + "rightColumn": 62.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": "#a1a1aa", + "displayName": "Icon Button", + "iconSVG": "/static/media/icon.1a0c634a.svg", + "searchTags": [ + "click", + "submit" + ], + "topRow": 7.0, + "bottomRow": 11.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": 6.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "isDisabled": false, + "key": "zgwqqdr0d5", + "isDeprecated": false, + "rightColumn": 8.0, + "iconName": "help", + "widgetId": "voej6bbkxb", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "buttonVariant": "TERTIARY" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Container2Copy", + "borderColor": "transparent", + "isCanvas": true, + "displayName": "Container", + "iconSVG": "/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0.0, + "bottomRow": 6.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Canvas5Copy1", + "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": [ + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1Copy1", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + } + ], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 11.0, + "iconName": "timeline-line-chart", + "menuVariant": "TERTIARY", + "widgetId": "vay3agbkyn", + "menuItems": { + "menuItem1": { + "label": "Run log", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Run log', {})}}" + }, + "menuItem2": { + "label": "Trends", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0 + } + }, + "isVisible": true, + "label": "Run monitoring", + "version": 1.0, + "parentId": "5rp9uew9ut", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1CopyCopy", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + }, + { + "key": "menuItems.menuItem2.onClick" + }, + { + "key": "menuItems.menuItem5clg3sf596.onClick" + }, + { + "key": "menuItems.menuItemzhze0we924.onClick" + } + ], + "leftColumn": 11.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 19.0, + "iconName": "settings", + "menuVariant": "TERTIARY", + "widgetId": "mjri251cjb", + "menuItems": { + "menuItem1": { + "label": "Tests", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Tests', {})}}" + }, + "menuItem2": { + "label": "Entities", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0, + "onClick": "{{navigateTo('Entities', {})}}" + }, + "menuItem5clg3sf596": { + "id": "menuItem5clg3sf596", + "index": 2.0, + "label": "Categories", + "widgetId": "xj72wvs7rg", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Categories', {})}}" + }, + "menuItemzhze0we924": { + "id": "menuItemzhze0we924", + "index": 3.0, + "label": "Projects", + "widgetId": "ail7gs5wwr", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Projects', {})}}" + } + }, + "isVisible": true, + "label": "Configuration", + "version": 1.0, + "parentId": "5rp9uew9ut", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "widgetName": "Text17Copy1", + "borderColor": "#fff", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "DOT", + "key": "14w22nnzm7", + "isDeprecated": false, + "rightColumn": 3.0, + "backgroundColor": "#f79113", + "textAlign": "CENTER", + "widgetId": "hxdfkwjboj", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#fff", + "version": 1.0, + "parentId": "5rp9uew9ut", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontSize": "0.975rem" + } + ], + "key": "zdu4x20wju", + "isDeprecated": false, + "rightColumn": 471.0, + "detachFromLayout": true, + "widgetId": "5rp9uew9ut", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "containerStyle": "none", + "isVisible": true, + "version": 1.0, + "parentId": "orwzo0ty1u", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ], + "borderWidth": "0", + "key": "nymtbn27w8", + "backgroundColor": "#3730a3", + "isDeprecated": false, + "rightColumn": 64.0, + "widgetId": "orwzo0ty1u", + "containerStyle": "card", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ] + } + ], + "borderWidth": "0", + "labelTextSize": "0.875rem", + "backgroundColor": "#fafafa", + "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": 36.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": 19.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": 24.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": "{{ ((options, serverSideFiltering) => ( data_table.selectedRow.project_schema))(project_schema_edit.options, project_schema_edit.serverSideFiltering) }}", + "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 + } + ] + ], + "layoutOnLoadActionErrors": [], + "validOnPageLoadActions": true, + "id": "Projects", + "deleted": false, + "policies": [], + "userPermissions": [] + } + ], + "userPermissions": [], + "policies": [], + "isHidden": true + }, + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818335" + }, + { + "unpublishedPage": { + "name": "Run results", + "slug": "run-results", + "layouts": [ + { + "viewMode": false, + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 1174.0, + "snapColumns": 64.0, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0.0, + "bottomRow": 950.0, + "containerStyle": "none", + "snapRows": 125.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 69.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": 1520.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": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 11.78515625, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "leftColumn": 2.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + } + ], + "text": "Run results ", + "labelTextSize": "0.875rem", + "rightColumn": 9.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "urzv99hdc8", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "1.5rem", + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "onSort": "{{SelectQuery.run()}}", + "isVisibleDownload": true, + "iconSVG": "/static/media/icon.db8a9cbd.svg", + "topRow": 29.0, + "isSortable": true, + "onPageChange": "{{SelectQuery.run()}}", + "type": "TABLE_WIDGET", + "animateLoading": true, + "dynamicBindingPathList": [ + { + "key": "tableData" + }, + { + "key": "accentColor" + }, + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + }, + { + "key": "primaryColumns.project_id.computedValue" + }, + { + "key": "primaryColumns.Run_date.computedValue" + }, + { + "key": "primaryColumns.Test.computedValue" + }, + { + "key": "primaryColumns.Entity.computedValue" + }, + { + "key": "primaryColumns.Test_type.computedValue" + }, + { + "key": "primaryColumns.Scenario.computedValue" + }, + { + "key": "primaryColumns.Test_status.computedValue" + }, + { + "key": "primaryColumns.Rows_tested.computedValue" + }, + { + "key": "primaryColumns.Rows_failed.computedValue" + }, + { + "key": "primaryColumns._fail.computedValue" + }, + { + "key": "primaryColumns.Run_id.computedValue" + }, + { + "key": "primaryColumns.Test_status.cellBackground" + }, + { + "key": "derivedColumns.Rows_failed.boxShadow" + }, + { + "key": "primaryColumns.Rows_failed.boxShadow" + }, + { + "key": "derivedColumns.Rows_failed.borderRadius" + }, + { + "key": "primaryColumns.Rows_failed.borderRadius" + }, + { + "key": "derivedColumns.Rows_failed.buttonLabel" + }, + { + "key": "primaryColumns.Rows_failed.buttonLabel" + }, + { + "key": "derivedColumns.Rows_failed.buttonColor" + }, + { + "key": "primaryColumns.Rows_failed.buttonColor" + }, + { + "key": "derivedColumns.Rows_failed.isCellVisible" + }, + { + "key": "primaryColumns.Rows_failed.isCellVisible" + }, + { + "key": "primaryColumns.Test_id.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": "run_id", + "columnSizeMap": { + "task": 245.0, + "step": 62.0, + "status": 75.0, + "project_id": 108.0, + "Run_date": 190.0, + "Test": 324.0, + "Rows_tested": 128.0 + }, + "widgetName": "data_table", + "defaultPageSize": 0.0, + "columnOrder": [ + "Run_date", + "project_id", + "Test", + "Test_status", + "Rows_tested", + "Rows_failed", + "Entity", + "Test_type", + "Scenario", + "_fail", + "Run_id", + "Test_id", + null + ], + "dynamicPropertyPathList": [ + { + "key": "primaryColumns.Test_status.cellBackground" + }, + { + "key": "primaryColumns.Rows_failed.buttonColor" + }, + { + "key": "primaryColumns.Rows_failed.isCellVisible" + }, + { + "key": "primaryColumns.Rows_failed.onClick" + } + ], + "displayName": "Table", + "bottomRow": 150.0, + "parentRowSpace": 10.0, + "defaultSelectedRow": "0", + "hideCard": false, + "parentColumnSpace": 16.3125, + "dynamicTriggerPathList": [ + { + "key": "onPageChange" + }, + { + "key": "onSearchTextChanged" + }, + { + "key": "onSort" + }, + { + "key": "primaryColumns.Rows_failed.onClick" + } + ], + "primaryColumns": { + "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": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.project_id))}}", + "cellBackground": "" + }, + "Run_date": { + "index": 0.0, + "width": 150.0, + "id": "Run_date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": false, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Run date", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_date))}}", + "cellBackground": "" + }, + "Test": { + "index": 2.0, + "width": 150.0, + "id": "Test", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Test", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test))}}", + "cellBackground": "" + }, + "Entity": { + "index": 3.0, + "width": 150.0, + "id": "Entity", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Entity", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Entity))}}", + "cellBackground": "" + }, + "Test_type": { + "index": 4.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": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test_type))}}", + "cellBackground": "" + }, + "Scenario": { + "index": 5.0, + "width": 150.0, + "id": "Scenario", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Scenario", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Scenario))}}", + "cellBackground": "" + }, + "Test_status": { + "index": 6.0, + "width": 150.0, + "id": "Test_status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "white", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Test_status", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test_status))}}", + "cellBackground": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test_status == \"pass\" ? \"green\" : \"red\"))}}" + }, + "Rows_tested": { + "index": 7.0, + "width": 150.0, + "id": "Rows_tested", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Rows_tested", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_tested))}}", + "cellBackground": "" + }, + "Rows_failed": { + "index": 8.0, + "width": 150.0, + "id": "Rows_failed", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "button", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed == 0 ? false : true))}}", + "isDerived": false, + "label": "Rows_failed", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed))}}", + "cellBackground": "", + "boxShadow": "{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}", + "borderRadius": "{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}", + "buttonColor": "{{data_table.sanitizedTableData.map((currentRow) => ( '#3b82f6'))}}", + "iconName": "", + "buttonLabel": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed == 0 ? undefined : currentRow.Rows_failed))}}", + "buttonVariant": "TERTIARY", + "onClick": "{{navigateTo('Failed tests',{\"run_id\":data_table.selectedRow.Run_id, \"run_date\":data_table.selectedRow.Run_date, \"test_id\":data_table.selectedRow.Test_id, \"test_description\":data_table.selectedRow.Test})}}" + }, + "_fail": { + "index": 9.0, + "width": 150.0, + "id": "_fail", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "% fail", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow._fail))}}", + "cellBackground": "" + }, + "Run_id": { + "index": 10.0, + "width": 150.0, + "id": "Run_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": false, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Run_id", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_id))}}", + "cellBackground": "" + }, + "undefined": { + "boxShadow": [ + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none" + ], + "borderRadius": [ + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px" + ], + "buttonColor": [ + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6" + ], + "buttonLabel": [ + 1.0, + 1.0, + 1.0, + null, + 262.0, + null, + 1.0, + null, + null, + 49.0, + 1.0, + null, + 14.0, + 33.0, + 1.0, + 17.0, + 1.0, + null, + null + ], + "isCellVisible": [ + true, + true, + true, + false, + true, + false, + true, + false, + false, + true, + true, + false, + true, + true, + true, + true, + true, + false, + false + ], + "index": 11.0 + }, + "Test_id": { + "index": 11.0, + "width": 150.0, + "id": "Test_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": false, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Test_id", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test_id))}}", + "cellBackground": "" + } + }, + "key": "zba5qel0au", + "derivedColumns": { + "Rows_failed": { + "boxShadow": "{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}", + "borderRadius": "{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}", + "buttonColor": "{{data_table.sanitizedTableData.map((currentRow) => ( '#3b82f6'))}}", + "buttonLabel": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed == 0 ? undefined : currentRow.Rows_failed))}}", + "isCellVisible": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed == 0 ? false : true))}}" + } + }, + "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" + }, + { + "widgetName": "Text17", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "searchTags": [ + "typography", + "paragraph" + ], + "topRow": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "overflow": "NONE", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "parentColumnSpace": 15.265625, + "dynamicTriggerPathList": [], + "leftColumn": 22.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + }, + { + "key": "text" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "Run ID: {{appsmith.URL.queryParams.run_id}}; Run date: {{appsmith.URL.queryParams.run_date}}", + "key": "cmvb93zwil", + "isDeprecated": false, + "rightColumn": 64.0, + "textAlign": "RIGHT", + "dynamicHeight": "FIXED", + "widgetId": "np983yz96f", + "isVisible": true, + "fontStyle": "", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "fontSize": "0.575rem", + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Chart1", + "allowScroll": false, + "displayName": "Chart", + "iconSVG": "/static/media/icon.6adbe31e.svg", + "searchTags": [ + "graph", + "visuals", + "visualisations" + ], + "topRow": 11.0, + "bottomRow": 29.0, + "parentRowSpace": 10.0, + "type": "CHART_WIDGET", + "hideCard": false, + "chartData": { + "z7r0lhh07r": { + "seriesName": "Sales", + "data": "{{Run_Fails_by_Test_Type.data}}" + } + }, + "animateLoading": true, + "parentColumnSpace": 15.265625, + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "boxShadow" + }, + { + "key": "chartData.z7r0lhh07r.data" + }, + { + "key": "accentColor" + }, + { + "key": "fontFamily" + } + ], + "customFusionChartConfig": { + "type": "column2d", + "dataSource": { + "chart": { + "caption": "Sales Report", + "xAxisName": "Product Line", + "yAxisName": "Revenue($)", + "theme": "fusion" + }, + "data": [ + { + "label": "Product1", + "value": 20000.0 + }, + { + "label": "Product2", + "value": 22000.0 + }, + { + "label": "Product3", + "value": 32000.0 + } + ] + } + }, + "key": "bwx9gqhm0r", + "isDeprecated": false, + "rightColumn": 64.0, + "widgetId": "xtwaz5qcn5", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "labelOrientation": "auto", + "renderMode": "CANVAS", + "isLoading": false, + "yAxisName": "% failed ", + "chartName": "", + "borderRadius": "0px", + "xAxisName": "Category", + "chartType": "COLUMN_CHART" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Container2", + "borderColor": "transparent", + "isCanvas": true, + "displayName": "Container", + "iconSVG": "/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0.0, + "bottomRow": 6.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Canvas5", + "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": [ + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + } + ], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 11.0, + "iconName": "timeline-line-chart", + "menuVariant": "TERTIARY", + "widgetId": "xxern5jqjt", + "menuItems": { + "menuItem1": { + "label": "Run log", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Run log', {})}}" + }, + "menuItem2": { + "label": "Trends", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0 + } + }, + "isVisible": true, + "label": "Run monitoring", + "version": 1.0, + "parentId": "93zsrx53dx", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1Copy", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + }, + { + "key": "menuItems.menuItem2.onClick" + }, + { + "key": "menuItems.menuItem5clg3sf596.onClick" + }, + { + "key": "menuItems.menuItemzhze0we924.onClick" + } + ], + "leftColumn": 11.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 19.0, + "iconName": "settings", + "menuVariant": "TERTIARY", + "widgetId": "eykymxfaa2", + "menuItems": { + "menuItem1": { + "label": "Tests", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Tests', {})}}" + }, + "menuItem2": { + "label": "Entities", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0, + "onClick": "{{navigateTo('Entities', {})}}" + }, + "menuItem5clg3sf596": { + "id": "menuItem5clg3sf596", + "index": 2.0, + "label": "Categories", + "widgetId": "xj72wvs7rg", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Categories', {})}}" + }, + "menuItemzhze0we924": { + "id": "menuItemzhze0we924", + "index": 3.0, + "label": "Projects", + "widgetId": "ail7gs5wwr", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Projects', {})}}" + } + }, + "isVisible": true, + "label": "Configuration", + "version": 1.0, + "parentId": "93zsrx53dx", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "widgetName": "Text17Copy", + "borderColor": "#fff", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "DOT", + "key": "14w22nnzm7", + "isDeprecated": false, + "rightColumn": 3.0, + "backgroundColor": "#f79113", + "disableLink": false, + "textAlign": "CENTER", + "dynamicHeight": "FIXED", + "widgetId": "2hvre6rswq", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#fff", + "version": 1.0, + "parentId": "93zsrx53dx", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "fontSize": "0.975rem", + "minDynamicHeight": 4.0 + } + ], + "key": "zdu4x20wju", + "isDeprecated": false, + "rightColumn": 471.0, + "detachFromLayout": true, + "widgetId": "93zsrx53dx", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "containerStyle": "none", + "isVisible": true, + "version": 1.0, + "parentId": "kax8roxzdl", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ], + "borderWidth": "0", + "key": "nymtbn27w8", + "backgroundColor": "#3730a3", + "isDeprecated": false, + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "widgetId": "kax8roxzdl", + "containerStyle": "card", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "none", + "widgetName": "IconButton1", + "onClick": "{{navigateTo('Run log', {\"run_id\": appsmith.URL.queryParams.run_id})}}", + "buttonColor": "#3b82f6", + "dynamicPropertyPathList": [ + { + "key": "onClick" + } + ], + "displayName": "Icon Button", + "iconSVG": "/static/media/icon.1a0c634ac75f9fa6b6ae7a8df882a3ba.svg", + "searchTags": [ + "click", + "submit" + ], + "topRow": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "ICON_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "isDisabled": false, + "key": "y0ebyprd68", + "isDeprecated": false, + "rightColumn": 2.0, + "iconName": "chevron-left", + "widgetId": "sj41jpzsr1", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "buttonVariant": "TERTIARY" + } + ] + } + ], + "borderWidth": "0", + "labelTextSize": "0.875rem", + "backgroundColor": "#fafafa", + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "isVisible": "true", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + }, + { + "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", + "dynamicHeight": "FIXED", + "widgetId": "35yoxo4oec", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "1.5rem", + "minDynamicHeight": 4.0 + }, + { + "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": [], + "text": "Are you sure you want to delete this item?", + "labelTextSize": "0.875rem", + "rightColumn": 63.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "48uac29g6e", + "isVisible": "true", + "fontStyle": "", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "1rem", + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "i3whp03wf0", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "width": 456.0, + "minDynamicHeight": 4.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__": { + "labelTextSize": "0.875rem", + "identifier": "__root_schema__", + "boxShadow": "none", + "isRequired": false, + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "dataType": "object", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "accessor": "__root_schema__", + "isVisible": true, + "label": "", + "originalIdentifier": "__root_schema__", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": { + "col8": { + "labelTextSize": "0.875rem", + "identifier": "col8", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col8))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col8", + "isVisible": true, + "label": "Col 8", + "originalIdentifier": "col8", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 7.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col12": { + "labelTextSize": "0.875rem", + "identifier": "col12", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col12))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col12", + "isVisible": true, + "label": "Col 12", + "originalIdentifier": "col12", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 11.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col9": { + "labelTextSize": "0.875rem", + "identifier": "col9", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col9))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col9", + "isVisible": true, + "label": "Col 9", + "originalIdentifier": "col9", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 8.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col11": { + "labelTextSize": "0.875rem", + "identifier": "col11", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col11))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col11", + "isVisible": true, + "label": "Col 11", + "originalIdentifier": "col11", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 10.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col6": { + "labelTextSize": "0.875rem", + "identifier": "col6", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col6))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col6", + "isVisible": true, + "label": "Col 6", + "originalIdentifier": "col6", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 5.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col10": { + "labelTextSize": "0.875rem", + "identifier": "col10", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col10))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col10", + "isVisible": true, + "label": "Col 10", + "originalIdentifier": "col10", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 9.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col7": { + "labelTextSize": "0.875rem", + "identifier": "col7", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col7))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col7", + "isVisible": true, + "label": "Col 7", + "originalIdentifier": "col7", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 6.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col4": { + "labelTextSize": "0.875rem", + "identifier": "col4", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col4))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "boolean", + "cellBorderRadius": "0px", + "accessor": "col4", + "isVisible": true, + "label": "Col 4", + "alignWidget": "LEFT", + "originalIdentifier": "col4", + "borderRadius": "0px", + "children": {}, + "position": 3.0, + "isDisabled": false, + "sourceData": true, + "cellBoxShadow": "none", + "fieldType": "Switch" + }, + "col5": { + "labelTextSize": "0.875rem", + "identifier": "col5", + "boxShadow": "none", + "isRequired": false, + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col5))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "number", + "accessor": "col5", + "isVisible": true, + "label": "Col 5", + "originalIdentifier": "col5", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 4.0, + "isDisabled": false, + "fieldType": "Number Input" + }, + "col2": { + "labelTextSize": "0.875rem", + "identifier": "col2", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col2))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "string", + "cellBorderRadius": "0px", + "accessor": "col2", + "isVisible": true, + "label": "Col 2", + "originalIdentifier": "col2", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 1.0, + "isDisabled": false, + "sourceData": "skill B", + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col3": { + "labelTextSize": "0.875rem", + "identifier": "col3", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col3))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "number", + "cellBorderRadius": "0px", + "accessor": "col3", + "isVisible": true, + "label": "Col 3", + "originalIdentifier": "col3", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 2.0, + "isDisabled": false, + "sourceData": 9.0, + "cellBoxShadow": "none", + "fieldType": "Number Input" + }, + "col1": { + "labelTextSize": "0.875rem", + "identifier": "col1", + "boxShadow": "none", + "isRequired": false, + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col1))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "number", + "accessor": "col1", + "isVisible": true, + "label": "Col 1", + "originalIdentifier": "col1", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 0.0, + "isDisabled": false, + "sourceData": 5.0, + "fieldType": "Number Input" + } + }, + "position": -1.0, + "isDisabled": false, + "sourceData": { + "col4": true, + "col2": "skill B", + "col3": 9.0, + "col1": 5.0 + }, + "cellBoxShadow": "none", + "fieldType": "Object" + } + }, + "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 Row", + "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__.children.col3.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col4.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col5.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col2.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col6.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col7.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col8.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col9.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col10.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col11.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col12.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col5.accentColor" + }, + { + "key": "schema.__root_schema__.children.col5.borderRadius" + }, + { + "key": "schema.__root_schema__.borderRadius" + }, + { + "key": "schema.__root_schema__.cellBorderRadius" + }, + { + "key": "schema.__root_schema__.children.col1.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col1.accentColor" + }, + { + "key": "schema.__root_schema__.children.col1.borderRadius" + }, + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + }, + { + "key": "submitButtonStyles.buttonColor" + }, + { + "key": "submitButtonStyles.borderRadius" + }, + { + "key": "resetButtonStyles.borderRadius" + }, + { + "key": "resetButtonStyles.buttonColor" + }, + { + "key": "schema.__root_schema__.children.col2.accentColor" + }, + { + "key": "schema.__root_schema__.children.col2.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col3.accentColor" + }, + { + "key": "schema.__root_schema__.children.col3.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col4.accentColor" + }, + { + "key": "schema.__root_schema__.children.col6.accentColor" + }, + { + "key": "schema.__root_schema__.children.col6.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col7.accentColor" + }, + { + "key": "schema.__root_schema__.children.col7.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col8.accentColor" + }, + { + "key": "schema.__root_schema__.children.col8.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col9.accentColor" + }, + { + "key": "schema.__root_schema__.children.col9.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col10.accentColor" + }, + { + "key": "schema.__root_schema__.children.col10.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col11.accentColor" + }, + { + "key": "schema.__root_schema__.children.col11.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col12.accentColor" + }, + { + "key": "schema.__root_schema__.children.col12.borderRadius" + } + ], + "sourceData": "{{_.omit(data_table.tableData[0], \"customColumn1\", \"__primaryKey__\")}}", + "showReset": true, + "resetButtonLabel": "Reset", + "key": "h9l9ozr8op", + "labelTextSize": "0.875rem", + "backgroundColor": "#fff", + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "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}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "vmorzie6eq", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "width": 532.0, + "minDynamicHeight": 4.0 + } + ] + }, + "layoutOnLoadActions": [ + [ + { + "id": "Run results_Run_Fails_by_Test_Type", + "name": "Run_Fails_by_Test_Type", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [ + "appsmith.URL.queryParams.run_id" + ], + "timeoutInMillisecond": 10000.0 + } + ], + [ + { + "id": "Run results_SelectQuery", + "name": "SelectQuery", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [ + "appsmith.URL.queryParams.run_id", + "data_table.sortOrder.order || 'ASC'", + "data_table.sortOrder.column || 'Run id'", + "data_table.pageSize", + "data_table.searchText || \"\"", + "(data_table.pageNo - 1) * data_table.pageSize" + ], + "timeoutInMillisecond": 10000.0 + } + ] + ], + "layoutOnLoadActionErrors": [], + "validOnPageLoadActions": true, + "id": "Run results", + "deleted": false, + "policies": [], + "userPermissions": [] + } + ], + "userPermissions": [], + "policies": [], + "isHidden": true + }, + "publishedPage": { + "name": "Run results", + "slug": "run-results", + "layouts": [ + { + "viewMode": false, + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 1174.0, + "snapColumns": 64.0, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0.0, + "bottomRow": 950.0, + "containerStyle": "none", + "snapRows": 125.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 69.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": 1520.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": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 11.78515625, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "leftColumn": 2.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + } + ], + "text": "Run results ", + "labelTextSize": "0.875rem", + "rightColumn": 9.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "urzv99hdc8", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "1.5rem", + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "onSort": "{{SelectQuery.run()}}", + "isVisibleDownload": true, + "iconSVG": "/static/media/icon.db8a9cbd.svg", + "topRow": 29.0, + "isSortable": true, + "onPageChange": "{{SelectQuery.run()}}", + "type": "TABLE_WIDGET", + "animateLoading": true, + "dynamicBindingPathList": [ + { + "key": "tableData" + }, + { + "key": "accentColor" + }, + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + }, + { + "key": "primaryColumns.project_id.computedValue" + }, + { + "key": "primaryColumns.Run_date.computedValue" + }, + { + "key": "primaryColumns.Test.computedValue" + }, + { + "key": "primaryColumns.Entity.computedValue" + }, + { + "key": "primaryColumns.Test_type.computedValue" + }, + { + "key": "primaryColumns.Scenario.computedValue" + }, + { + "key": "primaryColumns.Test_status.computedValue" + }, + { + "key": "primaryColumns.Rows_tested.computedValue" + }, + { + "key": "primaryColumns.Rows_failed.computedValue" + }, + { + "key": "primaryColumns._fail.computedValue" + }, + { + "key": "primaryColumns.Run_id.computedValue" + }, + { + "key": "primaryColumns.Test_status.cellBackground" + }, + { + "key": "derivedColumns.Rows_failed.boxShadow" + }, + { + "key": "primaryColumns.Rows_failed.boxShadow" + }, + { + "key": "derivedColumns.Rows_failed.borderRadius" + }, + { + "key": "primaryColumns.Rows_failed.borderRadius" + }, + { + "key": "derivedColumns.Rows_failed.buttonLabel" + }, + { + "key": "primaryColumns.Rows_failed.buttonLabel" + }, + { + "key": "derivedColumns.Rows_failed.buttonColor" + }, + { + "key": "primaryColumns.Rows_failed.buttonColor" + }, + { + "key": "derivedColumns.Rows_failed.isCellVisible" + }, + { + "key": "primaryColumns.Rows_failed.isCellVisible" + }, + { + "key": "primaryColumns.Test_id.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": "run_id", + "columnSizeMap": { + "task": 245.0, + "step": 62.0, + "status": 75.0, + "project_id": 108.0, + "Run_date": 190.0, + "Test": 324.0, + "Rows_tested": 128.0 + }, + "widgetName": "data_table", + "defaultPageSize": 0.0, + "columnOrder": [ + "Run_date", + "project_id", + "Test", + "Test_status", + "Rows_tested", + "Rows_failed", + "Entity", + "Test_type", + "Scenario", + "_fail", + "Run_id", + "Test_id", + null + ], + "dynamicPropertyPathList": [ + { + "key": "primaryColumns.Test_status.cellBackground" + }, + { + "key": "primaryColumns.Rows_failed.buttonColor" + }, + { + "key": "primaryColumns.Rows_failed.isCellVisible" + }, + { + "key": "primaryColumns.Rows_failed.onClick" + } + ], + "displayName": "Table", + "bottomRow": 150.0, + "parentRowSpace": 10.0, + "defaultSelectedRow": "0", + "hideCard": false, + "parentColumnSpace": 16.3125, + "dynamicTriggerPathList": [ + { + "key": "onPageChange" + }, + { + "key": "onSearchTextChanged" + }, + { + "key": "onSort" + }, + { + "key": "primaryColumns.Rows_failed.onClick" + } + ], + "primaryColumns": { + "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": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.project_id))}}", + "cellBackground": "" + }, + "Run_date": { + "index": 0.0, + "width": 150.0, + "id": "Run_date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": false, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Run date", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_date))}}", + "cellBackground": "" + }, + "Test": { + "index": 2.0, + "width": 150.0, + "id": "Test", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Test", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test))}}", + "cellBackground": "" + }, + "Entity": { + "index": 3.0, + "width": 150.0, + "id": "Entity", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Entity", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Entity))}}", + "cellBackground": "" + }, + "Test_type": { + "index": 4.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": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test_type))}}", + "cellBackground": "" + }, + "Scenario": { + "index": 5.0, + "width": 150.0, + "id": "Scenario", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Scenario", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Scenario))}}", + "cellBackground": "" + }, + "Test_status": { + "index": 6.0, + "width": 150.0, + "id": "Test_status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "white", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Test_status", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test_status))}}", + "cellBackground": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test_status == \"pass\" ? \"green\" : \"red\"))}}" + }, + "Rows_tested": { + "index": 7.0, + "width": 150.0, + "id": "Rows_tested", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Rows_tested", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_tested))}}", + "cellBackground": "" + }, + "Rows_failed": { + "index": 8.0, + "width": 150.0, + "id": "Rows_failed", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "button", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed == 0 ? false : true))}}", + "isDerived": false, + "label": "Rows_failed", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed))}}", + "cellBackground": "", + "boxShadow": "{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}", + "borderRadius": "{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}", + "buttonColor": "{{data_table.sanitizedTableData.map((currentRow) => ( '#3b82f6'))}}", + "iconName": "", + "buttonLabel": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed == 0 ? undefined : currentRow.Rows_failed))}}", + "buttonVariant": "TERTIARY", + "onClick": "{{navigateTo('Failed tests',{\"run_id\":data_table.selectedRow.Run_id, \"run_date\":data_table.selectedRow.Run_date, \"test_id\":data_table.selectedRow.Test_id, \"test_description\":data_table.selectedRow.Test})}}" + }, + "_fail": { + "index": 9.0, + "width": 150.0, + "id": "_fail", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "% fail", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow._fail))}}", + "cellBackground": "" + }, + "Run_id": { + "index": 10.0, + "width": 150.0, + "id": "Run_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": false, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Run_id", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_id))}}", + "cellBackground": "" + }, + "undefined": { + "boxShadow": [ + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none", + "none" + ], + "borderRadius": [ + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px", + "0px" + ], + "buttonColor": [ + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6", + "#3b82f6" + ], + "buttonLabel": [ + 1.0, + 1.0, + 1.0, + null, + 262.0, + null, + 1.0, + null, + null, + 49.0, + 1.0, + null, + 14.0, + 33.0, + 1.0, + 17.0, + 1.0, + null, + null + ], + "isCellVisible": [ + true, + true, + true, + false, + true, + false, + true, + false, + false, + true, + true, + false, + true, + true, + true, + true, + true, + false, + false + ], + "index": 11.0 + }, + "Test_id": { + "index": 11.0, + "width": 150.0, + "id": "Test_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": false, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Test_id", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Test_id))}}", + "cellBackground": "" + } + }, + "key": "zba5qel0au", + "derivedColumns": { + "Rows_failed": { + "boxShadow": "{{data_table.sanitizedTableData.map((currentRow) => ( 'none'))}}", + "borderRadius": "{{data_table.sanitizedTableData.map((currentRow) => ( appsmith.theme.borderRadius.appBorderRadius))}}", + "buttonColor": "{{data_table.sanitizedTableData.map((currentRow) => ( '#3b82f6'))}}", + "buttonLabel": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed == 0 ? undefined : currentRow.Rows_failed))}}", + "isCellVisible": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed == 0 ? false : true))}}" + } + }, + "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" + }, + { + "widgetName": "Text17", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "searchTags": [ + "typography", + "paragraph" + ], + "topRow": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "overflow": "NONE", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "parentColumnSpace": 15.265625, + "dynamicTriggerPathList": [], + "leftColumn": 22.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + }, + { + "key": "text" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "Run ID: {{appsmith.URL.queryParams.run_id}}; Run date: {{appsmith.URL.queryParams.run_date}}", + "key": "cmvb93zwil", + "isDeprecated": false, + "rightColumn": 64.0, + "textAlign": "RIGHT", + "dynamicHeight": "FIXED", + "widgetId": "np983yz96f", + "isVisible": true, + "fontStyle": "", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "fontSize": "0.575rem", + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Chart1", + "allowScroll": false, + "displayName": "Chart", + "iconSVG": "/static/media/icon.6adbe31e.svg", + "searchTags": [ + "graph", + "visuals", + "visualisations" + ], + "topRow": 11.0, + "bottomRow": 29.0, + "parentRowSpace": 10.0, + "type": "CHART_WIDGET", + "hideCard": false, + "chartData": { + "z7r0lhh07r": { + "seriesName": "Sales", + "data": "{{Run_Fails_by_Test_Type.data}}" + } + }, + "animateLoading": true, + "parentColumnSpace": 15.265625, + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "boxShadow" + }, + { + "key": "chartData.z7r0lhh07r.data" + }, + { + "key": "accentColor" + }, + { + "key": "fontFamily" + } + ], + "customFusionChartConfig": { + "type": "column2d", + "dataSource": { + "chart": { + "caption": "Sales Report", + "xAxisName": "Product Line", + "yAxisName": "Revenue($)", + "theme": "fusion" + }, + "data": [ + { + "label": "Product1", + "value": 20000.0 + }, + { + "label": "Product2", + "value": 22000.0 + }, + { + "label": "Product3", + "value": 32000.0 + } + ] + } + }, + "key": "bwx9gqhm0r", + "isDeprecated": false, + "rightColumn": 64.0, + "widgetId": "xtwaz5qcn5", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "labelOrientation": "auto", + "renderMode": "CANVAS", + "isLoading": false, + "yAxisName": "% failed ", + "chartName": "", + "borderRadius": "0px", + "xAxisName": "Category", + "chartType": "COLUMN_CHART" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Container2", + "borderColor": "transparent", + "isCanvas": true, + "displayName": "Container", + "iconSVG": "/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0.0, + "bottomRow": 6.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Canvas5", + "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": [ + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + } + ], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 11.0, + "iconName": "timeline-line-chart", + "menuVariant": "TERTIARY", + "widgetId": "xxern5jqjt", + "menuItems": { + "menuItem1": { + "label": "Run log", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Run log', {})}}" + }, + "menuItem2": { + "label": "Trends", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0 + } + }, + "isVisible": true, + "label": "Run monitoring", + "version": 1.0, + "parentId": "93zsrx53dx", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1Copy", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + }, + { + "key": "menuItems.menuItem2.onClick" + }, + { + "key": "menuItems.menuItem5clg3sf596.onClick" + }, + { + "key": "menuItems.menuItemzhze0we924.onClick" + } + ], + "leftColumn": 11.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 19.0, + "iconName": "settings", + "menuVariant": "TERTIARY", + "widgetId": "eykymxfaa2", + "menuItems": { + "menuItem1": { + "label": "Tests", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Tests', {})}}" + }, + "menuItem2": { + "label": "Entities", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0, + "onClick": "{{navigateTo('Entities', {})}}" + }, + "menuItem5clg3sf596": { + "id": "menuItem5clg3sf596", + "index": 2.0, + "label": "Categories", + "widgetId": "xj72wvs7rg", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Categories', {})}}" + }, + "menuItemzhze0we924": { + "id": "menuItemzhze0we924", + "index": 3.0, + "label": "Projects", + "widgetId": "ail7gs5wwr", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Projects', {})}}" + } + }, + "isVisible": true, + "label": "Configuration", + "version": 1.0, + "parentId": "93zsrx53dx", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "widgetName": "Text17Copy", + "borderColor": "#fff", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "DOT", + "key": "14w22nnzm7", + "isDeprecated": false, + "rightColumn": 3.0, + "backgroundColor": "#f79113", + "disableLink": false, + "textAlign": "CENTER", + "dynamicHeight": "FIXED", + "widgetId": "2hvre6rswq", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#fff", + "version": 1.0, + "parentId": "93zsrx53dx", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "fontSize": "0.975rem", + "minDynamicHeight": 4.0 + } + ], + "key": "zdu4x20wju", + "isDeprecated": false, + "rightColumn": 471.0, + "detachFromLayout": true, + "widgetId": "93zsrx53dx", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "containerStyle": "none", + "isVisible": true, + "version": 1.0, + "parentId": "kax8roxzdl", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ], + "borderWidth": "0", + "key": "nymtbn27w8", + "backgroundColor": "#3730a3", + "isDeprecated": false, + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "widgetId": "kax8roxzdl", + "containerStyle": "card", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "none", + "widgetName": "IconButton1", + "onClick": "{{navigateTo('Run log', {\"run_id\": appsmith.URL.queryParams.run_id})}}", + "buttonColor": "#3b82f6", + "dynamicPropertyPathList": [ + { + "key": "onClick" + } + ], + "displayName": "Icon Button", + "iconSVG": "/static/media/icon.1a0c634ac75f9fa6b6ae7a8df882a3ba.svg", + "searchTags": [ + "click", + "submit" + ], + "topRow": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "ICON_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "isDisabled": false, + "key": "y0ebyprd68", + "isDeprecated": false, + "rightColumn": 2.0, + "iconName": "chevron-left", + "widgetId": "sj41jpzsr1", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "buttonVariant": "TERTIARY" + } + ] + } + ], + "borderWidth": "0", + "labelTextSize": "0.875rem", + "backgroundColor": "#fafafa", + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "isVisible": "true", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + }, + { + "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", + "dynamicHeight": "FIXED", + "widgetId": "35yoxo4oec", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "1.5rem", + "minDynamicHeight": 4.0 + }, + { + "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": [], + "text": "Are you sure you want to delete this item?", + "labelTextSize": "0.875rem", + "rightColumn": 63.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "48uac29g6e", + "isVisible": "true", + "fontStyle": "", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "1rem", + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "i3whp03wf0", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "width": 456.0, + "minDynamicHeight": 4.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__": { + "labelTextSize": "0.875rem", + "identifier": "__root_schema__", + "boxShadow": "none", + "isRequired": false, + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "dataType": "object", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "accessor": "__root_schema__", + "isVisible": true, + "label": "", + "originalIdentifier": "__root_schema__", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": { + "col8": { + "labelTextSize": "0.875rem", + "identifier": "col8", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col8))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col8", + "isVisible": true, + "label": "Col 8", + "originalIdentifier": "col8", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 7.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col12": { + "labelTextSize": "0.875rem", + "identifier": "col12", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col12))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col12", + "isVisible": true, + "label": "Col 12", + "originalIdentifier": "col12", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 11.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col9": { + "labelTextSize": "0.875rem", + "identifier": "col9", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col9))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col9", + "isVisible": true, + "label": "Col 9", + "originalIdentifier": "col9", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 8.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col11": { + "labelTextSize": "0.875rem", + "identifier": "col11", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col11))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col11", + "isVisible": true, + "label": "Col 11", + "originalIdentifier": "col11", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 10.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col6": { + "labelTextSize": "0.875rem", + "identifier": "col6", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col6))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col6", + "isVisible": true, + "label": "Col 6", + "originalIdentifier": "col6", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 5.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col10": { + "labelTextSize": "0.875rem", + "identifier": "col10", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col10))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col10", + "isVisible": true, + "label": "Col 10", + "originalIdentifier": "col10", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 9.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col7": { + "labelTextSize": "0.875rem", + "identifier": "col7", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col7))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col7", + "isVisible": true, + "label": "Col 7", + "originalIdentifier": "col7", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 6.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col4": { + "labelTextSize": "0.875rem", + "identifier": "col4", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col4))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "boolean", + "cellBorderRadius": "0px", + "accessor": "col4", + "isVisible": true, + "label": "Col 4", + "alignWidget": "LEFT", + "originalIdentifier": "col4", + "borderRadius": "0px", + "children": {}, + "position": 3.0, + "isDisabled": false, + "sourceData": true, + "cellBoxShadow": "none", + "fieldType": "Switch" + }, + "col5": { + "labelTextSize": "0.875rem", + "identifier": "col5", + "boxShadow": "none", + "isRequired": false, + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col5))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "number", + "accessor": "col5", + "isVisible": true, + "label": "Col 5", + "originalIdentifier": "col5", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 4.0, + "isDisabled": false, + "fieldType": "Number Input" + }, + "col2": { + "labelTextSize": "0.875rem", + "identifier": "col2", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col2))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "string", + "cellBorderRadius": "0px", + "accessor": "col2", + "isVisible": true, + "label": "Col 2", + "originalIdentifier": "col2", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 1.0, + "isDisabled": false, + "sourceData": "skill B", + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col3": { + "labelTextSize": "0.875rem", + "identifier": "col3", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col3))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "number", + "cellBorderRadius": "0px", + "accessor": "col3", + "isVisible": true, + "label": "Col 3", + "originalIdentifier": "col3", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 2.0, + "isDisabled": false, + "sourceData": 9.0, + "cellBoxShadow": "none", + "fieldType": "Number Input" + }, + "col1": { + "labelTextSize": "0.875rem", + "identifier": "col1", + "boxShadow": "none", + "isRequired": false, + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col1))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "number", + "accessor": "col1", + "isVisible": true, + "label": "Col 1", + "originalIdentifier": "col1", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 0.0, + "isDisabled": false, + "sourceData": 5.0, + "fieldType": "Number Input" + } + }, + "position": -1.0, + "isDisabled": false, + "sourceData": { + "col4": true, + "col2": "skill B", + "col3": 9.0, + "col1": 5.0 + }, + "cellBoxShadow": "none", + "fieldType": "Object" + } + }, + "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 Row", + "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__.children.col3.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col4.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col5.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col2.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col6.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col7.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col8.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col9.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col10.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col11.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col12.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col5.accentColor" + }, + { + "key": "schema.__root_schema__.children.col5.borderRadius" + }, + { + "key": "schema.__root_schema__.borderRadius" + }, + { + "key": "schema.__root_schema__.cellBorderRadius" + }, + { + "key": "schema.__root_schema__.children.col1.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col1.accentColor" + }, + { + "key": "schema.__root_schema__.children.col1.borderRadius" + }, + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + }, + { + "key": "submitButtonStyles.buttonColor" + }, + { + "key": "submitButtonStyles.borderRadius" + }, + { + "key": "resetButtonStyles.borderRadius" + }, + { + "key": "resetButtonStyles.buttonColor" + }, + { + "key": "schema.__root_schema__.children.col2.accentColor" + }, + { + "key": "schema.__root_schema__.children.col2.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col3.accentColor" + }, + { + "key": "schema.__root_schema__.children.col3.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col4.accentColor" + }, + { + "key": "schema.__root_schema__.children.col6.accentColor" + }, + { + "key": "schema.__root_schema__.children.col6.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col7.accentColor" + }, + { + "key": "schema.__root_schema__.children.col7.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col8.accentColor" + }, + { + "key": "schema.__root_schema__.children.col8.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col9.accentColor" + }, + { + "key": "schema.__root_schema__.children.col9.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col10.accentColor" + }, + { + "key": "schema.__root_schema__.children.col10.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col11.accentColor" + }, + { + "key": "schema.__root_schema__.children.col11.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col12.accentColor" + }, + { + "key": "schema.__root_schema__.children.col12.borderRadius" + } + ], + "sourceData": "{{_.omit(data_table.tableData[0], \"customColumn1\", \"__primaryKey__\")}}", + "showReset": true, + "resetButtonLabel": "Reset", + "key": "h9l9ozr8op", + "labelTextSize": "0.875rem", + "backgroundColor": "#fff", + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "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}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "vmorzie6eq", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "width": 532.0, + "minDynamicHeight": 4.0 + } + ] + }, + "layoutOnLoadActions": [ + [ + { + "id": "Run results_Run_Fails_by_Test_Type", + "name": "Run_Fails_by_Test_Type", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [ + "appsmith.URL.queryParams.run_id" + ], + "timeoutInMillisecond": 10000.0 + } + ], + [ + { + "id": "Run results_SelectQuery", + "name": "SelectQuery", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [ + "appsmith.URL.queryParams.run_id", + "data_table.sortOrder.order || 'ASC'", + "data_table.sortOrder.column || 'Run id'", + "data_table.pageSize", + "data_table.searchText || \"\"", + "(data_table.pageNo - 1) * data_table.pageSize" + ], + "timeoutInMillisecond": 10000.0 + } + ] + ], + "layoutOnLoadActionErrors": [], + "validOnPageLoadActions": true, + "id": "Run results", + "deleted": false, + "policies": [], + "userPermissions": [] + } + ], + "userPermissions": [], + "policies": [], + "isHidden": true + }, + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781832f" + }, + { + "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": 950.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": 900.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": 7.0, + "bottomRow": 11.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": 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": "#93c5fd", + "widgetId": "xp5u9a9nzq", + "topRow": 7.0, + "bottomRow": 11.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": 62.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "onSort": "{{SelectQuery.run()}}", + "isVisibleDownload": true, + "iconSVG": "/static/media/icon.db8a9cbd.svg", + "topRow": 11.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_id.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" + }, + { + "key": "primaryColumns.project_id.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_id": 275.0, + "entity_definition": 691.0, + "entity_category_description": 431.0 + }, + "widgetName": "data_table", + "defaultPageSize": 0.0, + "columnOrder": [ + "customColumn2", + "customColumn1", + "project_id", + "entity_id", + "entity_id", + "entity_category", + "entity_definition", + "date_added", + "date_modified", + "last_updated_by", + "entity_category_description" + ], + "dynamicPropertyPathList": [ + { + "key": "primaryColumns.customColumn1.borderRadius" + } + ], + "displayName": "Table", + "bottomRow": 88.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": 1.0, + "width": 150.0, + "id": "entity_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "entity_id", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_id))}}", + "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": "" + }, + "project_id": { + "index": 8.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": "" + } + }, + "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": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "leftColumn": 51.0, + "dynamicBindingPathList": [], + "text": "Add entity", + "isDisabled": "", + "key": "2ob5jed9vo", + "rightColumn": 62.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": "#a1a1aa", + "displayName": "Icon Button", + "iconSVG": "/static/media/icon.1a0c634a.svg", + "searchTags": [ + "click", + "submit" + ], + "topRow": 7.0, + "bottomRow": 11.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": "zjrq8w12dz", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "buttonVariant": "TERTIARY" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Container2Copy", + "borderColor": "transparent", + "isCanvas": true, + "displayName": "Container", + "iconSVG": "/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0.0, + "bottomRow": 6.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Canvas5Copy1", + "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": [ + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1Copy1", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + } + ], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 11.0, + "iconName": "timeline-line-chart", + "menuVariant": "TERTIARY", + "widgetId": "5ef8swmekq", + "menuItems": { + "menuItem1": { + "label": "Run log", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Run log', {})}}" + }, + "menuItem2": { + "label": "Trends", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0 + } + }, + "isVisible": true, + "label": "Run monitoring", + "version": 1.0, + "parentId": "uai74em954", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1CopyCopy", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + }, + { + "key": "menuItems.menuItem2.onClick" + }, + { + "key": "menuItems.menuItem5clg3sf596.onClick" + }, + { + "key": "menuItems.menuItemzhze0we924.onClick" + } + ], + "leftColumn": 11.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 19.0, + "iconName": "settings", + "menuVariant": "TERTIARY", + "widgetId": "le1sepuugs", + "menuItems": { + "menuItem1": { + "label": "Tests", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Tests', {})}}" + }, + "menuItem2": { + "label": "Entities", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0, + "onClick": "{{navigateTo('Entities', {})}}" + }, + "menuItem5clg3sf596": { + "id": "menuItem5clg3sf596", + "index": 2.0, + "label": "Categories", + "widgetId": "xj72wvs7rg", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Categories', {})}}" + }, + "menuItemzhze0we924": { + "id": "menuItemzhze0we924", + "index": 3.0, + "label": "Projects", + "widgetId": "ail7gs5wwr", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Projects', {})}}" + } + }, + "isVisible": true, + "label": "Configuration", + "version": 1.0, + "parentId": "uai74em954", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "widgetName": "Text17Copy1", + "borderColor": "#fff", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "DOT", + "key": "14w22nnzm7", + "isDeprecated": false, + "rightColumn": 3.0, + "backgroundColor": "#f79113", + "textAlign": "CENTER", + "widgetId": "klm3mlyj89", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#fff", + "version": 1.0, + "parentId": "uai74em954", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontSize": "0.975rem" + } + ], + "key": "zdu4x20wju", + "isDeprecated": false, + "rightColumn": 471.0, + "detachFromLayout": true, + "widgetId": "uai74em954", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "containerStyle": "none", + "isVisible": true, + "version": 1.0, + "parentId": "7typnj3j3c", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ], + "borderWidth": "0", + "key": "nymtbn27w8", + "backgroundColor": "#3730a3", + "isDeprecated": false, + "rightColumn": 64.0, + "widgetId": "7typnj3j3c", + "containerStyle": "card", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ] + } + ], + "borderWidth": "0", + "labelTextSize": "0.875rem", + "backgroundColor": "#fafafa", + "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_id.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": "hhview_visits", + "isCustomField": false, + "accessor": "entity_id", + "identifier": "entity_id", + "position": 1.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": 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": 4.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": 5.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": 6.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": 7.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": 8.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" + }, + "customField1": { + "children": {}, + "dataType": "string", + "defaultValue": "", + "fieldType": "Select", + "sourceData": "", + "isCustomField": true, + "accessor": "entity_project_id", + "identifier": "customField1", + "position": 3.0, + "originalIdentifier": "customField1", + "boxShadow": "none", + "borderRadius": "{{((sourceData, formData, fieldState) => (appsmith.theme.borderRadius.appBorderRadius))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{((sourceData, formData, fieldState) => (appsmith.theme.colors.primaryColor))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": true, + "label": "Project", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{Projects_Dropdown.data}}" + } + }, + "dataType": "object", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "fieldType": "Object", + "sourceData": { + "entity_id": "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_id.defaultValue" + }, + { + "key": "schema.__root_schema__.children.entity_id.borderRadius" + }, + { + "key": "schema.__root_schema__.children.entity_id.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" + }, + { + "key": "schema.__root_schema__.children.customField1.borderRadius" + }, + { + "key": "schema.__root_schema__.children.customField1.accentColor" + }, + { + "key": "schema.__root_schema__.children.customField1.options" + } + ], + "sourceData": "{}", + "showReset": true, + "resetButtonLabel": "Reset", + "key": "h9l9ozr8op", + "labelTextSize": "0.875rem", + "backgroundColor": "#fff", + "rightColumn": 63.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": 716.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": 560.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": "Text18CopyCopy1", + "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.9599609375, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "Project", + "key": "xaqcpsuf8a", + "isDeprecated": false, + "rightColumn": 17.0, + "textAlign": "LEFT", + "widgetId": "8cop74ux6s", + "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_categoryCopy", + "isFilterable": true, + "displayName": "Select", + "iconSVG": "/static/media/icon.bd99caba.svg", + "labelText": "", + "searchTags": [ + "dropdown" + ], + "topRow": 14.0, + "bottomRow": 18.0, + "parentRowSpace": 10.0, + "labelWidth": 5.0, + "type": "SELECT_WIDGET", + "serverSideFiltering": false, + "hideCard": false, + "defaultOptionValue": "{{data_table.selectedRow.project_id}}", + "animateLoading": true, + "parentColumnSpace": 7.9599609375, + "dynamicTriggerPathList": [], + "leftColumn": 20.0, + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "borderRadius" + }, + { + "key": "defaultOptionValue" + }, + { + "key": "options" + } + ], + "labelPosition": "Left", + "options": "{{Projects_Dropdown.data}}", + "placeholderText": "Select option", + "isDisabled": false, + "key": "u0o6ppj7qr", + "labelTextSize": "0.875rem", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 63.0, + "widgetId": "niokrl8u8m", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": true, + "version": 1.0, + "parentId": "2adojvqxx2", + "labelAlignment": "left", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + }, + { + "widgetName": "Text18CopyCopy", + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "searchTags": [ + "typography", + "paragraph" + ], + "topRow": 18.0, + "bottomRow": 22.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": 50.0, + "bottomRow": 54.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": 50.0, + "bottomRow": 54.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": 50.0, + "bottomRow": 54.0, + "type": "FORM_BUTTON_WIDGET", + "hideCard": true, + "animateLoading": true, + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "buttonColor" + }, + { + "key": "borderRadius" + } + ], + "text": "Reset", + "key": "0q5pnr6dj7", + "isDeprecated": false, + "rightColumn": 19.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_id", + "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_id}}" + }, + { + "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": 18.0, + "bottomRow": 50.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": 63.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": 674.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_idEntity 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_Projects_Dropdown", + "name": "Projects_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": true + }, + "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": 950.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": 900.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": 7.0, + "bottomRow": 11.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": 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": "#93c5fd", + "widgetId": "xp5u9a9nzq", + "topRow": 7.0, + "bottomRow": 11.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": 62.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "onSort": "{{SelectQuery.run()}}", + "isVisibleDownload": true, + "iconSVG": "/static/media/icon.db8a9cbd.svg", + "topRow": 11.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_id.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" + }, + { + "key": "primaryColumns.project_id.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_id": 275.0, + "entity_definition": 691.0, + "entity_category_description": 431.0 + }, + "widgetName": "data_table", + "defaultPageSize": 0.0, + "columnOrder": [ + "customColumn2", + "customColumn1", + "project_id", + "entity_id", + "entity_id", + "entity_category", + "entity_definition", + "date_added", + "date_modified", + "last_updated_by", + "entity_category_description" + ], + "dynamicPropertyPathList": [ + { + "key": "primaryColumns.customColumn1.borderRadius" + } + ], + "displayName": "Table", + "bottomRow": 88.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": 1.0, + "width": 150.0, + "id": "entity_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "entity_id", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.entity_id))}}", + "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": "" + }, + "project_id": { + "index": 8.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": "" + } + }, + "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": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "leftColumn": 51.0, + "dynamicBindingPathList": [], + "text": "Add entity", + "isDisabled": "", + "key": "2ob5jed9vo", + "rightColumn": 62.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": "#a1a1aa", + "displayName": "Icon Button", + "iconSVG": "/static/media/icon.1a0c634a.svg", + "searchTags": [ + "click", + "submit" + ], + "topRow": 7.0, + "bottomRow": 11.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": "zjrq8w12dz", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "buttonVariant": "TERTIARY" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Container2Copy", + "borderColor": "transparent", + "isCanvas": true, + "displayName": "Container", + "iconSVG": "/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0.0, + "bottomRow": 6.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Canvas5Copy1", + "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": [ + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1Copy1", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + } + ], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 11.0, + "iconName": "timeline-line-chart", + "menuVariant": "TERTIARY", + "widgetId": "5ef8swmekq", + "menuItems": { + "menuItem1": { + "label": "Run log", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Run log', {})}}" + }, + "menuItem2": { + "label": "Trends", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0 + } + }, + "isVisible": true, + "label": "Run monitoring", + "version": 1.0, + "parentId": "uai74em954", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1CopyCopy", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + }, + { + "key": "menuItems.menuItem2.onClick" + }, + { + "key": "menuItems.menuItem5clg3sf596.onClick" + }, + { + "key": "menuItems.menuItemzhze0we924.onClick" + } + ], + "leftColumn": 11.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 19.0, + "iconName": "settings", + "menuVariant": "TERTIARY", + "widgetId": "le1sepuugs", + "menuItems": { + "menuItem1": { + "label": "Tests", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Tests', {})}}" + }, + "menuItem2": { + "label": "Entities", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0, + "onClick": "{{navigateTo('Entities', {})}}" + }, + "menuItem5clg3sf596": { + "id": "menuItem5clg3sf596", + "index": 2.0, + "label": "Categories", + "widgetId": "xj72wvs7rg", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Categories', {})}}" + }, + "menuItemzhze0we924": { + "id": "menuItemzhze0we924", + "index": 3.0, + "label": "Projects", + "widgetId": "ail7gs5wwr", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Projects', {})}}" + } + }, + "isVisible": true, + "label": "Configuration", + "version": 1.0, + "parentId": "uai74em954", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "widgetName": "Text17Copy1", + "borderColor": "#fff", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "DOT", + "key": "14w22nnzm7", + "isDeprecated": false, + "rightColumn": 3.0, + "backgroundColor": "#f79113", + "textAlign": "CENTER", + "widgetId": "klm3mlyj89", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#fff", + "version": 1.0, + "parentId": "uai74em954", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontSize": "0.975rem" + } + ], + "key": "zdu4x20wju", + "isDeprecated": false, + "rightColumn": 471.0, + "detachFromLayout": true, + "widgetId": "uai74em954", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "containerStyle": "none", + "isVisible": true, + "version": 1.0, + "parentId": "7typnj3j3c", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ], + "borderWidth": "0", + "key": "nymtbn27w8", + "backgroundColor": "#3730a3", + "isDeprecated": false, + "rightColumn": 64.0, + "widgetId": "7typnj3j3c", + "containerStyle": "card", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ] + } + ], + "borderWidth": "0", + "labelTextSize": "0.875rem", + "backgroundColor": "#fafafa", + "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_id.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": "hhview_visits", + "isCustomField": false, + "accessor": "entity_id", + "identifier": "entity_id", + "position": 1.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": 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": 4.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": 5.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": 6.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": 7.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": 8.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" + }, + "customField1": { + "children": {}, + "dataType": "string", + "defaultValue": "", + "fieldType": "Select", + "sourceData": "", + "isCustomField": true, + "accessor": "entity_project_id", + "identifier": "customField1", + "position": 3.0, + "originalIdentifier": "customField1", + "boxShadow": "none", + "borderRadius": "{{((sourceData, formData, fieldState) => (appsmith.theme.borderRadius.appBorderRadius))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{((sourceData, formData, fieldState) => (appsmith.theme.colors.primaryColor))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": true, + "label": "Project", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{Projects_Dropdown.data}}" + } + }, + "dataType": "object", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "fieldType": "Object", + "sourceData": { + "entity_id": "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_id.defaultValue" + }, + { + "key": "schema.__root_schema__.children.entity_id.borderRadius" + }, + { + "key": "schema.__root_schema__.children.entity_id.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" + }, + { + "key": "schema.__root_schema__.children.customField1.borderRadius" + }, + { + "key": "schema.__root_schema__.children.customField1.accentColor" + }, + { + "key": "schema.__root_schema__.children.customField1.options" + } + ], + "sourceData": "{}", + "showReset": true, + "resetButtonLabel": "Reset", + "key": "h9l9ozr8op", + "labelTextSize": "0.875rem", + "backgroundColor": "#fff", + "rightColumn": 63.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": 716.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": 560.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": "Text18CopyCopy1", + "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.9599609375, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "Project", + "key": "xaqcpsuf8a", + "isDeprecated": false, + "rightColumn": 17.0, + "textAlign": "LEFT", + "widgetId": "8cop74ux6s", + "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_categoryCopy", + "isFilterable": true, + "displayName": "Select", + "iconSVG": "/static/media/icon.bd99caba.svg", + "labelText": "", + "searchTags": [ + "dropdown" + ], + "topRow": 14.0, + "bottomRow": 18.0, + "parentRowSpace": 10.0, + "labelWidth": 5.0, + "type": "SELECT_WIDGET", + "serverSideFiltering": false, + "hideCard": false, + "defaultOptionValue": "{{data_table.selectedRow.project_id}}", + "animateLoading": true, + "parentColumnSpace": 7.9599609375, + "dynamicTriggerPathList": [], + "leftColumn": 20.0, + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "borderRadius" + }, + { + "key": "defaultOptionValue" + }, + { + "key": "options" + } + ], + "labelPosition": "Left", + "options": "{{Projects_Dropdown.data}}", + "placeholderText": "Select option", + "isDisabled": false, + "key": "u0o6ppj7qr", + "labelTextSize": "0.875rem", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 63.0, + "widgetId": "niokrl8u8m", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": true, + "version": 1.0, + "parentId": "2adojvqxx2", + "labelAlignment": "left", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + }, + { + "widgetName": "Text18CopyCopy", + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "searchTags": [ + "typography", + "paragraph" + ], + "topRow": 18.0, + "bottomRow": 22.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": 50.0, + "bottomRow": 54.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": 50.0, + "bottomRow": 54.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": 50.0, + "bottomRow": 54.0, + "type": "FORM_BUTTON_WIDGET", + "hideCard": true, + "animateLoading": true, + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "buttonColor" + }, + { + "key": "borderRadius" + } + ], + "text": "Reset", + "key": "0q5pnr6dj7", + "isDeprecated": false, + "rightColumn": 19.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_id", + "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_id}}" + }, + { + "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": 18.0, + "bottomRow": 50.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": 63.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": 674.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_idEntity 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_Projects_Dropdown", + "name": "Projects_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": true + }, + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818332" + }, + { + "unpublishedPage": { + "name": "Run log", + "slug": "run-log", + "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": 69.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": 1060.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": 7.0, + "bottomRow": 11.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": "Run log", + "labelTextSize": "0.875rem", + "rightColumn": 10.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "urzv99hdc8", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "1.5rem", + "minDynamicHeight": 4.0 + }, + { + "labelTextSize": "0.875rem", + "boxShadow": "none", + "widgetName": "refresh_btn", + "rightColumn": 64.0, + "onClick": "{{SelectQuery.run()}}", + "iconName": "refresh", + "buttonColor": "#93c5fd", + "widgetId": "xp5u9a9nzq", + "topRow": 7.0, + "bottomRow": 11.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": 62.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "onSort": "{{SelectQuery.run()}}", + "isVisibleDownload": true, + "iconSVG": "/static/media/icon.db8a9cbd.svg", + "topRow": 11.0, + "isSortable": true, + "onPageChange": "{{SelectQuery.run()}}", + "type": "TABLE_WIDGET", + "animateLoading": true, + "dynamicBindingPathList": [ + { + "key": "tableData" + }, + { + "key": "accentColor" + }, + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + }, + { + "key": "primaryColumns.Run_date.computedValue" + }, + { + "key": "primaryColumns.Rows_tested.computedValue" + }, + { + "key": "primaryColumns.Rows_failed.computedValue" + }, + { + "key": "primaryColumns._fail.computedValue" + }, + { + "key": "primaryColumns.Run_id.computedValue" + }, + { + "key": "primaryColumns.Project_id.computedValue" + }, + { + "key": "derivedColumns.customColumn1.boxShadow" + }, + { + "key": "primaryColumns.customColumn1.boxShadow" + }, + { + "key": "derivedColumns.customColumn1.borderRadius" + }, + { + "key": "primaryColumns.customColumn1.borderRadius" + }, + { + "key": "derivedColumns.customColumn1.buttonLabel" + }, + { + "key": "primaryColumns.customColumn1.buttonLabel" + }, + { + "key": "primaryColumns.Run_status.computedValue" + }, + { + "key": "primaryColumns.Run_error.computedValue" + }, + { + "key": "derivedColumns.customColumn1.isCellVisible" + }, + { + "key": "primaryColumns.customColumn1.isCellVisible" + } + ], + "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": "run_id", + "columnSizeMap": { + "task": 245.0, + "step": 62.0, + "status": 75.0, + "run_start": 226.0, + "run_finish": 224.0, + "run_id": 150.0, + "Run_date": 268.0 + }, + "widgetName": "data_table", + "defaultPageSize": 0.0, + "columnOrder": [ + "Run_date", + "Project_id", + "customColumn1", + "Rows_tested", + "Rows_failed", + "_fail", + "Run_id", + "Run_status", + "Run_error" + ], + "dynamicPropertyPathList": [ + { + "key": "primaryColumns.customColumn1.onClick" + }, + { + "key": "primaryColumns.customColumn1.isCellVisible" + } + ], + "displayName": "Table", + "bottomRow": 104.0, + "parentRowSpace": 10.0, + "defaultSelectedRow": "0", + "hideCard": false, + "parentColumnSpace": 16.3125, + "dynamicTriggerPathList": [ + { + "key": "onPageChange" + }, + { + "key": "onSearchTextChanged" + }, + { + "key": "onSort" + }, + { + "key": "primaryColumns.customColumn1.onClick" + } + ], + "primaryColumns": { + "Run_date": { + "index": 0.0, + "width": 150.0, + "id": "Run_date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Run date", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_date))}}", + "cellBackground": "" + }, + "Rows_tested": { + "index": 2.0, + "width": 150.0, + "id": "Rows_tested", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Rows tested", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_tested))}}", + "cellBackground": "" + }, + "Rows_failed": { + "index": 3.0, + "width": 150.0, + "id": "Rows_failed", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Rows failed", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed))}}", + "cellBackground": "" + }, + "_fail": { + "index": 4.0, + "width": 150.0, + "id": "_fail", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "% fail", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow._fail))}}", + "cellBackground": "" + }, + "Run_id": { + "index": 5.0, + "width": 150.0, + "id": "Run_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": false, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Run id", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_id))}}", + "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": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Project_id))}}", + "cellBackground": "" + }, + "customColumn1": { + "index": 6.0, + "width": 150.0, + "id": "customColumn1", + "columnType": "button", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isDerived": true, + "label": "Run results", + "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": "#3b82f6", + "iconName": "", + "buttonLabel": "{{data_table.sanitizedTableData.map((currentRow) => ( 'View'))}}", + "buttonVariant": "TERTIARY", + "onClick": "{{navigateTo('Run results',{\"run_id\":data_table.selectedRow.Run_id, \"run_date\":data_table.selectedRow.Run_date})}}", + "isCellVisible": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_status == \"Finished\" ? true : false))}}" + }, + "Run_status": { + "index": 6.0, + "width": 150.0, + "id": "Run_status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Run_status", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_status))}}", + "cellBackground": "" + }, + "Run_error": { + "index": 7.0, + "width": 150.0, + "id": "Run_error", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Run_error", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_error))}}", + "cellBackground": "" + } + }, + "key": "zba5qel0au", + "derivedColumns": { + "customColumn1": { + "index": 6.0, + "width": 150.0, + "id": "customColumn1", + "columnType": "button", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isDerived": true, + "label": "Run results", + "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": "#3b82f6", + "iconName": "", + "buttonLabel": "{{data_table.sanitizedTableData.map((currentRow) => ( 'View'))}}", + "buttonVariant": "TERTIARY", + "onClick": "{{navigateTo('Run results', {})}}", + "isCellVisible": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_status == \"Finished\" ? true : false))}}" + } + }, + "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": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Container2", + "borderColor": "transparent", + "isCanvas": true, + "displayName": "Container", + "iconSVG": "/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0.0, + "bottomRow": 6.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Canvas5", + "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": [ + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + } + ], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 11.0, + "iconName": "timeline-line-chart", + "menuVariant": "TERTIARY", + "widgetId": "81s53a2wqj", + "menuItems": { + "menuItem1": { + "label": "Run log", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Run log', {})}}" + }, + "menuItem2": { + "label": "Trends", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0 + } + }, + "isVisible": true, + "label": "Run monitoring", + "version": 1.0, + "parentId": "phekdiq45y", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1Copy", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + }, + { + "key": "menuItems.menuItem2.onClick" + }, + { + "key": "menuItems.menuItem5clg3sf596.onClick" + }, + { + "key": "menuItems.menuItemzhze0we924.onClick" + } + ], + "leftColumn": 11.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 24.0, + "iconName": "settings", + "menuVariant": "TERTIARY", + "widgetId": "zqzg4hujok", + "menuItems": { + "menuItem1": { + "label": "Tests", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Tests', {})}}" + }, + "menuItem2": { + "label": "Entities", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0, + "onClick": "{{navigateTo('Entities', {})}}" + }, + "menuItem5clg3sf596": { + "id": "menuItem5clg3sf596", + "index": 2.0, + "label": "Categories", + "widgetId": "xj72wvs7rg", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Categories', {})}}" + }, + "menuItemzhze0we924": { + "id": "menuItemzhze0we924", + "index": 3.0, + "label": "Projects", + "widgetId": "ail7gs5wwr", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Projects', {})}}" + } + }, + "isVisible": true, + "label": "Configuration", + "version": 1.0, + "parentId": "phekdiq45y", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "widgetName": "Text17", + "borderColor": "#fff", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "DOT", + "key": "14w22nnzm7", + "isDeprecated": false, + "rightColumn": 3.0, + "backgroundColor": "#f79113", + "textAlign": "CENTER", + "dynamicHeight": "FIXED", + "widgetId": "xuq65qjv6f", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#fff", + "version": 1.0, + "parentId": "phekdiq45y", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "fontSize": "0.975rem", + "minDynamicHeight": 4.0 + } + ], + "key": "zdu4x20wju", + "isDeprecated": false, + "rightColumn": 471.0, + "detachFromLayout": true, + "widgetId": "phekdiq45y", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "containerStyle": "none", + "isVisible": true, + "version": 1.0, + "parentId": "h9nyfo3qfn", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ], + "borderWidth": "0", + "key": "nymtbn27w8", + "backgroundColor": "#3730a3", + "isDeprecated": false, + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "widgetId": "h9nyfo3qfn", + "containerStyle": "card", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + } + ] + } + ], + "borderWidth": "0", + "labelTextSize": "0.875rem", + "backgroundColor": "#fafafa", + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "isVisible": "true", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + }, + { + "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", + "dynamicHeight": "FIXED", + "widgetId": "35yoxo4oec", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "1.5rem", + "minDynamicHeight": 4.0 + }, + { + "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": [], + "text": "Are you sure you want to delete this item?", + "labelTextSize": "0.875rem", + "rightColumn": 63.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "48uac29g6e", + "isVisible": "true", + "fontStyle": "", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "1rem", + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "i3whp03wf0", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "width": 456.0, + "minDynamicHeight": 4.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__": { + "labelTextSize": "0.875rem", + "identifier": "__root_schema__", + "boxShadow": "none", + "isRequired": false, + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "dataType": "object", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "accessor": "__root_schema__", + "isVisible": true, + "label": "", + "originalIdentifier": "__root_schema__", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": { + "col8": { + "labelTextSize": "0.875rem", + "identifier": "col8", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col8))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col8", + "isVisible": true, + "label": "Col 8", + "originalIdentifier": "col8", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 7.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col12": { + "labelTextSize": "0.875rem", + "identifier": "col12", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col12))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col12", + "isVisible": true, + "label": "Col 12", + "originalIdentifier": "col12", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 11.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col9": { + "labelTextSize": "0.875rem", + "identifier": "col9", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col9))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col9", + "isVisible": true, + "label": "Col 9", + "originalIdentifier": "col9", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 8.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col11": { + "labelTextSize": "0.875rem", + "identifier": "col11", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col11))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col11", + "isVisible": true, + "label": "Col 11", + "originalIdentifier": "col11", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 10.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col6": { + "labelTextSize": "0.875rem", + "identifier": "col6", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col6))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col6", + "isVisible": true, + "label": "Col 6", + "originalIdentifier": "col6", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 5.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col10": { + "labelTextSize": "0.875rem", + "identifier": "col10", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col10))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col10", + "isVisible": true, + "label": "Col 10", + "originalIdentifier": "col10", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 9.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col7": { + "labelTextSize": "0.875rem", + "identifier": "col7", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col7))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col7", + "isVisible": true, + "label": "Col 7", + "originalIdentifier": "col7", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 6.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col4": { + "labelTextSize": "0.875rem", + "identifier": "col4", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col4))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "boolean", + "cellBorderRadius": "0px", + "accessor": "col4", + "isVisible": true, + "label": "Col 4", + "alignWidget": "LEFT", + "originalIdentifier": "col4", + "borderRadius": "0px", + "children": {}, + "position": 3.0, + "isDisabled": false, + "sourceData": true, + "cellBoxShadow": "none", + "fieldType": "Switch" + }, + "col5": { + "labelTextSize": "0.875rem", + "identifier": "col5", + "boxShadow": "none", + "isRequired": false, + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col5))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "number", + "accessor": "col5", + "isVisible": true, + "label": "Col 5", + "originalIdentifier": "col5", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 4.0, + "isDisabled": false, + "fieldType": "Number Input" + }, + "col2": { + "labelTextSize": "0.875rem", + "identifier": "col2", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col2))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "string", + "cellBorderRadius": "0px", + "accessor": "col2", + "isVisible": true, + "label": "Col 2", + "originalIdentifier": "col2", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 1.0, + "isDisabled": false, + "sourceData": "skill B", + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col3": { + "labelTextSize": "0.875rem", + "identifier": "col3", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col3))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "number", + "cellBorderRadius": "0px", + "accessor": "col3", + "isVisible": true, + "label": "Col 3", + "originalIdentifier": "col3", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 2.0, + "isDisabled": false, + "sourceData": 9.0, + "cellBoxShadow": "none", + "fieldType": "Number Input" + }, + "col1": { + "labelTextSize": "0.875rem", + "identifier": "col1", + "boxShadow": "none", + "isRequired": false, + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col1))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "number", + "accessor": "col1", + "isVisible": true, + "label": "Col 1", + "originalIdentifier": "col1", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 0.0, + "isDisabled": false, + "sourceData": 5.0, + "fieldType": "Number Input" + } + }, + "position": -1.0, + "isDisabled": false, + "sourceData": { + "col4": true, + "col2": "skill B", + "col3": 9.0, + "col1": 5.0 + }, + "cellBoxShadow": "none", + "fieldType": "Object" + } + }, + "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 Row", + "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__.children.col3.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col4.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col5.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col2.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col6.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col7.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col8.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col9.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col10.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col11.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col12.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col5.accentColor" + }, + { + "key": "schema.__root_schema__.children.col5.borderRadius" + }, + { + "key": "schema.__root_schema__.borderRadius" + }, + { + "key": "schema.__root_schema__.cellBorderRadius" + }, + { + "key": "schema.__root_schema__.children.col1.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col1.accentColor" + }, + { + "key": "schema.__root_schema__.children.col1.borderRadius" + }, + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + }, + { + "key": "submitButtonStyles.buttonColor" + }, + { + "key": "submitButtonStyles.borderRadius" + }, + { + "key": "resetButtonStyles.borderRadius" + }, + { + "key": "resetButtonStyles.buttonColor" + }, + { + "key": "schema.__root_schema__.children.col2.accentColor" + }, + { + "key": "schema.__root_schema__.children.col2.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col3.accentColor" + }, + { + "key": "schema.__root_schema__.children.col3.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col4.accentColor" + }, + { + "key": "schema.__root_schema__.children.col6.accentColor" + }, + { + "key": "schema.__root_schema__.children.col6.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col7.accentColor" + }, + { + "key": "schema.__root_schema__.children.col7.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col8.accentColor" + }, + { + "key": "schema.__root_schema__.children.col8.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col9.accentColor" + }, + { + "key": "schema.__root_schema__.children.col9.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col10.accentColor" + }, + { + "key": "schema.__root_schema__.children.col10.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col11.accentColor" + }, + { + "key": "schema.__root_schema__.children.col11.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col12.accentColor" + }, + { + "key": "schema.__root_schema__.children.col12.borderRadius" + } + ], + "sourceData": "{{_.omit(data_table.tableData[0], \"customColumn1\", \"__primaryKey__\")}}", + "showReset": true, + "resetButtonLabel": "Reset", + "key": "h9l9ozr8op", + "labelTextSize": "0.875rem", + "backgroundColor": "#fff", + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "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}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "vmorzie6eq", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "width": 532.0, + "minDynamicHeight": 4.0 + } + ] + }, + "layoutOnLoadActions": [ + [ + { + "id": "Run log_SelectQuery", + "name": "SelectQuery", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [], + "timeoutInMillisecond": 10000.0 + } + ] + ], + "layoutOnLoadActionErrors": [], + "validOnPageLoadActions": true, + "id": "Run log", + "deleted": false, + "policies": [], + "userPermissions": [] + } + ], + "userPermissions": [], + "policies": [], + "isHidden": true + }, + "publishedPage": { + "name": "Run log", + "slug": "run-log", + "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": 69.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": 1060.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": 7.0, + "bottomRow": 11.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": "Run log", + "labelTextSize": "0.875rem", + "rightColumn": 10.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "urzv99hdc8", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "1.5rem", + "minDynamicHeight": 4.0 + }, + { + "labelTextSize": "0.875rem", + "boxShadow": "none", + "widgetName": "refresh_btn", + "rightColumn": 64.0, + "onClick": "{{SelectQuery.run()}}", + "iconName": "refresh", + "buttonColor": "#93c5fd", + "widgetId": "xp5u9a9nzq", + "topRow": 7.0, + "bottomRow": 11.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": 62.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "onSort": "{{SelectQuery.run()}}", + "isVisibleDownload": true, + "iconSVG": "/static/media/icon.db8a9cbd.svg", + "topRow": 11.0, + "isSortable": true, + "onPageChange": "{{SelectQuery.run()}}", + "type": "TABLE_WIDGET", + "animateLoading": true, + "dynamicBindingPathList": [ + { + "key": "tableData" + }, + { + "key": "accentColor" + }, + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + }, + { + "key": "primaryColumns.Run_date.computedValue" + }, + { + "key": "primaryColumns.Rows_tested.computedValue" + }, + { + "key": "primaryColumns.Rows_failed.computedValue" + }, + { + "key": "primaryColumns._fail.computedValue" + }, + { + "key": "primaryColumns.Run_id.computedValue" + }, + { + "key": "primaryColumns.Project_id.computedValue" + }, + { + "key": "derivedColumns.customColumn1.boxShadow" + }, + { + "key": "primaryColumns.customColumn1.boxShadow" + }, + { + "key": "derivedColumns.customColumn1.borderRadius" + }, + { + "key": "primaryColumns.customColumn1.borderRadius" + }, + { + "key": "derivedColumns.customColumn1.buttonLabel" + }, + { + "key": "primaryColumns.customColumn1.buttonLabel" + }, + { + "key": "primaryColumns.Run_status.computedValue" + }, + { + "key": "primaryColumns.Run_error.computedValue" + }, + { + "key": "derivedColumns.customColumn1.isCellVisible" + }, + { + "key": "primaryColumns.customColumn1.isCellVisible" + } + ], + "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": "run_id", + "columnSizeMap": { + "task": 245.0, + "step": 62.0, + "status": 75.0, + "run_start": 226.0, + "run_finish": 224.0, + "run_id": 150.0, + "Run_date": 268.0 + }, + "widgetName": "data_table", + "defaultPageSize": 0.0, + "columnOrder": [ + "Run_date", + "Project_id", + "customColumn1", + "Rows_tested", + "Rows_failed", + "_fail", + "Run_id", + "Run_status", + "Run_error" + ], + "dynamicPropertyPathList": [ + { + "key": "primaryColumns.customColumn1.onClick" + }, + { + "key": "primaryColumns.customColumn1.isCellVisible" + } + ], + "displayName": "Table", + "bottomRow": 104.0, + "parentRowSpace": 10.0, + "defaultSelectedRow": "0", + "hideCard": false, + "parentColumnSpace": 16.3125, + "dynamicTriggerPathList": [ + { + "key": "onPageChange" + }, + { + "key": "onSearchTextChanged" + }, + { + "key": "onSort" + }, + { + "key": "primaryColumns.customColumn1.onClick" + } + ], + "primaryColumns": { + "Run_date": { + "index": 0.0, + "width": 150.0, + "id": "Run_date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Run date", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_date))}}", + "cellBackground": "" + }, + "Rows_tested": { + "index": 2.0, + "width": 150.0, + "id": "Rows_tested", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Rows tested", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_tested))}}", + "cellBackground": "" + }, + "Rows_failed": { + "index": 3.0, + "width": 150.0, + "id": "Rows_failed", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Rows failed", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Rows_failed))}}", + "cellBackground": "" + }, + "_fail": { + "index": 4.0, + "width": 150.0, + "id": "_fail", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "% fail", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow._fail))}}", + "cellBackground": "" + }, + "Run_id": { + "index": 5.0, + "width": 150.0, + "id": "Run_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": false, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Run id", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_id))}}", + "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": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Project_id))}}", + "cellBackground": "" + }, + "customColumn1": { + "index": 6.0, + "width": 150.0, + "id": "customColumn1", + "columnType": "button", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isDerived": true, + "label": "Run results", + "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": "#3b82f6", + "iconName": "", + "buttonLabel": "{{data_table.sanitizedTableData.map((currentRow) => ( 'View'))}}", + "buttonVariant": "TERTIARY", + "onClick": "{{navigateTo('Run results',{\"run_id\":data_table.selectedRow.Run_id, \"run_date\":data_table.selectedRow.Run_date})}}", + "isCellVisible": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_status == \"Finished\" ? true : false))}}" + }, + "Run_status": { + "index": 6.0, + "width": 150.0, + "id": "Run_status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Run_status", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_status))}}", + "cellBackground": "" + }, + "Run_error": { + "index": 7.0, + "width": 150.0, + "id": "Run_error", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "Run_error", + "computedValue": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_error))}}", + "cellBackground": "" + } + }, + "key": "zba5qel0au", + "derivedColumns": { + "customColumn1": { + "index": 6.0, + "width": 150.0, + "id": "customColumn1", + "columnType": "button", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isDerived": true, + "label": "Run results", + "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": "#3b82f6", + "iconName": "", + "buttonLabel": "{{data_table.sanitizedTableData.map((currentRow) => ( 'View'))}}", + "buttonVariant": "TERTIARY", + "onClick": "{{navigateTo('Run results', {})}}", + "isCellVisible": "{{data_table.sanitizedTableData.map((currentRow) => ( currentRow.Run_status == \"Finished\" ? true : false))}}" + } + }, + "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": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Container2", + "borderColor": "transparent", + "isCanvas": true, + "displayName": "Container", + "iconSVG": "/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0.0, + "bottomRow": 6.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Canvas5", + "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": [ + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + } + ], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 11.0, + "iconName": "timeline-line-chart", + "menuVariant": "TERTIARY", + "widgetId": "81s53a2wqj", + "menuItems": { + "menuItem1": { + "label": "Run log", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Run log', {})}}" + }, + "menuItem2": { + "label": "Trends", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0 + } + }, + "isVisible": true, + "label": "Run monitoring", + "version": 1.0, + "parentId": "phekdiq45y", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1Copy", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + }, + { + "key": "menuItems.menuItem2.onClick" + }, + { + "key": "menuItems.menuItem5clg3sf596.onClick" + }, + { + "key": "menuItems.menuItemzhze0we924.onClick" + } + ], + "leftColumn": 11.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 24.0, + "iconName": "settings", + "menuVariant": "TERTIARY", + "widgetId": "zqzg4hujok", + "menuItems": { + "menuItem1": { + "label": "Tests", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Tests', {})}}" + }, + "menuItem2": { + "label": "Entities", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0, + "onClick": "{{navigateTo('Entities', {})}}" + }, + "menuItem5clg3sf596": { + "id": "menuItem5clg3sf596", + "index": 2.0, + "label": "Categories", + "widgetId": "xj72wvs7rg", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Categories', {})}}" + }, + "menuItemzhze0we924": { + "id": "menuItemzhze0we924", + "index": 3.0, + "label": "Projects", + "widgetId": "ail7gs5wwr", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Projects', {})}}" + } + }, + "isVisible": true, + "label": "Configuration", + "version": 1.0, + "parentId": "phekdiq45y", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "widgetName": "Text17", + "borderColor": "#fff", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "DOT", + "key": "14w22nnzm7", + "isDeprecated": false, + "rightColumn": 3.0, + "backgroundColor": "#f79113", + "textAlign": "CENTER", + "dynamicHeight": "FIXED", + "widgetId": "xuq65qjv6f", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#fff", + "version": 1.0, + "parentId": "phekdiq45y", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "fontSize": "0.975rem", + "minDynamicHeight": 4.0 + } + ], + "key": "zdu4x20wju", + "isDeprecated": false, + "rightColumn": 471.0, + "detachFromLayout": true, + "widgetId": "phekdiq45y", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "containerStyle": "none", + "isVisible": true, + "version": 1.0, + "parentId": "h9nyfo3qfn", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ], + "borderWidth": "0", + "key": "nymtbn27w8", + "backgroundColor": "#3730a3", + "isDeprecated": false, + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "widgetId": "h9nyfo3qfn", + "containerStyle": "card", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + } + ] + } + ], + "borderWidth": "0", + "labelTextSize": "0.875rem", + "backgroundColor": "#fafafa", + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "isVisible": "true", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + }, + { + "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", + "dynamicHeight": "FIXED", + "widgetId": "35yoxo4oec", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "1.5rem", + "minDynamicHeight": 4.0 + }, + { + "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": [], + "text": "Are you sure you want to delete this item?", + "labelTextSize": "0.875rem", + "rightColumn": 63.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "48uac29g6e", + "isVisible": "true", + "fontStyle": "", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "1rem", + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "i3whp03wf0", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "width": 456.0, + "minDynamicHeight": 4.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__": { + "labelTextSize": "0.875rem", + "identifier": "__root_schema__", + "boxShadow": "none", + "isRequired": false, + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "dataType": "object", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "accessor": "__root_schema__", + "isVisible": true, + "label": "", + "originalIdentifier": "__root_schema__", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": { + "col8": { + "labelTextSize": "0.875rem", + "identifier": "col8", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col8))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col8", + "isVisible": true, + "label": "Col 8", + "originalIdentifier": "col8", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 7.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col12": { + "labelTextSize": "0.875rem", + "identifier": "col12", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col12))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col12", + "isVisible": true, + "label": "Col 12", + "originalIdentifier": "col12", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 11.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col9": { + "labelTextSize": "0.875rem", + "identifier": "col9", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col9))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col9", + "isVisible": true, + "label": "Col 9", + "originalIdentifier": "col9", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 8.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col11": { + "labelTextSize": "0.875rem", + "identifier": "col11", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col11))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col11", + "isVisible": true, + "label": "Col 11", + "originalIdentifier": "col11", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 10.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col6": { + "labelTextSize": "0.875rem", + "identifier": "col6", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col6))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col6", + "isVisible": true, + "label": "Col 6", + "originalIdentifier": "col6", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 5.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col10": { + "labelTextSize": "0.875rem", + "identifier": "col10", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col10))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col10", + "isVisible": true, + "label": "Col 10", + "originalIdentifier": "col10", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 9.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col7": { + "labelTextSize": "0.875rem", + "identifier": "col7", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col7))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "null", + "cellBorderRadius": "0px", + "accessor": "col7", + "isVisible": true, + "label": "Col 7", + "originalIdentifier": "col7", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 6.0, + "isDisabled": false, + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col4": { + "labelTextSize": "0.875rem", + "identifier": "col4", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col4))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "boolean", + "cellBorderRadius": "0px", + "accessor": "col4", + "isVisible": true, + "label": "Col 4", + "alignWidget": "LEFT", + "originalIdentifier": "col4", + "borderRadius": "0px", + "children": {}, + "position": 3.0, + "isDisabled": false, + "sourceData": true, + "cellBoxShadow": "none", + "fieldType": "Switch" + }, + "col5": { + "labelTextSize": "0.875rem", + "identifier": "col5", + "boxShadow": "none", + "isRequired": false, + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col5))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "number", + "accessor": "col5", + "isVisible": true, + "label": "Col 5", + "originalIdentifier": "col5", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 4.0, + "isDisabled": false, + "fieldType": "Number Input" + }, + "col2": { + "labelTextSize": "0.875rem", + "identifier": "col2", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col2))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "string", + "cellBorderRadius": "0px", + "accessor": "col2", + "isVisible": true, + "label": "Col 2", + "originalIdentifier": "col2", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 1.0, + "isDisabled": false, + "sourceData": "skill B", + "cellBoxShadow": "none", + "fieldType": "Text Input" + }, + "col3": { + "labelTextSize": "0.875rem", + "identifier": "col3", + "isRequired": false, + "boxShadow": "none", + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col3))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "number", + "cellBorderRadius": "0px", + "accessor": "col3", + "isVisible": true, + "label": "Col 3", + "originalIdentifier": "col3", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 2.0, + "isDisabled": false, + "sourceData": 9.0, + "cellBoxShadow": "none", + "fieldType": "Number Input" + }, + "col1": { + "labelTextSize": "0.875rem", + "identifier": "col1", + "boxShadow": "none", + "isRequired": false, + "isCustomField": false, + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.col1))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "dataType": "number", + "accessor": "col1", + "isVisible": true, + "label": "Col 1", + "originalIdentifier": "col1", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "children": {}, + "isSpellCheck": false, + "iconAlign": "left", + "position": 0.0, + "isDisabled": false, + "sourceData": 5.0, + "fieldType": "Number Input" + } + }, + "position": -1.0, + "isDisabled": false, + "sourceData": { + "col4": true, + "col2": "skill B", + "col3": 9.0, + "col1": 5.0 + }, + "cellBoxShadow": "none", + "fieldType": "Object" + } + }, + "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 Row", + "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__.children.col3.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col4.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col5.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col2.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col6.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col7.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col8.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col9.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col10.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col11.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col12.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col5.accentColor" + }, + { + "key": "schema.__root_schema__.children.col5.borderRadius" + }, + { + "key": "schema.__root_schema__.borderRadius" + }, + { + "key": "schema.__root_schema__.cellBorderRadius" + }, + { + "key": "schema.__root_schema__.children.col1.defaultValue" + }, + { + "key": "schema.__root_schema__.children.col1.accentColor" + }, + { + "key": "schema.__root_schema__.children.col1.borderRadius" + }, + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + }, + { + "key": "submitButtonStyles.buttonColor" + }, + { + "key": "submitButtonStyles.borderRadius" + }, + { + "key": "resetButtonStyles.borderRadius" + }, + { + "key": "resetButtonStyles.buttonColor" + }, + { + "key": "schema.__root_schema__.children.col2.accentColor" + }, + { + "key": "schema.__root_schema__.children.col2.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col3.accentColor" + }, + { + "key": "schema.__root_schema__.children.col3.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col4.accentColor" + }, + { + "key": "schema.__root_schema__.children.col6.accentColor" + }, + { + "key": "schema.__root_schema__.children.col6.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col7.accentColor" + }, + { + "key": "schema.__root_schema__.children.col7.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col8.accentColor" + }, + { + "key": "schema.__root_schema__.children.col8.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col9.accentColor" + }, + { + "key": "schema.__root_schema__.children.col9.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col10.accentColor" + }, + { + "key": "schema.__root_schema__.children.col10.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col11.accentColor" + }, + { + "key": "schema.__root_schema__.children.col11.borderRadius" + }, + { + "key": "schema.__root_schema__.children.col12.accentColor" + }, + { + "key": "schema.__root_schema__.children.col12.borderRadius" + } + ], + "sourceData": "{{_.omit(data_table.tableData[0], \"customColumn1\", \"__primaryKey__\")}}", + "showReset": true, + "resetButtonLabel": "Reset", + "key": "h9l9ozr8op", + "labelTextSize": "0.875rem", + "backgroundColor": "#fff", + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "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}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "vmorzie6eq", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "width": 532.0, + "minDynamicHeight": 4.0 + } + ] + }, + "layoutOnLoadActions": [ + [ + { + "id": "Run log_SelectQuery", + "name": "SelectQuery", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [], + "timeoutInMillisecond": 10000.0 + } + ] + ], + "layoutOnLoadActionErrors": [], + "validOnPageLoadActions": true, + "id": "Run log", + "deleted": false, + "policies": [], + "userPermissions": [] + } + ], + "userPermissions": [], + "policies": [], + "isHidden": true + }, + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781833b" + }, + { + "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": 1000.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": 98.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": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Container2", + "borderColor": "transparent", + "isCanvas": true, + "displayName": "Container", + "iconSVG": "/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0.0, + "bottomRow": 6.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Canvas5Copy", + "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": [ + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + } + ], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 11.0, + "iconName": "timeline-line-chart", + "menuVariant": "TERTIARY", + "widgetId": "r6mleco87b", + "menuItems": { + "menuItem1": { + "label": "Run log", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Run log', {})}}" + }, + "menuItem2": { + "label": "Trends", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0 + } + }, + "isVisible": true, + "label": "Run monitoring", + "version": 1.0, + "parentId": "a5uo8h2s6n", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1Copy", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + }, + { + "key": "menuItems.menuItem2.onClick" + }, + { + "key": "menuItems.menuItem5clg3sf596.onClick" + }, + { + "key": "menuItems.menuItemzhze0we924.onClick" + } + ], + "leftColumn": 11.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 19.0, + "iconName": "settings", + "menuVariant": "TERTIARY", + "widgetId": "bel06ytkbw", + "menuItems": { + "menuItem1": { + "label": "Tests", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Tests', {})}}" + }, + "menuItem2": { + "label": "Entities", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0, + "onClick": "{{navigateTo('Entities', {})}}" + }, + "menuItem5clg3sf596": { + "id": "menuItem5clg3sf596", + "index": 2.0, + "label": "Categories", + "widgetId": "xj72wvs7rg", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Categories', {})}}" + }, + "menuItemzhze0we924": { + "id": "menuItemzhze0we924", + "index": 3.0, + "label": "Projects", + "widgetId": "ail7gs5wwr", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Projects', {})}}" + } + }, + "isVisible": true, + "label": "Configuration", + "version": 1.0, + "parentId": "a5uo8h2s6n", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "widgetName": "Text17Copy", + "borderColor": "#fff", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "DOT", + "key": "14w22nnzm7", + "isDeprecated": false, + "rightColumn": 3.0, + "backgroundColor": "#f79113", + "textAlign": "CENTER", + "widgetId": "zh7xuknjgh", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#fff", + "version": 1.0, + "parentId": "a5uo8h2s6n", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontSize": "0.975rem" + } + ], + "key": "zdu4x20wju", + "isDeprecated": false, + "rightColumn": 471.0, + "detachFromLayout": true, + "widgetId": "a5uo8h2s6n", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "containerStyle": "none", + "isVisible": true, + "version": 1.0, + "parentId": "82z7snagh7", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ], + "borderWidth": "0", + "key": "nymtbn27w8", + "backgroundColor": "#3730a3", + "isDeprecated": false, + "rightColumn": 64.0, + "widgetId": "82z7snagh7", + "containerStyle": "card", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + }, + { + "boxShadow": "none", + "widgetName": "IconButton2", + "onClick": "{{showModal('Help_Categories')}}", + "buttonColor": "#a1a1aa", + "displayName": "Icon Button", + "iconSVG": "/static/media/icon.1a0c634a.svg", + "searchTags": [ + "click", + "submit" + ], + "topRow": 7.0, + "bottomRow": 11.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": 7.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "isDisabled": false, + "key": "zgwqqdr0d5", + "isDeprecated": false, + "rightColumn": 9.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": 7.0, + "bottomRow": 11.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": 7.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": "#93c5fd", + "widgetId": "xp5u9a9nzq", + "topRow": 7.0, + "bottomRow": 11.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": 62.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "onSort": "{{SelectQuery.run()}}", + "isVisibleDownload": true, + "iconSVG": "/static/media/icon.db8a9cbd.svg", + "topRow": 11.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": 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" + }, + "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": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "leftColumn": 51.0, + "dynamicBindingPathList": [], + "text": "Add category", + "isDisabled": "", + "key": "2ob5jed9vo", + "rightColumn": 62.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": "#fafafa", + "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": 18.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": 18.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": 18.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": true + }, + "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": 1000.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": 98.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": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Container2", + "borderColor": "transparent", + "isCanvas": true, + "displayName": "Container", + "iconSVG": "/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0.0, + "bottomRow": 6.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Canvas5Copy", + "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": [ + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + } + ], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 11.0, + "iconName": "timeline-line-chart", + "menuVariant": "TERTIARY", + "widgetId": "r6mleco87b", + "menuItems": { + "menuItem1": { + "label": "Run log", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Run log', {})}}" + }, + "menuItem2": { + "label": "Trends", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0 + } + }, + "isVisible": true, + "label": "Run monitoring", + "version": 1.0, + "parentId": "a5uo8h2s6n", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1Copy", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + }, + { + "key": "menuItems.menuItem2.onClick" + }, + { + "key": "menuItems.menuItem5clg3sf596.onClick" + }, + { + "key": "menuItems.menuItemzhze0we924.onClick" + } + ], + "leftColumn": 11.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 19.0, + "iconName": "settings", + "menuVariant": "TERTIARY", + "widgetId": "bel06ytkbw", + "menuItems": { + "menuItem1": { + "label": "Tests", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Tests', {})}}" + }, + "menuItem2": { + "label": "Entities", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0, + "onClick": "{{navigateTo('Entities', {})}}" + }, + "menuItem5clg3sf596": { + "id": "menuItem5clg3sf596", + "index": 2.0, + "label": "Categories", + "widgetId": "xj72wvs7rg", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Categories', {})}}" + }, + "menuItemzhze0we924": { + "id": "menuItemzhze0we924", + "index": 3.0, + "label": "Projects", + "widgetId": "ail7gs5wwr", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Projects', {})}}" + } + }, + "isVisible": true, + "label": "Configuration", + "version": 1.0, + "parentId": "a5uo8h2s6n", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "widgetName": "Text17Copy", + "borderColor": "#fff", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "DOT", + "key": "14w22nnzm7", + "isDeprecated": false, + "rightColumn": 3.0, + "backgroundColor": "#f79113", + "textAlign": "CENTER", + "widgetId": "zh7xuknjgh", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#fff", + "version": 1.0, + "parentId": "a5uo8h2s6n", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontSize": "0.975rem" + } + ], + "key": "zdu4x20wju", + "isDeprecated": false, + "rightColumn": 471.0, + "detachFromLayout": true, + "widgetId": "a5uo8h2s6n", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "containerStyle": "none", + "isVisible": true, + "version": 1.0, + "parentId": "82z7snagh7", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ], + "borderWidth": "0", + "key": "nymtbn27w8", + "backgroundColor": "#3730a3", + "isDeprecated": false, + "rightColumn": 64.0, + "widgetId": "82z7snagh7", + "containerStyle": "card", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + }, + { + "boxShadow": "none", + "widgetName": "IconButton2", + "onClick": "{{showModal('Help_Categories')}}", + "buttonColor": "#a1a1aa", + "displayName": "Icon Button", + "iconSVG": "/static/media/icon.1a0c634a.svg", + "searchTags": [ + "click", + "submit" + ], + "topRow": 7.0, + "bottomRow": 11.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": 7.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "isDisabled": false, + "key": "zgwqqdr0d5", + "isDeprecated": false, + "rightColumn": 9.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": 7.0, + "bottomRow": 11.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": 7.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": "#93c5fd", + "widgetId": "xp5u9a9nzq", + "topRow": 7.0, + "bottomRow": 11.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": 62.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + } + ], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "onSort": "{{SelectQuery.run()}}", + "isVisibleDownload": true, + "iconSVG": "/static/media/icon.db8a9cbd.svg", + "topRow": 11.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": 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" + }, + "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": 7.0, + "bottomRow": 11.0, + "parentRowSpace": 10.0, + "type": "BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "leftColumn": 51.0, + "dynamicBindingPathList": [], + "text": "Add category", + "isDisabled": "", + "key": "2ob5jed9vo", + "rightColumn": 62.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": "#fafafa", + "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": 18.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": 18.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": 18.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": true + }, + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818340" + }, + { + "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": 69.0, + "minHeight": 1130.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [], + "leftColumn": 0.0, + "children": [ + { + "boxShadow": "none", + "widgetName": "Configured_Tests_Container", + "topRow": 0.0, + "bottomRow": 106.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [ + { + "labelTextSize": "0.875rem", + "boxShadow": "none", + "widgetName": "Canvas1", + "rightColumn": 632.0, + "detachFromLayout": true, + "widgetId": "59rw5mx0bq", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 1030.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": "#a1a1aa", + "displayName": "Icon Button", + "iconSVG": "/static/media/icon.1a0c634a.svg", + "searchTags": [ + "click", + "submit" + ], + "topRow": 7.0, + "bottomRow": 11.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": "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('Edit_Add_Test_Form');storeValue(\"test_action\",\"Add\", false);Entities_dropdown.run();\nshowModal('Edit_Add_Test_Modal')}}", + "buttonColor": "#2E3D49", + "dynamicPropertyPathList": [ + { + "key": "isDisabled" + }, + { + "key": "onClick" + } + ], + "displayName": "Button", + "iconSVG": "/static/media/icon.cca02633.svg", + "topRow": 11.0, + "bottomRow": 15.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" + }, + { + "key": "isVisible" + } + ], + "displayName": "Button", + "iconSVG": "/static/media/icon.cca02633.svg", + "topRow": 11.0, + "bottomRow": 15.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": "tooltip" + }, + { + "key": "isDisabled" + }, + { + "key": "isVisible" + } + ], + "text": "Delete tests", + "isDisabled": "{{!JSFunctions.allowUpdate()}}", + "key": "2ob5jed9vo", + "rightColumn": 51.0, + "isDefaultClickDisabled": true, + "widgetId": "m8gxn5vx3a", + "isVisible": "{{JSFunctions.allowUpdate()}}", + "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", + "entity_id", + "test_type", + "test_id", + "scenario_id", + "priority", + "impact", + "proposed_remediation", + "entity_id", + "column_name", + "column_description", + "test_parameters", + "date_added", + "date_modified", + "last_updated_by", + "test_params_all_json" + ], + "dynamicPropertyPathList": [ + { + "key": "onPageChange" + }, + { + "key": "onRowSelected" + }, + { + "key": "primaryColumns.customColumn2.onClick" + } + ], + "isVisibleDownload": true, + "topRow": 15.0, + "bottomRow": 101.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": "primaryColumns.test_params_all_json.computedValue" + }, + { + "key": "primaryColumns.entity_id.computedValue" + }, + { + "key": "primaryColumns.customColumn2.buttonColor" + }, + { + "key": "primaryColumns.customColumn2.buttonLabel" + }, + { + "key": "primaryColumns.last_updated_by.computedValue" + }, + { + "key": "primaryColumns.date_modified.computedValue" + }, + { + "key": "primaryColumns.date_added.computedValue" + }, + { + "key": "primaryColumns.test_parameters.computedValue" + }, + { + "key": "primaryColumns.column_description.computedValue" + }, + { + "key": "primaryColumns.column_name.computedValue" + }, + { + "key": "primaryColumns.test_type.computedValue" + }, + { + "key": "primaryColumns.entity_id.computedValue" + }, + { + "key": "primaryColumns.proposed_remediation.computedValue" + }, + { + "key": "primaryColumns.impact.computedValue" + }, + { + "key": "primaryColumns.description.computedValue" + }, + { + "key": "primaryColumns.priority.computedValue" + }, + { + "key": "primaryColumns.scenario_id.computedValue" + }, + { + "key": "primaryColumns.test_id.computedValue" + }, + { + "key": "primaryColumns.project_id.computedValue" + }, + { + "key": "primaryColumns.test_activated.computedValue" + }, + { + "key": "accentColor" + } + ], + "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": 16.0, + "width": 150.0, + "id": "entity_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "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); storeValue(\"test_action\",\"Edit\", false);Test_parameters_sample.run(); showModal('Edit_Add_Test_Modal')}}", + "buttonColor": "{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}", + "buttonLabel": "{{configured_tests.sanitizedTableData.map((currentRow) => ( 'Edit'))}}", + "buttonVariant": "SECONDARY" + }, + "test_params_all_json": { + "index": 17.0, + "width": 150.0, + "id": "test_params_all_json", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": false, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "test_params_all_json", + "computedValue": "{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_params_all_json))}}", + "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_Add_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_id": 213.0, + "project_id": 102.0 + } + }, + { + "boxShadow": "none", + "widgetName": "order_by_label", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "topRow": 11.0, + "bottomRow": 15.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": 6.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "l8pgl90klz", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "0.80rem", + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "none", + "widgetName": "title__main", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "topRow": 7.0, + "bottomRow": 11.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": 4.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "urzv99hdc8", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "1.5rem", + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "none", + "widgetName": "refresh_btn", + "onClick": "{{Configured_tests_data.run()}}", + "buttonColor": "#93c5fd", + "dynamicPropertyPathList": [ + { + "key": "borderRadius" + } + ], + "topRow": 11.0, + "bottomRow": 15.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": 11.0, + "bottomRow": 15.0, + "parentRowSpace": 10.0, + "type": "SELECT_WIDGET", + "serverSideFiltering": false, + "hideCard": false, + "defaultOptionValue": "test_id", + "animateLoading": true, + "parentColumnSpace": 22.171875, + "dynamicTriggerPathList": [ + { + "key": "onOptionChange" + } + ], + "leftColumn": 6.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": 19.0, + "dynamicHeight": "FIXED", + "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", + "maxDynamicHeight": 9000.0, + "onOptionChange": "{{Configured_tests_data.run()}}", + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "none", + "widgetName": "order_select", + "isFilterable": true, + "dynamicPropertyPathList": [ + { + "key": "isVisible" + } + ], + "displayName": "Select", + "iconSVG": "/static/media/icon.bd99caba.svg", + "labelText": "", + "topRow": 11.0, + "bottomRow": 15.0, + "parentRowSpace": 10.0, + "type": "SELECT_WIDGET", + "serverSideFiltering": false, + "hideCard": false, + "defaultOptionValue": "ASC", + "animateLoading": true, + "parentColumnSpace": 22.171875, + "dynamicTriggerPathList": [ + { + "key": "onOptionChange" + } + ], + "leftColumn": 19.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": 28.0, + "dynamicHeight": "FIXED", + "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", + "maxDynamicHeight": 9000.0, + "onOptionChange": "{{Configured_tests_data.run()}}", + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "none", + "widgetName": "Bulk_update_Test_Activated", + "onClick": "{{showModal('Activate_Tests_Modal')}}", + "buttonColor": "#2E3D49", + "dynamicPropertyPathList": [ + { + "key": "isDisabled" + }, + { + "key": "isVisible" + } + ], + "displayName": "Button", + "iconSVG": "/static/media/icon.cca02633.svg", + "topRow": 11.0, + "bottomRow": 15.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": "tooltip" + }, + { + "key": "isDisabled" + }, + { + "key": "isVisible" + } + ], + "text": "Activate/Deactivate tests", + "isDisabled": "{{!JSFunctions.allowUpdate()}}", + "key": "2ob5jed9vo", + "rightColumn": 40.0, + "isDefaultClickDisabled": true, + "widgetId": "7puon64f02", + "isVisible": "{{JSFunctions.allowUpdate()}}", + "recaptchaType": "V3", + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "buttonVariant": "SECONDARY", + "placement": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Container2", + "borderColor": "transparent", + "isCanvas": true, + "displayName": "Container", + "iconSVG": "/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0.0, + "bottomRow": 6.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Canvas5", + "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": [ + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + } + ], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 11.0, + "iconName": "timeline-line-chart", + "menuVariant": "TERTIARY", + "widgetId": "al32p7pd29", + "menuItems": { + "menuItem1": { + "label": "Run log", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Run log', {})}}" + }, + "menuItem2": { + "label": "Trends", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0 + } + }, + "isVisible": true, + "label": "Run monitoring", + "version": 1.0, + "parentId": "1s66echqo8", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1Copy", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + }, + { + "key": "menuItems.menuItem2.onClick" + }, + { + "key": "menuItems.menuItem5clg3sf596.onClick" + }, + { + "key": "menuItems.menuItemzhze0we924.onClick" + } + ], + "leftColumn": 11.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 19.0, + "iconName": "settings", + "menuVariant": "TERTIARY", + "widgetId": "ubzttrj6le", + "menuItems": { + "menuItem1": { + "label": "Tests", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Tests', {})}}" + }, + "menuItem2": { + "label": "Entities", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0, + "onClick": "{{navigateTo('Entities', {})}}" + }, + "menuItem5clg3sf596": { + "id": "menuItem5clg3sf596", + "index": 2.0, + "label": "Categories", + "widgetId": "xj72wvs7rg", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Categories', {})}}" + }, + "menuItemzhze0we924": { + "id": "menuItemzhze0we924", + "index": 3.0, + "label": "Projects", + "widgetId": "ail7gs5wwr", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Projects', {})}}" + } + }, + "isVisible": true, + "label": "Configuration", + "version": 1.0, + "parentId": "1s66echqo8", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "widgetName": "Text17", + "borderColor": "#fff", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "DOT", + "key": "14w22nnzm7", + "isDeprecated": false, + "rightColumn": 3.0, + "backgroundColor": "#f79113", + "textAlign": "CENTER", + "dynamicHeight": "FIXED", + "widgetId": "atr47dntub", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#fff", + "version": 1.0, + "parentId": "1s66echqo8", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "fontSize": "0.975rem", + "minDynamicHeight": 4.0 + } + ], + "key": "zdu4x20wju", + "isDeprecated": false, + "rightColumn": 471.0, + "detachFromLayout": true, + "widgetId": "1s66echqo8", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "containerStyle": "none", + "isVisible": true, + "version": 1.0, + "parentId": "ynvv850qlw", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ], + "borderWidth": "0", + "key": "nymtbn27w8", + "backgroundColor": "#3730a3", + "isDeprecated": false, + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "widgetId": "ynvv850qlw", + "containerStyle": "card", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + } + ] + } + ], + "labelTextSize": "0.875rem", + "backgroundColor": "#fafafa", + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "isVisible": "true", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + }, + { + "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", + "dynamicHeight": "FIXED", + "widgetId": "fixqpc5ejk", + "isVisible": "true", + "fontStyle": "ITALIC", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "0.875rem", + "minDynamicHeight": 4.0 + }, + { + "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", + "dynamicHeight": "FIXED", + "widgetId": "35yoxo4oec", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "1.5rem", + "minDynamicHeight": 4.0 + }, + { + "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", + "dynamicHeight": "FIXED", + "widgetId": "48uac29g6e", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "0.875rem", + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "i3whp03wf0", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "isLoading": false, + "onClose": "{{resetWidget('configured_tests')}}", + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "width": 456.0, + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "none", + "widgetName": "Edit_Add_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": [], + "children": [ + { + "boxShadow": "none", + "widgetName": "close_icon", + "onClick": "{{closeModal('Edit_Add_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": 0.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "text" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "{{appsmith.store.test_action}} Test", + "key": "oq4bpr35vs", + "rightColumn": 10.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "57kk9tsddv", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "je98hr71pu", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "fontSize": "1.5rem", + "minDynamicHeight": 4.0 + }, + { + "schema": { + "__root_schema__": { + "children": { + "test_activated": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.test_activated == '✓' || appsmith.store.test_action == 'Add' ? true : false))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Switch", + "sourceData": "✓", + "isCustomField": false, + "accessor": "test_activated", + "identifier": "test_activated", + "position": 0.0, + "originalIdentifier": "test_activated", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "boxShadow": "none", + "alignWidget": "LEFT", + "isDisabled": false, + "isRequired": false, + "isVisible": true, + "labelTextSize": "0.875rem", + "label": "On/Off" + }, + "project_id": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.project_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "Muso", + "isCustomField": false, + "accessor": "project_id", + "identifier": "project_id", + "position": 1.0, + "originalIdentifier": "project_id", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": true, + "isVisible": true, + "label": "Project Id", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{Projects_dropdown.data}}" + }, + "test_id": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.test_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "58dac7c9-03e7-3a29-a34c-c4454337b641", + "isCustomField": false, + "accessor": "test_id", + "identifier": "test_id", + "position": 13.0, + "originalIdentifier": "test_id", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": true, + "isRequired": false, + "isSpellCheck": false, + "isVisible": "{{((sourceData, formData, fieldState) => (appsmith.store.test_action == 'Edit'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Test Id" + }, + "scenario_id": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.scenario_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "INCONSISTENT-1", + "isCustomField": false, + "accessor": "scenario_id", + "identifier": "scenario_id", + "position": 7.0, + "originalIdentifier": "scenario_id", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": true, + "isVisible": true, + "label": "Scenario Id", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{Scenario_dropdown.data}}" + }, + "priority": { + "children": {}, + "dataType": "number", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.priority.toString()))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Number Input", + "sourceData": 3.0, + "isCustomField": false, + "accessor": "priority", + "identifier": "priority", + "position": 8.0, + "originalIdentifier": "priority", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": true, + "isSpellCheck": false, + "isVisible": true, + "labelTextSize": "0.875rem", + "label": "Priority", + "minNum": "1", + "maxNum": "10" + }, + "description": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.description))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Multiline Text Input", + "sourceData": "Disallowed FP methods entered in form", + "isCustomField": false, + "accessor": "description", + "identifier": "description", + "position": 2.0, + "originalIdentifier": "description", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": true, + "isSpellCheck": false, + "isVisible": true, + "labelTextSize": "0.875rem", + "label": "Description" + }, + "impact": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.impact))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "", + "isCustomField": false, + "accessor": "impact", + "identifier": "impact", + "position": 9.0, + "originalIdentifier": "impact", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": true, + "labelTextSize": "0.875rem", + "label": "Impact" + }, + "proposed_remediation": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.proposed_remediation))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "", + "isCustomField": false, + "accessor": "proposed_remediation", + "identifier": "proposed_remediation", + "position": 10.0, + "originalIdentifier": "proposed_remediation", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": true, + "labelTextSize": "0.875rem", + "label": "Proposed Remediation" + }, + "entity_id": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.entity_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "fpview_registration", + "isCustomField": false, + "accessor": "entity_id", + "identifier": "entity_id", + "position": 4.0, + "originalIdentifier": "entity_id", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": true, + "label": "Entity Name", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{Entities_dropdown.data}}" + }, + "test_type": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.test_type))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "accepted_values", + "isCustomField": false, + "accessor": "test_type", + "identifier": "test_type", + "position": 3.0, + "originalIdentifier": "test_type", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": true, + "isVisible": "true", + "label": "Test Type", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{Testtypes_dropdown.data}}", + "onOptionChange": "{{Test_parameters_sample.run(); Entities_dropdown.run()}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestTypeDescription(Edit_Add_Test_Form.formData.test_type)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "column_name": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.column_name ))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "fp_method_being_used", + "isCustomField": false, + "accessor": "column_name", + "identifier": "column_name", + "position": 5.0, + "originalIdentifier": "column_name", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (JSFunctions.testUsesColumn(formData.test_type)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Column Name", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, undefined) }}", + "placeholderText": "{{((sourceData, formData, fieldState) => (`Select a column from the entity`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "column_description": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.column_description))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "", + "isCustomField": false, + "accessor": "column_description", + "identifier": "column_description", + "position": 12.0, + "originalIdentifier": "column_description", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": false, + "labelTextSize": "0.875rem", + "label": "Column Description" + }, + "test_parameters": { + "children": { + "values": { + "children": {}, + "dataType": "array", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.test_parameters == undefined ? '' : sourceData.test_parameters.values))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Multiselect", + "sourceData": [ + "oral mini-pill (progestogen)", + "male condom", + "female sterilization", + "iud", + "oral combination pill", + "implants", + "injectible" + ], + "isCustomField": false, + "accessor": "values", + "identifier": "values", + "position": 0.0, + "originalIdentifier": "values", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": true, + "label": "Values", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ] + } + }, + "dataType": "object", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.test_parameters))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Object", + "sourceData": { + "values": [ + "oral mini-pill (progestogen)", + "male condom", + "female sterilization", + "iud", + "oral combination pill", + "implants", + "injectible" + ] + }, + "isCustomField": false, + "accessor": "test_parameters", + "identifier": "test_parameters", + "position": 18.0, + "originalIdentifier": "test_parameters", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "cellBoxShadow": "none", + "isDisabled": false, + "isRequired": false, + "isVisible": false, + "labelTextSize": "0.875rem", + "label": "Test Parameters raw json" + }, + "date_added": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.date_added))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "2022-07-02T18:43:16.020555Z", + "isCustomField": false, + "accessor": "date_added", + "identifier": "date_added", + "position": 14.0, + "originalIdentifier": "date_added", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": true, + "isRequired": false, + "isSpellCheck": false, + "isVisible": "{{((sourceData, formData, fieldState) => (appsmith.store.test_action == 'Edit'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Date Added" + }, + "date_modified": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.date_modified))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "2022-07-02T18:43:16.020555Z", + "isCustomField": false, + "accessor": "date_modified", + "identifier": "date_modified", + "position": 15.0, + "originalIdentifier": "date_modified", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": true, + "isRequired": false, + "isSpellCheck": false, + "isVisible": "{{((sourceData, formData, fieldState) => (appsmith.store.test_action == 'Edit'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Date Modified" + }, + "last_updated_by": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.last_updated_by))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "Example", + "isCustomField": false, + "accessor": "last_updated_by", + "identifier": "last_updated_by", + "position": 16.0, + "originalIdentifier": "last_updated_by", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": true, + "isRequired": false, + "isSpellCheck": false, + "isVisible": "{{((sourceData, formData, fieldState) => (appsmith.store.test_action == 'Edit'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Last Updated By" + }, + "test_params_all_json": { + "children": { + "custom_sql___query": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.query\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Multiline Text Input", + "sourceData": "SELECT field1, field2, 'table1' as \"primary_table\", 'field1' as \"primary_table_id_field\" WHERE COLOR='green'", + "isCustomField": false, + "accessor": "query", + "identifier": "custom_sql___query", + "position": 0.0, + "originalIdentifier": "custom_sql%%%query", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'custom_sql'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Custom Sql Query", + "placeholderText": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterExample('query').replace(/\\\\/g,'')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('query')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "relationships___field": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.field\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "uuid", + "isCustomField": false, + "accessor": "field", + "identifier": "relationships___field", + "position": 2.0, + "originalIdentifier": "relationships%%%field", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (Edit_Add_Test_Form.formData.test_type == \"relationships\"))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Reference Field", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{Edit_Add_Test_Form.formData.form_test_parameters != undefined && Edit_Add_Test_Form.formData.form_test_parameters.to != undefined ? JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,undefined, Edit_Add_Test_Form.formData.form_test_parameters.to) : [] }}", + "placeholderText": "", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('field')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "accepted_values___values": { + "children": { + "__array_item__": { + "children": {}, + "dataType": "string", + "fieldType": "Text Input", + "sourceData": "dog", + "isCustomField": false, + "accessor": "__array_item__", + "identifier": "__array_item__", + "position": -1.0, + "originalIdentifier": "__array_item__", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": true, + "labelTextSize": "0.875rem", + "label": "", + "defaultValue": "", + "placeholderText": "{{((sourceData, formData, fieldState) => (`Enter a value`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + } + }, + "dataType": "array", + "defaultValue": "{{((sourceData, formData, fieldState) => ( formData.test_type == 'accepted_values' ?configured_tests.selectedRow.test_parameters.values : ''\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Array", + "sourceData": [ + "dog", + "cat", + "ostrich" + ], + "isCustomField": false, + "accessor": "values", + "identifier": "accepted_values___values", + "position": 3.0, + "originalIdentifier": "accepted_values%%%values", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "cellBoxShadow": "none", + "backgroundColor": "#FAFAFA", + "isCollapsible": false, + "isDisabled": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'accepted_values'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Accepted Values ", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('values')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "relationships___reference": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.to\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "ancview_pregnancy", + "isCustomField": false, + "accessor": "to", + "identifier": "relationships___reference", + "position": 1.0, + "originalIdentifier": "relationships%%%reference", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (Edit_Add_Test_Form.formData.test_type == \"relationships\"))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Reference", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{Entities_dropdown_dbt_ref_fmt.data}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('to')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "expression_is_true___condition": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.condition\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "(patient_age_in_months<24) and (malaria_give_act is not null)", + "isCustomField": false, + "accessor": "condition", + "identifier": "expression_is_true___condition", + "position": 4.0, + "originalIdentifier": "expression_is_true%%%condition", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'expression_is_true'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Condition", + "placeholderText": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterExample('condition').replace(/\\\\/g,'')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('condition')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "expression_is_true___expression": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.expression\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "malaria_act_dosage is not null", + "isCustomField": false, + "accessor": "expression", + "identifier": "expression_is_true___expression", + "position": 5.0, + "originalIdentifier": "expression_is_true%%%expression", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'expression_is_true'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Expression", + "placeholderText": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterExample('expression').replace(/\\\\/g,'')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('expression')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "expect_similar_means_across_reporters___key": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.key\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "reported_by", + "isCustomField": false, + "accessor": "key", + "identifier": "expect_similar_means_across_reporters___key", + "position": 6.0, + "originalIdentifier": "expect_similar_means_across_reporters%%%key", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'expect_similar_means_across_reporters'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Key", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{\nJSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"text\")\n }}", + "placeholderText": "{{((sourceData, formData, fieldState) => (`Select a key field`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('key')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "possible_duplicate_forms___id_column": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.id_column\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "uuid", + "isCustomField": false, + "accessor": "id_column", + "identifier": "possible_duplicate_forms___id_column", + "position": 12.0, + "originalIdentifier": "possible_duplicate_forms%%%id_column", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'possible_duplicate_forms'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "ID column", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined) }}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('id_column')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "expect_similar_means_across_reporters___quantity": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.quantity\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "temperature", + "isCustomField": false, + "accessor": "quantity", + "identifier": "expect_similar_means_across_reporters___quantity", + "position": 7.0, + "originalIdentifier": "expect_similar_means_across_reporters%%%quantity", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'expect_similar_means_across_reporters'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Quantity field", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{\nJSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"real\").concat(\n\nJSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"double precision\")\n\n)\n }}", + "placeholderText": "{{((sourceData, formData, fieldState) => (`Select a numeric field`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('quantity')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "possible_duplicate_forms___period": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.period\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "day", + "isCustomField": false, + "accessor": "period", + "identifier": "possible_duplicate_forms___period", + "position": 10.0, + "originalIdentifier": "possible_duplicate_forms%%%period", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'possible_duplicate_forms'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Period", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "[\n {\n \"label\": \"hour\",\n \"value\": \"hour\"\n },\n {\n \"label\": \"day\",\n \"value\": \"day\"\n },\n {\n \"label\": \"week\",\n \"value\": \"week\"\n }\n]", + "placeholderText": "{{((sourceData, formData, fieldState) => (`hour, day or week`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('period')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "expect_similar_means_across_reporters___form_name": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.data_table\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "iccmview_assessment", + "isCustomField": false, + "accessor": "data_table", + "identifier": "expect_similar_means_across_reporters___form_name", + "position": 8.0, + "originalIdentifier": "expect_similar_means_across_reporters%%%form_name", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'expect_similar_means_across_reporters'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Data Table", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{Entities_dropdown_with_prefix.data}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('data_table')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "expect_similar_means_across_reporters___id_column": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.id_column\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "reported_by", + "isCustomField": false, + "accessor": "id_column", + "identifier": "expect_similar_means_across_reporters___id_column", + "position": 9.0, + "originalIdentifier": "expect_similar_means_across_reporters%%%id_column", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'expect_similar_means_across_reporters'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Id Column", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined) }}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('id_column')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "placeholderText": "" + }, + "possible_duplicate_forms___group_column": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.group_column\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "patient_id", + "isCustomField": false, + "accessor": "group_column", + "identifier": "possible_duplicate_forms___group_column", + "position": 13.0, + "originalIdentifier": "possible_duplicate_forms%%%group_column", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'possible_duplicate_forms'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Group column", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined) }}", + "placeholderText": "{{((sourceData, formData, fieldState) => (`Patient id column`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('group_column')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "possible_duplicate_forms___date_column": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.date_column\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "reported", + "isCustomField": false, + "accessor": "date_column", + "identifier": "possible_duplicate_forms___date_column", + "position": 11.0, + "originalIdentifier": "possible_duplicate_forms%%%date_column", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'possible_duplicate_forms'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Date column", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"timestamp with time zone\").concat(JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"date\").concat(JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"datetime\"))) }}", + "placeholderText": "{{((sourceData, formData, fieldState) => (sourceData.test_params_all_json[\"date_column\"]))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('date_column')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + } + }, + "dataType": "object", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.test_params_all_json))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Object", + "sourceData": { + "custom_sql%%%query": "SELECT field1, field2, 'table1' as \"primary_table\", 'field1' as \"primary_table_id_field\" WHERE COLOR='green'", + "relationships%%%field": "uuid", + "accepted_values%%%values": [ + "dog", + "cat", + "ostrich" + ], + "relationships%%%reference": "ancview_pregnancy", + "expression_is_true%%%condition": "(patient_age_in_months<24) and (malaria_give_act is not null)", + "expression_is_true%%%expression": "malaria_act_dosage is not null", + "expect_similar_means_across_reporters%%%key": "reported_by", + "possible_duplicate_forms%%%id_column": "uuid", + "expect_similar_means_across_reporters%%%quantity": "temperature", + "possible_duplicate_forms%%%period": "day", + "expect_similar_means_across_reporters%%%form_name": "iccmview_assessment", + "expect_similar_means_across_reporters%%%id_column": "reported_by", + "possible_duplicate_forms%%%group_column": "patient_id", + "possible_duplicate_forms%%%date_column": "reported" + }, + "isCustomField": false, + "accessor": "form_test_parameters", + "identifier": "test_params_all_json", + "position": 6.0, + "originalIdentifier": "test_params_all_json", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "cellBoxShadow": "none", + "isDisabled": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (JSFunctions.testUsesParameters(formData.test_type)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Test Parameters" + }, + "customColumn2": { + "children": {}, + "dataType": "string", + "defaultValue": "", + "fieldType": "Text Input", + "sourceData": "", + "isCustomField": false, + "accessor": "customColumn2", + "identifier": "customColumn2", + "position": 17.0, + "originalIdentifier": "customColumn2", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": false, + "labelTextSize": "0.875rem", + "label": "Custom Column 2" + }, + "customField1": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (JSON.stringify(formData.form_test_parameters, null, 4)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Multiline Text Input", + "sourceData": "", + "isCustomField": true, + "accessor": "form_test_parameters_string", + "identifier": "customField1", + "position": 19.0, + "originalIdentifier": "customField1", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": true, + "isRequired": false, + "isSpellCheck": false, + "isVisible": true, + "labelTextSize": "0.875rem", + "label": "Test Parameters JSON" + }, + "customField2": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.test_parameters == undefined ? '' : JSON.stringify(sourceData.test_parameters,null,1)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Multiline Text Input", + "sourceData": "", + "isCustomField": true, + "accessor": "source_data_test_parameters", + "identifier": "customField2", + "position": 20.0, + "originalIdentifier": "customField2", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": true, + "isRequired": false, + "isSpellCheck": false, + "isVisible": false, + "labelTextSize": "0.875rem", + "label": "Source data test parameters (debug)" + } + }, + "dataType": "object", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Object", + "sourceData": { + "test_activated": "✓", + "project_id": "Muso", + "test_id": "58dac7c9-03e7-3a29-a34c-c4454337b641", + "scenario_id": "INCONSISTENT-1", + "priority": 3.0, + "description": "Disallowed FP methods entered in form", + "impact": "", + "proposed_remediation": "", + "entity_id": "fpview_registration", + "test_type": "accepted_values", + "column_name": "fp_method_being_used", + "column_description": "", + "test_parameters": { + "values": [ + "oral mini-pill (progestogen)", + "male condom", + "female sterilization", + "iud", + "oral combination pill", + "implants", + "injectible" + ] + }, + "date_added": "2022-07-02T18:43:16.020555Z", + "date_modified": "2022-07-02T18:43:16.020555Z", + "last_updated_by": "Example", + "test_params_all_json": { + "custom_sql%%%query": "SELECT field1, field2, 'table1' as \"primary_table\", 'field1' as \"primary_table_id_field\" WHERE COLOR='green'", + "relationships%%%field": "uuid", + "accepted_values%%%values": [ + "dog", + "cat", + "ostrich" + ], + "relationships%%%reference": "ancview_pregnancy", + "expression_is_true%%%condition": "(patient_age_in_months<24) and (malaria_give_act is not null)", + "expression_is_true%%%expression": "malaria_act_dosage is not null", + "expect_similar_means_across_reporters%%%key": "reported_by", + "possible_duplicate_forms%%%id_column": "uuid", + "expect_similar_means_across_reporters%%%quantity": "temperature", + "possible_duplicate_forms%%%period": "day", + "expect_similar_means_across_reporters%%%form_name": "iccmview_assessment", + "expect_similar_means_across_reporters%%%id_column": "reported_by", + "possible_duplicate_forms%%%group_column": "patient_id", + "possible_duplicate_forms%%%date_column": "reported" + }, + "customColumn2": "" + }, + "isCustomField": false, + "accessor": "__root_schema__", + "identifier": "__root_schema__", + "position": -1.0, + "originalIdentifier": "__root_schema__", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "cellBoxShadow": "none", + "isDisabled": false, + "isRequired": false, + "isVisible": true, + "labelTextSize": "0.875rem", + "label": "" + } + }, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Edit_Add_Test_Form", + "submitButtonStyles": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonVariant": "PRIMARY" + }, + "dynamicPropertyPathList": [ + { + "key": "schema.__root_schema__.children.date_of_birth.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_type.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___field.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___reference.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___period.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___id_column.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___group_column.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___date_column.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_activated.defaultValue" + }, + { + "key": "onSubmit" + }, + { + "key": "schema.__root_schema__.children.column_name.isVisible" + }, + { + "key": "isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_type.onOptionChange" + }, + { + "key": "schema.__root_schema__.children.date_added.isVisible" + }, + { + "key": "schema.__root_schema__.children.date_modified.isVisible" + }, + { + "key": "schema.__root_schema__.children.last_updated_by.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_id.isVisible" + } + ], + "displayName": "JSON Form", + "iconSVG": "/static/media/icon.5b428de1.svg", + "onSubmit": "{{ appsmith.store.test_action == 'Edit' ? Edit_Test.run(() => { Configured_tests_data.run() ;closeModal('Edit_Add_Test_Modal');resetWidget('configured_tests')}, (error) => showAlert(`Error while editing test! \\n ${error}`,'error')) : Add_Test.run(() => { Configured_tests_data.run() ;closeModal('Edit_Add_Test_Modal');resetWidget('configured_tests')}, (error) => showAlert(`Error while adding test! \\n ${error}`,'error'))}}", + "topRow": 5.0, + "bottomRow": 74.0, + "fieldLimitExceeded": false, + "parentRowSpace": 10.0, + "title": "", + "type": "JSON_FORM_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 16.6875, + "dynamicTriggerPathList": [ + { + "key": "onSubmit" + }, + { + "key": "schema.__root_schema__.children.test_type.onOptionChange" + } + ], + "leftColumn": 1.0, + "dynamicBindingPathList": [ + { + "key": "sourceData" + }, + { + "key": "schema.__root_schema__.children.customField2.borderRadius" + }, + { + "key": "schema.__root_schema__.children.customField2.accentColor" + }, + { + "key": "schema.__root_schema__.children.customField2.defaultValue" + }, + { + "key": "schema.__root_schema__.children.customField1.borderRadius" + }, + { + "key": "schema.__root_schema__.children.customField1.accentColor" + }, + { + "key": "schema.__root_schema__.children.customField1.defaultValue" + }, + { + "key": "schema.__root_schema__.children.customColumn2.borderRadius" + }, + { + "key": "schema.__root_schema__.children.customColumn2.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.cellBorderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___date_column.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___date_column.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___group_column.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___group_column.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___group_column.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___group_column.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___period.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___period.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___period.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___period.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___id_column.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___id_column.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___id_column.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___id_column.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___reference.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___reference.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___reference.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___reference.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.cellBorderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.children.__array_item__.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.children.__array_item__.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.children.__array_item__.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___field.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___field.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___field.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___field.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.isVisible" + }, + { + "key": "schema.__root_schema__.children.entity_id.borderRadius" + }, + { + "key": "schema.__root_schema__.children.entity_id.accentColor" + }, + { + "key": "schema.__root_schema__.children.entity_id.defaultValue" + }, + { + "key": "schema.__root_schema__.children.entity_id.options" + }, + { + "key": "schema.__root_schema__.children.last_updated_by.borderRadius" + }, + { + "key": "schema.__root_schema__.children.last_updated_by.accentColor" + }, + { + "key": "schema.__root_schema__.children.last_updated_by.defaultValue" + }, + { + "key": "schema.__root_schema__.children.date_modified.borderRadius" + }, + { + "key": "schema.__root_schema__.children.date_modified.accentColor" + }, + { + "key": "schema.__root_schema__.children.date_modified.defaultValue" + }, + { + "key": "schema.__root_schema__.children.date_added.borderRadius" + }, + { + "key": "schema.__root_schema__.children.date_added.accentColor" + }, + { + "key": "schema.__root_schema__.children.date_added.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_parameters.cellBorderRadius" + }, + { + "key": "schema.__root_schema__.children.test_parameters.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_parameters.children.values.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_parameters.children.values.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_parameters.children.values.defaultValue" + }, + { + "key": "schema.__root_schema__.children.column_description.borderRadius" + }, + { + "key": "schema.__root_schema__.children.column_description.accentColor" + }, + { + "key": "schema.__root_schema__.children.column_description.defaultValue" + }, + { + "key": "schema.__root_schema__.children.column_name.borderRadius" + }, + { + "key": "schema.__root_schema__.children.column_name.accentColor" + }, + { + "key": "schema.__root_schema__.children.column_name.isVisible" + }, + { + "key": "schema.__root_schema__.children.column_name.defaultValue" + }, + { + "key": "schema.__root_schema__.children.column_name.options" + }, + { + "key": "schema.__root_schema__.children.test_type.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_type.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_type.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_type.options" + }, + { + "key": "schema.__root_schema__.children.entity_id.borderRadius" + }, + { + "key": "schema.__root_schema__.children.entity_id.accentColor" + }, + { + "key": "schema.__root_schema__.children.entity_id.defaultValue" + }, + { + "key": "schema.__root_schema__.children.proposed_remediation.borderRadius" + }, + { + "key": "schema.__root_schema__.children.proposed_remediation.accentColor" + }, + { + "key": "schema.__root_schema__.children.proposed_remediation.defaultValue" + }, + { + "key": "schema.__root_schema__.children.impact.borderRadius" + }, + { + "key": "schema.__root_schema__.children.impact.accentColor" + }, + { + "key": "schema.__root_schema__.children.impact.defaultValue" + }, + { + "key": "schema.__root_schema__.children.description.borderRadius" + }, + { + "key": "schema.__root_schema__.children.description.accentColor" + }, + { + "key": "schema.__root_schema__.children.description.defaultValue" + }, + { + "key": "schema.__root_schema__.children.priority.borderRadius" + }, + { + "key": "schema.__root_schema__.children.priority.accentColor" + }, + { + "key": "schema.__root_schema__.children.priority.defaultValue" + }, + { + "key": "schema.__root_schema__.children.scenario_id.borderRadius" + }, + { + "key": "schema.__root_schema__.children.scenario_id.accentColor" + }, + { + "key": "schema.__root_schema__.children.scenario_id.defaultValue" + }, + { + "key": "schema.__root_schema__.children.scenario_id.options" + }, + { + "key": "schema.__root_schema__.children.test_id.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_id.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_id.defaultValue" + }, + { + "key": "schema.__root_schema__.children.project_id.borderRadius" + }, + { + "key": "schema.__root_schema__.children.project_id.accentColor" + }, + { + "key": "schema.__root_schema__.children.project_id.defaultValue" + }, + { + "key": "schema.__root_schema__.children.project_id.options" + }, + { + "key": "schema.__root_schema__.children.test_activated.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_activated.defaultValue" + }, + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + }, + { + "key": "submitButtonStyles.buttonColor" + }, + { + "key": "submitButtonStyles.borderRadius" + }, + { + "key": "resetButtonStyles.buttonColor" + }, + { + "key": "resetButtonStyles.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_parameters.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.defaultValue" + }, + { + "key": "schema.__root_schema__.defaultValue" + }, + { + "key": "schema.__root_schema__.borderRadius" + }, + { + "key": "schema.__root_schema__.cellBorderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___period.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___date_column.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___date_column.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___date_column.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___date_column.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___id_column.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___group_column.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___group_column.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___field.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___reference.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.defaultValue" + }, + { + "key": "schema.__root_schema__.children.column_name.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_type.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___reference.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___field.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___period.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___date_column.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___id_column.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___group_column.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.tooltip" + }, + { + "key": "submitButtonLabel" + }, + { + "key": "schema.__root_schema__.children.date_added.isVisible" + }, + { + "key": "schema.__root_schema__.children.date_modified.isVisible" + }, + { + "key": "schema.__root_schema__.children.last_updated_by.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_id.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.options" + } + ], + "sourceData": "{{configured_tests.selectedRow}}", + "showReset": true, + "resetButtonLabel": "Reset", + "key": "vfrbaovke0", + "backgroundColor": "#fff", + "isDeprecated": false, + "rightColumn": 63.0, + "dynamicHeight": "FIXED", + "autoGenerateForm": false, + "widgetId": "ocsuxzrkzg", + "resetButtonStyles": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonVariant": "SECONDARY" + }, + "isVisible": "true", + "version": 1.0, + "parentId": "je98hr71pu", + "renderMode": "CANVAS", + "isLoading": false, + "scrollContents": true, + "fixedFooter": true, + "submitButtonLabel": "{{appsmith.store.test_action}}", + "childStylesheet": { + "ARRAY": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "cellBoxShadow": "none" + }, + "OBJECT": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "cellBoxShadow": "none" + }, + "CHECKBOX": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + }, + "CURRENCY_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "DATEPICKER": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "EMAIL_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "MULTISELECT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "MULTILINE_TEXT_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "NUMBER_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "PASSWORD_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "PHONE_NUMBER_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "RADIO_GROUP": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "boxShadow": "none" + }, + "SELECT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "SWITCH": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "boxShadow": "none" + }, + "TEXT_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + } + }, + "disabledWhenInvalid": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "c14yy2u4yy", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "onClose": "{{resetWidget('configured_tests')}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "width": 720.0, + "minDynamicHeight": 4.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": [], + "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": [], + "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" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "Test activation", + "key": "6b5xi9jrls", + "rightColumn": 48.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "pmvwma9e7p", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "ysscf8xzcv", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "fontSize": "1.25rem", + "minDynamicHeight": 4.0 + }, + { + "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, + "dynamicHeight": "FIXED", + "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", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "o4d52pu954", + "isVisible": true, + "parentId": "a7axo8fac8", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "3yro4n84bq", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "onClose": "{{resetWidget('configured_tests')}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "width": 464.0, + "minDynamicHeight": 4.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": [], + "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" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "Tests", + "key": "lwygtopls1", + "isDeprecated": false, + "rightColumn": 41.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "97p90gzohw", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "lg9t8q2l02", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "fontSize": "1.5rem", + "minDynamicHeight": 4.0 + }, + { + "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, + "dynamicHeight": "FIXED", + "widgetId": "1ad1wvey5j", + "isVisible": true, + "version": 1.0, + "parentId": "lg9t8q2l02", + "labelAlignment": "left", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "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", + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "7l6rph2c1u", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "width": 1084.0, + "minDynamicHeight": 4.0 + } + ] + }, + "layoutOnLoadActions": [ + [ + { + "id": "Tests_Entity_column_names_cache", + "name": "Entity_column_names_cache", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Tests_Test_Types_Cache", + "name": "Test_Types_Cache", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Tests_Test_Types_That_Use_Parameters", + "name": "Test_Types_That_Use_Parameters", + "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_Entities_dropdown", + "name": "Entities_dropdown", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\"" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Tests_Test_Parameters_Cache", + "name": "Test_Parameters_Cache", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Tests_Test_Types_That_Use_Column", + "name": "Test_Types_That_Use_Column", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Tests_Test_parameters_sample", + "name": "Test_parameters_sample", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.test_type" + ], + "timeoutInMillisecond": 10000.0 + } + ], + [ + { + "id": "Tests_Entities_dropdown_dbt_ref_fmt", + "name": "Entities_dropdown_dbt_ref_fmt", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\"" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Tests_Entities_dropdown_with_prefix", + "name": "Entities_dropdown_with_prefix", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\"" + ], + "timeoutInMillisecond": 10000.0 + } + ] + ], + "layoutOnLoadActionErrors": [], + "validOnPageLoadActions": true, + "id": "Tests", + "deleted": false, + "policies": [], + "userPermissions": [] + } + ], + "userPermissions": [], + "policies": [], + "isHidden": true + }, + "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": 69.0, + "minHeight": 1130.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [], + "leftColumn": 0.0, + "children": [ + { + "boxShadow": "none", + "widgetName": "Configured_Tests_Container", + "topRow": 0.0, + "bottomRow": 106.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [ + { + "labelTextSize": "0.875rem", + "boxShadow": "none", + "widgetName": "Canvas1", + "rightColumn": 632.0, + "detachFromLayout": true, + "widgetId": "59rw5mx0bq", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 1030.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": "#a1a1aa", + "displayName": "Icon Button", + "iconSVG": "/static/media/icon.1a0c634a.svg", + "searchTags": [ + "click", + "submit" + ], + "topRow": 7.0, + "bottomRow": 11.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": "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('Edit_Add_Test_Form');storeValue(\"test_action\",\"Add\", false);Entities_dropdown.run();\nshowModal('Edit_Add_Test_Modal')}}", + "buttonColor": "#2E3D49", + "dynamicPropertyPathList": [ + { + "key": "isDisabled" + }, + { + "key": "onClick" + } + ], + "displayName": "Button", + "iconSVG": "/static/media/icon.cca02633.svg", + "topRow": 11.0, + "bottomRow": 15.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" + }, + { + "key": "isVisible" + } + ], + "displayName": "Button", + "iconSVG": "/static/media/icon.cca02633.svg", + "topRow": 11.0, + "bottomRow": 15.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": "tooltip" + }, + { + "key": "isDisabled" + }, + { + "key": "isVisible" + } + ], + "text": "Delete tests", + "isDisabled": "{{!JSFunctions.allowUpdate()}}", + "key": "2ob5jed9vo", + "rightColumn": 51.0, + "isDefaultClickDisabled": true, + "widgetId": "m8gxn5vx3a", + "isVisible": "{{JSFunctions.allowUpdate()}}", + "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", + "entity_id", + "test_type", + "test_id", + "scenario_id", + "priority", + "impact", + "proposed_remediation", + "entity_id", + "column_name", + "column_description", + "test_parameters", + "date_added", + "date_modified", + "last_updated_by", + "test_params_all_json" + ], + "dynamicPropertyPathList": [ + { + "key": "onPageChange" + }, + { + "key": "onRowSelected" + }, + { + "key": "primaryColumns.customColumn2.onClick" + } + ], + "isVisibleDownload": true, + "topRow": 15.0, + "bottomRow": 101.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": "primaryColumns.test_params_all_json.computedValue" + }, + { + "key": "primaryColumns.entity_id.computedValue" + }, + { + "key": "primaryColumns.customColumn2.buttonColor" + }, + { + "key": "primaryColumns.customColumn2.buttonLabel" + }, + { + "key": "primaryColumns.last_updated_by.computedValue" + }, + { + "key": "primaryColumns.date_modified.computedValue" + }, + { + "key": "primaryColumns.date_added.computedValue" + }, + { + "key": "primaryColumns.test_parameters.computedValue" + }, + { + "key": "primaryColumns.column_description.computedValue" + }, + { + "key": "primaryColumns.column_name.computedValue" + }, + { + "key": "primaryColumns.test_type.computedValue" + }, + { + "key": "primaryColumns.entity_id.computedValue" + }, + { + "key": "primaryColumns.proposed_remediation.computedValue" + }, + { + "key": "primaryColumns.impact.computedValue" + }, + { + "key": "primaryColumns.description.computedValue" + }, + { + "key": "primaryColumns.priority.computedValue" + }, + { + "key": "primaryColumns.scenario_id.computedValue" + }, + { + "key": "primaryColumns.test_id.computedValue" + }, + { + "key": "primaryColumns.project_id.computedValue" + }, + { + "key": "primaryColumns.test_activated.computedValue" + }, + { + "key": "accentColor" + } + ], + "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": 16.0, + "width": 150.0, + "id": "entity_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "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); storeValue(\"test_action\",\"Edit\", false);Test_parameters_sample.run(); showModal('Edit_Add_Test_Modal')}}", + "buttonColor": "{{configured_tests.sanitizedTableData.map((currentRow) => ( appsmith.theme.colors.primaryColor))}}", + "buttonLabel": "{{configured_tests.sanitizedTableData.map((currentRow) => ( 'Edit'))}}", + "buttonVariant": "SECONDARY" + }, + "test_params_all_json": { + "index": 17.0, + "width": 150.0, + "id": "test_params_all_json", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textColor": "", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": false, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "test_params_all_json", + "computedValue": "{{configured_tests.sanitizedTableData.map((currentRow) => ( currentRow.test_params_all_json))}}", + "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_Add_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_id": 213.0, + "project_id": 102.0 + } + }, + { + "boxShadow": "none", + "widgetName": "order_by_label", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "topRow": 11.0, + "bottomRow": 15.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": 6.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "l8pgl90klz", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "0.80rem", + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "none", + "widgetName": "title__main", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "topRow": 7.0, + "bottomRow": 11.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": 4.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "urzv99hdc8", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "1.5rem", + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "none", + "widgetName": "refresh_btn", + "onClick": "{{Configured_tests_data.run()}}", + "buttonColor": "#93c5fd", + "dynamicPropertyPathList": [ + { + "key": "borderRadius" + } + ], + "topRow": 11.0, + "bottomRow": 15.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": 11.0, + "bottomRow": 15.0, + "parentRowSpace": 10.0, + "type": "SELECT_WIDGET", + "serverSideFiltering": false, + "hideCard": false, + "defaultOptionValue": "test_id", + "animateLoading": true, + "parentColumnSpace": 22.171875, + "dynamicTriggerPathList": [ + { + "key": "onOptionChange" + } + ], + "leftColumn": 6.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": 19.0, + "dynamicHeight": "FIXED", + "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", + "maxDynamicHeight": 9000.0, + "onOptionChange": "{{Configured_tests_data.run()}}", + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "none", + "widgetName": "order_select", + "isFilterable": true, + "dynamicPropertyPathList": [ + { + "key": "isVisible" + } + ], + "displayName": "Select", + "iconSVG": "/static/media/icon.bd99caba.svg", + "labelText": "", + "topRow": 11.0, + "bottomRow": 15.0, + "parentRowSpace": 10.0, + "type": "SELECT_WIDGET", + "serverSideFiltering": false, + "hideCard": false, + "defaultOptionValue": "ASC", + "animateLoading": true, + "parentColumnSpace": 22.171875, + "dynamicTriggerPathList": [ + { + "key": "onOptionChange" + } + ], + "leftColumn": 19.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": 28.0, + "dynamicHeight": "FIXED", + "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", + "maxDynamicHeight": 9000.0, + "onOptionChange": "{{Configured_tests_data.run()}}", + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "none", + "widgetName": "Bulk_update_Test_Activated", + "onClick": "{{showModal('Activate_Tests_Modal')}}", + "buttonColor": "#2E3D49", + "dynamicPropertyPathList": [ + { + "key": "isDisabled" + }, + { + "key": "isVisible" + } + ], + "displayName": "Button", + "iconSVG": "/static/media/icon.cca02633.svg", + "topRow": 11.0, + "bottomRow": 15.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": "tooltip" + }, + { + "key": "isDisabled" + }, + { + "key": "isVisible" + } + ], + "text": "Activate/Deactivate tests", + "isDisabled": "{{!JSFunctions.allowUpdate()}}", + "key": "2ob5jed9vo", + "rightColumn": 40.0, + "isDefaultClickDisabled": true, + "widgetId": "7puon64f02", + "isVisible": "{{JSFunctions.allowUpdate()}}", + "recaptchaType": "V3", + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "buttonVariant": "SECONDARY", + "placement": "CENTER" + }, + { + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Container2", + "borderColor": "transparent", + "isCanvas": true, + "displayName": "Container", + "iconSVG": "/static/media/icon.1977dca3370505e2db3a8e44cfd54907.svg", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0.0, + "bottomRow": 6.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "boxShadow": "none", + "widgetName": "Canvas5", + "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": [ + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + } + ], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 11.0, + "iconName": "timeline-line-chart", + "menuVariant": "TERTIARY", + "widgetId": "al32p7pd29", + "menuItems": { + "menuItem1": { + "label": "Run log", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Run log', {})}}" + }, + "menuItem2": { + "label": "Trends", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0 + } + }, + "isVisible": true, + "label": "Run monitoring", + "version": 1.0, + "parentId": "1s66echqo8", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "isCompact": true, + "boxShadow": "none", + "widgetName": "MenuButton1Copy", + "displayName": "Menu Button", + "iconSVG": "/static/media/icon.0341d17d67020c8bfc560cc5928af2a7.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "MENU_BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 19.625, + "dynamicTriggerPathList": [ + { + "key": "menuItems.menuItem1.onClick" + }, + { + "key": "menuItems.menuItem2.onClick" + }, + { + "key": "menuItems.menuItem5clg3sf596.onClick" + }, + { + "key": "menuItems.menuItemzhze0we924.onClick" + } + ], + "leftColumn": 11.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "lp56mrifo9", + "isDeprecated": false, + "rightColumn": 19.0, + "iconName": "settings", + "menuVariant": "TERTIARY", + "widgetId": "ubzttrj6le", + "menuItems": { + "menuItem1": { + "label": "Tests", + "id": "menuItem1", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 0.0, + "onClick": "{{navigateTo('Tests', {})}}" + }, + "menuItem2": { + "label": "Entities", + "id": "menuItem2", + "widgetId": "", + "isVisible": true, + "isDisabled": false, + "index": 1.0, + "onClick": "{{navigateTo('Entities', {})}}" + }, + "menuItem5clg3sf596": { + "id": "menuItem5clg3sf596", + "index": 2.0, + "label": "Categories", + "widgetId": "xj72wvs7rg", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Categories', {})}}" + }, + "menuItemzhze0we924": { + "id": "menuItemzhze0we924", + "index": 3.0, + "label": "Projects", + "widgetId": "ail7gs5wwr", + "isDisabled": false, + "isVisible": true, + "onClick": "{{navigateTo('Projects', {})}}" + } + }, + "isVisible": true, + "label": "Configuration", + "version": 1.0, + "parentId": "1s66echqo8", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0.375rem", + "menuColor": "#fff", + "iconAlign": "left", + "placement": "CENTER" + }, + { + "widgetName": "Text17", + "borderColor": "#fff", + "dynamicPropertyPathList": [ + { + "key": "fontSize" + } + ], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b523e6f70ba6f40a10fc2c7c5b5.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": 19.625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "DOT", + "key": "14w22nnzm7", + "isDeprecated": false, + "rightColumn": 3.0, + "backgroundColor": "#f79113", + "textAlign": "CENTER", + "dynamicHeight": "FIXED", + "widgetId": "atr47dntub", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#fff", + "version": 1.0, + "parentId": "1s66echqo8", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "fontSize": "0.975rem", + "minDynamicHeight": 4.0 + } + ], + "key": "zdu4x20wju", + "isDeprecated": false, + "rightColumn": 471.0, + "detachFromLayout": true, + "widgetId": "1s66echqo8", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "containerStyle": "none", + "isVisible": true, + "version": 1.0, + "parentId": "ynvv850qlw", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + } + ], + "borderWidth": "0", + "key": "nymtbn27w8", + "backgroundColor": "#3730a3", + "isDeprecated": false, + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "widgetId": "ynvv850qlw", + "containerStyle": "card", + "isVisible": true, + "version": 1.0, + "parentId": "59rw5mx0bq", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + } + ] + } + ], + "labelTextSize": "0.875rem", + "backgroundColor": "#fafafa", + "rightColumn": 64.0, + "dynamicHeight": "FIXED", + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "isVisible": "true", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + }, + { + "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", + "dynamicHeight": "FIXED", + "widgetId": "fixqpc5ejk", + "isVisible": "true", + "fontStyle": "ITALIC", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "0.875rem", + "minDynamicHeight": 4.0 + }, + { + "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", + "dynamicHeight": "FIXED", + "widgetId": "35yoxo4oec", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "1.5rem", + "minDynamicHeight": 4.0 + }, + { + "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", + "dynamicHeight": "FIXED", + "widgetId": "48uac29g6e", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "fontSize": "0.875rem", + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "i3whp03wf0", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "isLoading": false, + "onClose": "{{resetWidget('configured_tests')}}", + "borderRadius": "0px", + "maxDynamicHeight": 9000.0, + "width": 456.0, + "minDynamicHeight": 4.0 + }, + { + "boxShadow": "none", + "widgetName": "Edit_Add_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": [], + "children": [ + { + "boxShadow": "none", + "widgetName": "close_icon", + "onClick": "{{closeModal('Edit_Add_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": 0.0, + "dynamicBindingPathList": [ + { + "key": "fontFamily" + }, + { + "key": "text" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "{{appsmith.store.test_action}} Test", + "key": "oq4bpr35vs", + "rightColumn": 10.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "57kk9tsddv", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "je98hr71pu", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "fontSize": "1.5rem", + "minDynamicHeight": 4.0 + }, + { + "schema": { + "__root_schema__": { + "children": { + "test_activated": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.test_activated == '✓' || appsmith.store.test_action == 'Add' ? true : false))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Switch", + "sourceData": "✓", + "isCustomField": false, + "accessor": "test_activated", + "identifier": "test_activated", + "position": 0.0, + "originalIdentifier": "test_activated", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "boxShadow": "none", + "alignWidget": "LEFT", + "isDisabled": false, + "isRequired": false, + "isVisible": true, + "labelTextSize": "0.875rem", + "label": "On/Off" + }, + "project_id": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.project_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "Muso", + "isCustomField": false, + "accessor": "project_id", + "identifier": "project_id", + "position": 1.0, + "originalIdentifier": "project_id", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": true, + "isVisible": true, + "label": "Project Id", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{Projects_dropdown.data}}" + }, + "test_id": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.test_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "58dac7c9-03e7-3a29-a34c-c4454337b641", + "isCustomField": false, + "accessor": "test_id", + "identifier": "test_id", + "position": 13.0, + "originalIdentifier": "test_id", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": true, + "isRequired": false, + "isSpellCheck": false, + "isVisible": "{{((sourceData, formData, fieldState) => (appsmith.store.test_action == 'Edit'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Test Id" + }, + "scenario_id": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.scenario_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "INCONSISTENT-1", + "isCustomField": false, + "accessor": "scenario_id", + "identifier": "scenario_id", + "position": 7.0, + "originalIdentifier": "scenario_id", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": true, + "isVisible": true, + "label": "Scenario Id", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{Scenario_dropdown.data}}" + }, + "priority": { + "children": {}, + "dataType": "number", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.priority.toString()))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Number Input", + "sourceData": 3.0, + "isCustomField": false, + "accessor": "priority", + "identifier": "priority", + "position": 8.0, + "originalIdentifier": "priority", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": true, + "isSpellCheck": false, + "isVisible": true, + "labelTextSize": "0.875rem", + "label": "Priority", + "minNum": "1", + "maxNum": "10" + }, + "description": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.description))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Multiline Text Input", + "sourceData": "Disallowed FP methods entered in form", + "isCustomField": false, + "accessor": "description", + "identifier": "description", + "position": 2.0, + "originalIdentifier": "description", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": true, + "isSpellCheck": false, + "isVisible": true, + "labelTextSize": "0.875rem", + "label": "Description" + }, + "impact": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.impact))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "", + "isCustomField": false, + "accessor": "impact", + "identifier": "impact", + "position": 9.0, + "originalIdentifier": "impact", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": true, + "labelTextSize": "0.875rem", + "label": "Impact" + }, + "proposed_remediation": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.proposed_remediation))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "", + "isCustomField": false, + "accessor": "proposed_remediation", + "identifier": "proposed_remediation", + "position": 10.0, + "originalIdentifier": "proposed_remediation", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": true, + "labelTextSize": "0.875rem", + "label": "Proposed Remediation" + }, + "entity_id": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.entity_id))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "fpview_registration", + "isCustomField": false, + "accessor": "entity_id", + "identifier": "entity_id", + "position": 4.0, + "originalIdentifier": "entity_id", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": true, + "label": "Entity Name", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{Entities_dropdown.data}}" + }, + "test_type": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.test_type))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "accepted_values", + "isCustomField": false, + "accessor": "test_type", + "identifier": "test_type", + "position": 3.0, + "originalIdentifier": "test_type", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": true, + "isVisible": "true", + "label": "Test Type", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{Testtypes_dropdown.data}}", + "onOptionChange": "{{Test_parameters_sample.run(); Entities_dropdown.run()}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestTypeDescription(Edit_Add_Test_Form.formData.test_type)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "column_name": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.column_name ))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "fp_method_being_used", + "isCustomField": false, + "accessor": "column_name", + "identifier": "column_name", + "position": 5.0, + "originalIdentifier": "column_name", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (JSFunctions.testUsesColumn(formData.test_type)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Column Name", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, undefined) }}", + "placeholderText": "{{((sourceData, formData, fieldState) => (`Select a column from the entity`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "column_description": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.column_description))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "", + "isCustomField": false, + "accessor": "column_description", + "identifier": "column_description", + "position": 12.0, + "originalIdentifier": "column_description", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": false, + "labelTextSize": "0.875rem", + "label": "Column Description" + }, + "test_parameters": { + "children": { + "values": { + "children": {}, + "dataType": "array", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.test_parameters == undefined ? '' : sourceData.test_parameters.values))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Multiselect", + "sourceData": [ + "oral mini-pill (progestogen)", + "male condom", + "female sterilization", + "iud", + "oral combination pill", + "implants", + "injectible" + ], + "isCustomField": false, + "accessor": "values", + "identifier": "values", + "position": 0.0, + "originalIdentifier": "values", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": true, + "label": "Values", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ] + } + }, + "dataType": "object", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.test_parameters))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Object", + "sourceData": { + "values": [ + "oral mini-pill (progestogen)", + "male condom", + "female sterilization", + "iud", + "oral combination pill", + "implants", + "injectible" + ] + }, + "isCustomField": false, + "accessor": "test_parameters", + "identifier": "test_parameters", + "position": 18.0, + "originalIdentifier": "test_parameters", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "cellBoxShadow": "none", + "isDisabled": false, + "isRequired": false, + "isVisible": false, + "labelTextSize": "0.875rem", + "label": "Test Parameters raw json" + }, + "date_added": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.date_added))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "2022-07-02T18:43:16.020555Z", + "isCustomField": false, + "accessor": "date_added", + "identifier": "date_added", + "position": 14.0, + "originalIdentifier": "date_added", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": true, + "isRequired": false, + "isSpellCheck": false, + "isVisible": "{{((sourceData, formData, fieldState) => (appsmith.store.test_action == 'Edit'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Date Added" + }, + "date_modified": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.date_modified))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "2022-07-02T18:43:16.020555Z", + "isCustomField": false, + "accessor": "date_modified", + "identifier": "date_modified", + "position": 15.0, + "originalIdentifier": "date_modified", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": true, + "isRequired": false, + "isSpellCheck": false, + "isVisible": "{{((sourceData, formData, fieldState) => (appsmith.store.test_action == 'Edit'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Date Modified" + }, + "last_updated_by": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.last_updated_by))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "Example", + "isCustomField": false, + "accessor": "last_updated_by", + "identifier": "last_updated_by", + "position": 16.0, + "originalIdentifier": "last_updated_by", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": true, + "isRequired": false, + "isSpellCheck": false, + "isVisible": "{{((sourceData, formData, fieldState) => (appsmith.store.test_action == 'Edit'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Last Updated By" + }, + "test_params_all_json": { + "children": { + "custom_sql___query": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.query\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Multiline Text Input", + "sourceData": "SELECT field1, field2, 'table1' as \"primary_table\", 'field1' as \"primary_table_id_field\" WHERE COLOR='green'", + "isCustomField": false, + "accessor": "query", + "identifier": "custom_sql___query", + "position": 0.0, + "originalIdentifier": "custom_sql%%%query", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'custom_sql'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Custom Sql Query", + "placeholderText": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterExample('query').replace(/\\\\/g,'')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('query')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "relationships___field": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.field\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "uuid", + "isCustomField": false, + "accessor": "field", + "identifier": "relationships___field", + "position": 2.0, + "originalIdentifier": "relationships%%%field", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (Edit_Add_Test_Form.formData.test_type == \"relationships\"))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Reference Field", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{Edit_Add_Test_Form.formData.form_test_parameters != undefined && Edit_Add_Test_Form.formData.form_test_parameters.to != undefined ? JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,undefined, Edit_Add_Test_Form.formData.form_test_parameters.to) : [] }}", + "placeholderText": "", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('field')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "accepted_values___values": { + "children": { + "__array_item__": { + "children": {}, + "dataType": "string", + "fieldType": "Text Input", + "sourceData": "dog", + "isCustomField": false, + "accessor": "__array_item__", + "identifier": "__array_item__", + "position": -1.0, + "originalIdentifier": "__array_item__", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": true, + "labelTextSize": "0.875rem", + "label": "", + "defaultValue": "", + "placeholderText": "{{((sourceData, formData, fieldState) => (`Enter a value`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + } + }, + "dataType": "array", + "defaultValue": "{{((sourceData, formData, fieldState) => ( formData.test_type == 'accepted_values' ?configured_tests.selectedRow.test_parameters.values : ''\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Array", + "sourceData": [ + "dog", + "cat", + "ostrich" + ], + "isCustomField": false, + "accessor": "values", + "identifier": "accepted_values___values", + "position": 3.0, + "originalIdentifier": "accepted_values%%%values", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "cellBoxShadow": "none", + "backgroundColor": "#FAFAFA", + "isCollapsible": false, + "isDisabled": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'accepted_values'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Accepted Values ", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('values')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "relationships___reference": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.to\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "ancview_pregnancy", + "isCustomField": false, + "accessor": "to", + "identifier": "relationships___reference", + "position": 1.0, + "originalIdentifier": "relationships%%%reference", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (Edit_Add_Test_Form.formData.test_type == \"relationships\"))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Reference", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{Entities_dropdown_dbt_ref_fmt.data}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('to')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "expression_is_true___condition": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.condition\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "(patient_age_in_months<24) and (malaria_give_act is not null)", + "isCustomField": false, + "accessor": "condition", + "identifier": "expression_is_true___condition", + "position": 4.0, + "originalIdentifier": "expression_is_true%%%condition", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'expression_is_true'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Condition", + "placeholderText": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterExample('condition').replace(/\\\\/g,'')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('condition')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "expression_is_true___expression": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.expression\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Text Input", + "sourceData": "malaria_act_dosage is not null", + "isCustomField": false, + "accessor": "expression", + "identifier": "expression_is_true___expression", + "position": 5.0, + "originalIdentifier": "expression_is_true%%%expression", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'expression_is_true'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Expression", + "placeholderText": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterExample('expression').replace(/\\\\/g,'')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('expression')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "expect_similar_means_across_reporters___key": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.key\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "reported_by", + "isCustomField": false, + "accessor": "key", + "identifier": "expect_similar_means_across_reporters___key", + "position": 6.0, + "originalIdentifier": "expect_similar_means_across_reporters%%%key", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'expect_similar_means_across_reporters'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Key", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined) }}", + "placeholderText": "{{((sourceData, formData, fieldState) => (`Select a key field`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('key')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "possible_duplicate_forms___id_column": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.id_column\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "uuid", + "isCustomField": false, + "accessor": "id_column", + "identifier": "possible_duplicate_forms___id_column", + "position": 12.0, + "originalIdentifier": "possible_duplicate_forms%%%id_column", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'possible_duplicate_forms'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "ID column", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined) }}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('id_column')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "expect_similar_means_across_reporters___quantity": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.quantity\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "temperature", + "isCustomField": false, + "accessor": "quantity", + "identifier": "expect_similar_means_across_reporters___quantity", + "position": 7.0, + "originalIdentifier": "expect_similar_means_across_reporters%%%quantity", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'expect_similar_means_across_reporters'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Quantity field", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"real\") }}", + "placeholderText": "{{((sourceData, formData, fieldState) => (`Select a numeric field`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('quantity')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "possible_duplicate_forms___period": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.period\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "day", + "isCustomField": false, + "accessor": "period", + "identifier": "possible_duplicate_forms___period", + "position": 10.0, + "originalIdentifier": "possible_duplicate_forms%%%period", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'possible_duplicate_forms'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Period", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "[\n {\n \"label\": \"hour\",\n \"value\": \"hour\"\n },\n {\n \"label\": \"day\",\n \"value\": \"day\"\n },\n {\n \"label\": \"week\",\n \"value\": \"week\"\n }\n]", + "placeholderText": "{{((sourceData, formData, fieldState) => (`hour, day or week`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('period')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "expect_similar_means_across_reporters___form_name": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.data_table\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "iccmview_assessment", + "isCustomField": false, + "accessor": "data_table", + "identifier": "expect_similar_means_across_reporters___form_name", + "position": 8.0, + "originalIdentifier": "expect_similar_means_across_reporters%%%form_name", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'expect_similar_means_across_reporters'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Data Table", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{Entities_dropdown_with_prefix.data}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('data_table')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "expect_similar_means_across_reporters___id_column": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.id_column\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "reported_by", + "isCustomField": false, + "accessor": "id_column", + "identifier": "expect_similar_means_across_reporters___id_column", + "position": 9.0, + "originalIdentifier": "expect_similar_means_across_reporters%%%id_column", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'expect_similar_means_across_reporters'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Id Column", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined) }}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('id_column')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "placeholderText": "" + }, + "possible_duplicate_forms___group_column": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.group_column\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "patient_id", + "isCustomField": false, + "accessor": "group_column", + "identifier": "possible_duplicate_forms___group_column", + "position": 13.0, + "originalIdentifier": "possible_duplicate_forms%%%group_column", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'possible_duplicate_forms'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Group column", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined) }}", + "placeholderText": "{{((sourceData, formData, fieldState) => (`Patient id column`))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('group_column')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + }, + "possible_duplicate_forms___date_column": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => ( configured_tests.selectedRow.test_parameters == undefined ? '' : configured_tests.selectedRow.test_parameters.date_column\n))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Select", + "sourceData": "reported", + "isCustomField": false, + "accessor": "date_column", + "identifier": "possible_duplicate_forms___date_column", + "position": 11.0, + "originalIdentifier": "possible_duplicate_forms%%%date_column", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "isDisabled": false, + "isFilterable": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (formData.test_type == 'possible_duplicate_forms'))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "label": "Date column", + "labelTextSize": "0.875rem", + "serverSideFiltering": false, + "options": "{{JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"timestamp with time zone\").concat(JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"date\").concat(JSFunctions.getEntityColumns(Edit_Add_Test_Form.formData.project_id,Edit_Add_Test_Form.formData.entity_id, undefined, \"datetime\"))) }}", + "placeholderText": "{{((sourceData, formData, fieldState) => (sourceData.test_params_all_json[\"date_column\"]))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "tooltip": "{{((sourceData, formData, fieldState) => (JSFunctions.getTestParameterDescription('date_column')))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}" + } + }, + "dataType": "object", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.test_params_all_json))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Object", + "sourceData": { + "custom_sql%%%query": "SELECT field1, field2, 'table1' as \"primary_table\", 'field1' as \"primary_table_id_field\" WHERE COLOR='green'", + "relationships%%%field": "uuid", + "accepted_values%%%values": [ + "dog", + "cat", + "ostrich" + ], + "relationships%%%reference": "ancview_pregnancy", + "expression_is_true%%%condition": "(patient_age_in_months<24) and (malaria_give_act is not null)", + "expression_is_true%%%expression": "malaria_act_dosage is not null", + "expect_similar_means_across_reporters%%%key": "reported_by", + "possible_duplicate_forms%%%id_column": "uuid", + "expect_similar_means_across_reporters%%%quantity": "temperature", + "possible_duplicate_forms%%%period": "day", + "expect_similar_means_across_reporters%%%form_name": "iccmview_assessment", + "expect_similar_means_across_reporters%%%id_column": "reported_by", + "possible_duplicate_forms%%%group_column": "patient_id", + "possible_duplicate_forms%%%date_column": "reported" + }, + "isCustomField": false, + "accessor": "form_test_parameters", + "identifier": "test_params_all_json", + "position": 6.0, + "originalIdentifier": "test_params_all_json", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "cellBoxShadow": "none", + "isDisabled": false, + "isRequired": false, + "isVisible": "{{((sourceData, formData, fieldState) => (JSFunctions.testUsesParameters(formData.test_type)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "labelTextSize": "0.875rem", + "label": "Test Parameters" + }, + "customColumn2": { + "children": {}, + "dataType": "string", + "defaultValue": "", + "fieldType": "Text Input", + "sourceData": "", + "isCustomField": false, + "accessor": "customColumn2", + "identifier": "customColumn2", + "position": 17.0, + "originalIdentifier": "customColumn2", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": false, + "labelTextSize": "0.875rem", + "label": "Custom Column 2" + }, + "customField1": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (JSON.stringify(formData.form_test_parameters, null, 4)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Multiline Text Input", + "sourceData": "", + "isCustomField": true, + "accessor": "form_test_parameters_string", + "identifier": "customField1", + "position": 19.0, + "originalIdentifier": "customField1", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": true, + "isRequired": false, + "isSpellCheck": false, + "isVisible": true, + "labelTextSize": "0.875rem", + "label": "Test Parameters JSON" + }, + "customField2": { + "children": {}, + "dataType": "string", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.test_parameters == undefined ? '' : JSON.stringify(sourceData.test_parameters,null,1)))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Multiline Text Input", + "sourceData": "", + "isCustomField": true, + "accessor": "source_data_test_parameters", + "identifier": "customField2", + "position": 20.0, + "originalIdentifier": "customField2", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "iconAlign": "left", + "isDisabled": true, + "isRequired": false, + "isSpellCheck": false, + "isVisible": false, + "labelTextSize": "0.875rem", + "label": "Source data test parameters (debug)" + } + }, + "dataType": "object", + "defaultValue": "{{((sourceData, formData, fieldState) => (sourceData))(Edit_Add_Test_Form.sourceData, Edit_Add_Test_Form.formData, Edit_Add_Test_Form.fieldState)}}", + "fieldType": "Object", + "sourceData": { + "test_activated": "✓", + "project_id": "Muso", + "test_id": "58dac7c9-03e7-3a29-a34c-c4454337b641", + "scenario_id": "INCONSISTENT-1", + "priority": 3.0, + "description": "Disallowed FP methods entered in form", + "impact": "", + "proposed_remediation": "", + "entity_id": "fpview_registration", + "test_type": "accepted_values", + "column_name": "fp_method_being_used", + "column_description": "", + "test_parameters": { + "values": [ + "oral mini-pill (progestogen)", + "male condom", + "female sterilization", + "iud", + "oral combination pill", + "implants", + "injectible" + ] + }, + "date_added": "2022-07-02T18:43:16.020555Z", + "date_modified": "2022-07-02T18:43:16.020555Z", + "last_updated_by": "Example", + "test_params_all_json": { + "custom_sql%%%query": "SELECT field1, field2, 'table1' as \"primary_table\", 'field1' as \"primary_table_id_field\" WHERE COLOR='green'", + "relationships%%%field": "uuid", + "accepted_values%%%values": [ + "dog", + "cat", + "ostrich" + ], + "relationships%%%reference": "ancview_pregnancy", + "expression_is_true%%%condition": "(patient_age_in_months<24) and (malaria_give_act is not null)", + "expression_is_true%%%expression": "malaria_act_dosage is not null", + "expect_similar_means_across_reporters%%%key": "reported_by", + "possible_duplicate_forms%%%id_column": "uuid", + "expect_similar_means_across_reporters%%%quantity": "temperature", + "possible_duplicate_forms%%%period": "day", + "expect_similar_means_across_reporters%%%form_name": "iccmview_assessment", + "expect_similar_means_across_reporters%%%id_column": "reported_by", + "possible_duplicate_forms%%%group_column": "patient_id", + "possible_duplicate_forms%%%date_column": "reported" + }, + "customColumn2": "" + }, + "isCustomField": false, + "accessor": "__root_schema__", + "identifier": "__root_schema__", + "position": -1.0, + "originalIdentifier": "__root_schema__", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "cellBoxShadow": "none", + "isDisabled": false, + "isRequired": false, + "isVisible": true, + "labelTextSize": "0.875rem", + "label": "" + } + }, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "widgetName": "Edit_Add_Test_Form", + "submitButtonStyles": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonVariant": "PRIMARY" + }, + "dynamicPropertyPathList": [ + { + "key": "schema.__root_schema__.children.date_of_birth.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_type.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___field.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___reference.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___period.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___id_column.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___group_column.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___date_column.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_activated.defaultValue" + }, + { + "key": "onSubmit" + }, + { + "key": "schema.__root_schema__.children.column_name.isVisible" + }, + { + "key": "isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_type.onOptionChange" + }, + { + "key": "schema.__root_schema__.children.date_added.isVisible" + }, + { + "key": "schema.__root_schema__.children.date_modified.isVisible" + }, + { + "key": "schema.__root_schema__.children.last_updated_by.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_id.isVisible" + } + ], + "displayName": "JSON Form", + "iconSVG": "/static/media/icon.5b428de1.svg", + "onSubmit": "{{ appsmith.store.test_action == 'Edit' ? Edit_Test.run(() => { Configured_tests_data.run() ;closeModal('Edit_Add_Test_Modal');resetWidget('configured_tests')}, (error) => showAlert(`Error while editing test! \\n ${error}`,'error')) : Add_Test.run(() => { Configured_tests_data.run() ;closeModal('Edit_Add_Test_Modal');resetWidget('configured_tests')}, (error) => showAlert(`Error while adding test! \\n ${error}`,'error'))}}", + "topRow": 5.0, + "bottomRow": 74.0, + "fieldLimitExceeded": false, + "parentRowSpace": 10.0, + "title": "", + "type": "JSON_FORM_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 16.6875, + "dynamicTriggerPathList": [ + { + "key": "onSubmit" + }, + { + "key": "schema.__root_schema__.children.test_type.onOptionChange" + } + ], + "leftColumn": 1.0, + "dynamicBindingPathList": [ + { + "key": "sourceData" + }, + { + "key": "schema.__root_schema__.children.customField2.borderRadius" + }, + { + "key": "schema.__root_schema__.children.customField2.accentColor" + }, + { + "key": "schema.__root_schema__.children.customField2.defaultValue" + }, + { + "key": "schema.__root_schema__.children.customField1.borderRadius" + }, + { + "key": "schema.__root_schema__.children.customField1.accentColor" + }, + { + "key": "schema.__root_schema__.children.customField1.defaultValue" + }, + { + "key": "schema.__root_schema__.children.customColumn2.borderRadius" + }, + { + "key": "schema.__root_schema__.children.customColumn2.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.cellBorderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___date_column.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___date_column.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___group_column.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___group_column.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___group_column.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___group_column.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___period.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___period.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___period.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___period.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___id_column.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___id_column.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___id_column.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___id_column.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___reference.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___reference.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___reference.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___reference.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.cellBorderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.children.__array_item__.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.children.__array_item__.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.children.__array_item__.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___field.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___field.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___field.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___field.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.isVisible" + }, + { + "key": "schema.__root_schema__.children.entity_id.borderRadius" + }, + { + "key": "schema.__root_schema__.children.entity_id.accentColor" + }, + { + "key": "schema.__root_schema__.children.entity_id.defaultValue" + }, + { + "key": "schema.__root_schema__.children.entity_id.options" + }, + { + "key": "schema.__root_schema__.children.last_updated_by.borderRadius" + }, + { + "key": "schema.__root_schema__.children.last_updated_by.accentColor" + }, + { + "key": "schema.__root_schema__.children.last_updated_by.defaultValue" + }, + { + "key": "schema.__root_schema__.children.date_modified.borderRadius" + }, + { + "key": "schema.__root_schema__.children.date_modified.accentColor" + }, + { + "key": "schema.__root_schema__.children.date_modified.defaultValue" + }, + { + "key": "schema.__root_schema__.children.date_added.borderRadius" + }, + { + "key": "schema.__root_schema__.children.date_added.accentColor" + }, + { + "key": "schema.__root_schema__.children.date_added.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_parameters.cellBorderRadius" + }, + { + "key": "schema.__root_schema__.children.test_parameters.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_parameters.children.values.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_parameters.children.values.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_parameters.children.values.defaultValue" + }, + { + "key": "schema.__root_schema__.children.column_description.borderRadius" + }, + { + "key": "schema.__root_schema__.children.column_description.accentColor" + }, + { + "key": "schema.__root_schema__.children.column_description.defaultValue" + }, + { + "key": "schema.__root_schema__.children.column_name.borderRadius" + }, + { + "key": "schema.__root_schema__.children.column_name.accentColor" + }, + { + "key": "schema.__root_schema__.children.column_name.isVisible" + }, + { + "key": "schema.__root_schema__.children.column_name.defaultValue" + }, + { + "key": "schema.__root_schema__.children.column_name.options" + }, + { + "key": "schema.__root_schema__.children.test_type.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_type.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_type.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_type.options" + }, + { + "key": "schema.__root_schema__.children.entity_id.borderRadius" + }, + { + "key": "schema.__root_schema__.children.entity_id.accentColor" + }, + { + "key": "schema.__root_schema__.children.entity_id.defaultValue" + }, + { + "key": "schema.__root_schema__.children.proposed_remediation.borderRadius" + }, + { + "key": "schema.__root_schema__.children.proposed_remediation.accentColor" + }, + { + "key": "schema.__root_schema__.children.proposed_remediation.defaultValue" + }, + { + "key": "schema.__root_schema__.children.impact.borderRadius" + }, + { + "key": "schema.__root_schema__.children.impact.accentColor" + }, + { + "key": "schema.__root_schema__.children.impact.defaultValue" + }, + { + "key": "schema.__root_schema__.children.description.borderRadius" + }, + { + "key": "schema.__root_schema__.children.description.accentColor" + }, + { + "key": "schema.__root_schema__.children.description.defaultValue" + }, + { + "key": "schema.__root_schema__.children.priority.borderRadius" + }, + { + "key": "schema.__root_schema__.children.priority.accentColor" + }, + { + "key": "schema.__root_schema__.children.priority.defaultValue" + }, + { + "key": "schema.__root_schema__.children.scenario_id.borderRadius" + }, + { + "key": "schema.__root_schema__.children.scenario_id.accentColor" + }, + { + "key": "schema.__root_schema__.children.scenario_id.defaultValue" + }, + { + "key": "schema.__root_schema__.children.scenario_id.options" + }, + { + "key": "schema.__root_schema__.children.test_id.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_id.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_id.defaultValue" + }, + { + "key": "schema.__root_schema__.children.project_id.borderRadius" + }, + { + "key": "schema.__root_schema__.children.project_id.accentColor" + }, + { + "key": "schema.__root_schema__.children.project_id.defaultValue" + }, + { + "key": "schema.__root_schema__.children.project_id.options" + }, + { + "key": "schema.__root_schema__.children.test_activated.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_activated.defaultValue" + }, + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + }, + { + "key": "submitButtonStyles.buttonColor" + }, + { + "key": "submitButtonStyles.borderRadius" + }, + { + "key": "resetButtonStyles.buttonColor" + }, + { + "key": "resetButtonStyles.borderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_parameters.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.accentColor" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.defaultValue" + }, + { + "key": "schema.__root_schema__.defaultValue" + }, + { + "key": "schema.__root_schema__.borderRadius" + }, + { + "key": "schema.__root_schema__.cellBorderRadius" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___period.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___date_column.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___date_column.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___date_column.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___date_column.defaultValue" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___id_column.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___group_column.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___group_column.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___field.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___reference.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.defaultValue" + }, + { + "key": "schema.__root_schema__.children.column_name.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_type.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___reference.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.relationships___field.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.accepted_values___values.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___condition.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expression_is_true___expression.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___key.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___quantity.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___form_name.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___period.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___date_column.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___id_column.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.possible_duplicate_forms___group_column.tooltip" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.custom_sql___query.placeholderText" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.options" + }, + { + "key": "schema.__root_schema__.children.test_params_all_json.children.expect_similar_means_across_reporters___id_column.tooltip" + }, + { + "key": "submitButtonLabel" + }, + { + "key": "schema.__root_schema__.children.date_added.isVisible" + }, + { + "key": "schema.__root_schema__.children.date_modified.isVisible" + }, + { + "key": "schema.__root_schema__.children.last_updated_by.isVisible" + }, + { + "key": "schema.__root_schema__.children.test_id.isVisible" + } + ], + "sourceData": "{{configured_tests.selectedRow}}", + "showReset": true, + "resetButtonLabel": "Reset", + "key": "vfrbaovke0", + "backgroundColor": "#fff", + "isDeprecated": false, + "rightColumn": 63.0, + "dynamicHeight": "FIXED", + "autoGenerateForm": false, + "widgetId": "ocsuxzrkzg", + "resetButtonStyles": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonVariant": "SECONDARY" + }, + "isVisible": "true", + "version": 1.0, + "parentId": "je98hr71pu", + "renderMode": "CANVAS", + "isLoading": false, + "scrollContents": true, + "fixedFooter": true, + "submitButtonLabel": "{{appsmith.store.test_action}}", + "childStylesheet": { + "ARRAY": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "cellBoxShadow": "none" + }, + "OBJECT": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "cellBoxShadow": "none" + }, + "CHECKBOX": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + }, + "CURRENCY_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "DATEPICKER": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "EMAIL_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "MULTISELECT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "MULTILINE_TEXT_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "NUMBER_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "PASSWORD_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "PHONE_NUMBER_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "RADIO_GROUP": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "boxShadow": "none" + }, + "SELECT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "SWITCH": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "boxShadow": "none" + }, + "TEXT_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + } + }, + "disabledWhenInvalid": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "c14yy2u4yy", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "onClose": "{{resetWidget('configured_tests')}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "width": 720.0, + "minDynamicHeight": 4.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": [], + "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": [], + "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" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "Test activation", + "key": "6b5xi9jrls", + "rightColumn": 48.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "pmvwma9e7p", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "ysscf8xzcv", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "fontSize": "1.25rem", + "minDynamicHeight": 4.0 + }, + { + "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, + "dynamicHeight": "FIXED", + "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", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "o4d52pu954", + "isVisible": true, + "parentId": "a7axo8fac8", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "3yro4n84bq", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "onClose": "{{resetWidget('configured_tests')}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "width": 464.0, + "minDynamicHeight": 4.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": [], + "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" + } + ], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "Tests", + "key": "lwygtopls1", + "isDeprecated": false, + "rightColumn": 41.0, + "textAlign": "LEFT", + "dynamicHeight": "FIXED", + "widgetId": "97p90gzohw", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "lg9t8q2l02", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "fontSize": "1.5rem", + "minDynamicHeight": 4.0 + }, + { + "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, + "dynamicHeight": "FIXED", + "widgetId": "1ad1wvey5j", + "isVisible": true, + "version": 1.0, + "parentId": "lg9t8q2l02", + "labelAlignment": "left", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "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", + "minDynamicHeight": 4.0 + } + ], + "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, + "dynamicHeight": "FIXED", + "widgetId": "7l6rph2c1u", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "maxDynamicHeight": 9000.0, + "width": 1084.0, + "minDynamicHeight": 4.0 + } + ] + }, + "layoutOnLoadActions": [ + [ + { + "id": "Tests_Entity_column_names_cache", + "name": "Entity_column_names_cache", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Tests_Test_Types_Cache", + "name": "Test_Types_Cache", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Tests_Test_Types_That_Use_Parameters", + "name": "Test_Types_That_Use_Parameters", + "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_Entities_dropdown", + "name": "Entities_dropdown", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\"" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Tests_Test_Parameters_Cache", + "name": "Test_Parameters_Cache", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Tests_Test_Types_That_Use_Column", + "name": "Test_Types_That_Use_Column", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Tests_Test_parameters_sample", + "name": "Test_parameters_sample", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.test_type" + ], + "timeoutInMillisecond": 10000.0 + } + ], + [ + { + "id": "Tests_Entities_dropdown_dbt_ref_fmt", + "name": "Entities_dropdown_dbt_ref_fmt", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\"" + ], + "timeoutInMillisecond": 10000.0 + }, + { + "id": "Tests_Entities_dropdown_with_prefix", + "name": "Entities_dropdown_with_prefix", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\"" + ], + "timeoutInMillisecond": 10000.0 + } + ] + ], + "layoutOnLoadActionErrors": [], + "validOnPageLoadActions": true, + "id": "Tests", + "deleted": false, + "policies": [], + "userPermissions": [] + } + ], + "userPermissions": [], + "policies": [], + "isHidden": true + }, + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781833e" + } + ], + "actionList": [ + { + "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": "Run log", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT \n rl.run_start as \"Run_date\",\n rl.project_id as \"Project_id\",\n SUM(tr.rows_total) as \"Rows_tested\",\n SUM(tr.rows_failed) as \"Rows_failed\",\n ROUND(100 * SUM(tr.rows_failed) / (1.0*SUM(tr.rows_total)),2) as \"% fail\",\n\t rl.run_id as \"Run_id\",\n\t rl.run_status as \"Run status\",\n\t rl.run_error as \"Run error\"\nfrom\n dot.run_log rl\nleft outer join dot.test_results_summary tr ON rl.run_id = tr.run_id\ngroup BY \n rl.run_start,\n\t rl.run_id,\n\t rl.run_status,\n\t rl.run_error\nORDER BY\n rl.run_start DESC", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "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": "Run log", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT \n rl.run_start as \"Run_date\",\n rl.project_id as \"Project_id\",\n SUM(tr.rows_total) as \"Rows_tested\",\n SUM(tr.rows_failed) as \"Rows_failed\",\n ROUND(100 * SUM(tr.rows_failed) / (1.0*SUM(tr.rows_total)),2) as \"% fail\",\n\t rl.run_id as \"Run_id\",\n\t rl.run_status as \"Run status\",\n\t rl.run_error as \"Run error\"\nfrom\n dot.run_log rl\nleft outer join dot.test_results_summary tr ON rl.run_id = tr.run_id\ngroup BY \n rl.run_start,\n\t rl.run_id,\n\t rl.run_status,\n\t rl.run_error\nORDER BY\n rl.run_start DESC", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": true, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Run log_SelectQuery", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818345" + }, + { + "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_id,\n\tdot.test_params_all_json()::jsonb\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}};", + "selfReferencingDataPaths": [], + "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_id,\n\tdot.test_params_all_json()::jsonb\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}};", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781836c" + }, + { + "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_id\" 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}};", + "selfReferencingDataPaths": [], + "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_id\" 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}};", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781834a" + }, + { + "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}};", + "selfReferencingDataPaths": [], + "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}};", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781835b" + }, + { + "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}}';", + "selfReferencingDataPaths": [], + "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}}';", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818354" + }, + { + "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", + "selfReferencingDataPaths": [], + "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", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818363" + }, + { + "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}};", + "selfReferencingDataPaths": [], + "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}};", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818347" + }, + { + "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;", + "selfReferencingDataPaths": [], + "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;", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818369" + }, + { + "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;", + "selfReferencingDataPaths": [], + "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;", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_Testtypes_dropdown", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1cb293c75c9781836e" + }, + { + "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 const test_types = Test_Types_That_Use_Parameters.data.map(item => {\n return item.test_type;\n });\n return test_types.includes(test_type_in);\n}", + "selfReferencingDataPaths": [], + "jsArguments": [ + { + "name": "item" + }, + { + "name": "", + "value": ">" + }, + { + "name": "{" + }, + { + "name": "return" + }, + { + "name": "item.test_type;" + }, + { + "name": "}" + } + ], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "test_type_in => {\n const test_types = Test_Types_That_Use_Parameters.data.map(item => {\n return item.test_type;\n });\n return test_types.includes(test_type_in);\n}" + ], + "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 const test_types = Test_Types_That_Use_Parameters.data.map(item => {\n return item.test_type;\n });\n return test_types.includes(test_type_in);\n}", + "selfReferencingDataPaths": [], + "jsArguments": [ + { + "name": "item" + }, + { + "name": "", + "value": ">" + }, + { + "name": "{" + }, + { + "name": "return" + }, + { + "name": "item.test_type;" + }, + { + "name": "}" + } + ], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "test_type_in => {\n const test_types = Test_Types_That_Use_Parameters.data.map(item => {\n return item.test_type;\n });\n return test_types.includes(test_type_in);\n}" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_JSFunctions.testUsesParameters", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781836d" + }, + { + "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;", + "selfReferencingDataPaths": [], + "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;", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_Projects_dropdown", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818365" + }, + { + "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}}');", + "selfReferencingDataPaths": [], + "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}}');", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818356" + }, + { + "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 }};", + "selfReferencingDataPaths": [], + "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 }};", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1cb293c75c97818373" + }, + { + "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 Bulk_Delete_Tests.run(() => {\n showAlert('Successfully deleted tests');\n closeModal('Delete_Tests_Modal');\n Configured_tests_data.run();\n }, () => {}, {\n 'test_ids': JSFunctions.getIds()\n });\n}", + "selfReferencingDataPaths": [], + "jsArguments": [], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "() => {\n Bulk_Delete_Tests.run(() => {\n showAlert('Successfully deleted tests');\n closeModal('Delete_Tests_Modal');\n Configured_tests_data.run();\n }, () => {}, {\n 'test_ids': JSFunctions.getIds()\n });\n}" + ], + "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 Bulk_Delete_Tests.run(() => {\n showAlert('Successfully deleted tests');\n closeModal('Delete_Tests_Modal');\n Configured_tests_data.run();\n }, () => {}, {\n 'test_ids': JSFunctions.getIds()\n });\n}", + "selfReferencingDataPaths": [], + "jsArguments": [], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "() => {\n Bulk_Delete_Tests.run(() => {\n showAlert('Successfully deleted tests');\n closeModal('Delete_Tests_Modal');\n Configured_tests_data.run();\n }, () => {}, {\n 'test_ids': JSFunctions.getIds()\n });\n}" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_JSFunctions.bulkDelete", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1cb293c75c97818371" + }, + { + "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 let test_activated_b = test_activated_bulk.isChecked;\n Bulk_Update_Test_Activated.run(() => {\n showAlert('Successfully updated test activation status');\n closeModal('Activate_Tests_Modal');\n resetWidget('test_activated_bulk');\n Configured_tests_data.run();\n }, () => {}, {\n 'test_activated_bulk': test_activated_b,\n 'test_ids': JSFunctions.getIds()\n });\n}", + "selfReferencingDataPaths": [], + "jsArguments": [], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "() => {\n let test_activated_b = test_activated_bulk.isChecked;\n Bulk_Update_Test_Activated.run(() => {\n showAlert('Successfully updated test activation status');\n closeModal('Activate_Tests_Modal');\n resetWidget('test_activated_bulk');\n Configured_tests_data.run();\n }, () => {}, {\n 'test_activated_bulk': test_activated_b,\n 'test_ids': JSFunctions.getIds()\n });\n}" + ], + "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 let test_activated_b = test_activated_bulk.isChecked;\n Bulk_Update_Test_Activated.run(() => {\n showAlert('Successfully updated test activation status');\n closeModal('Activate_Tests_Modal');\n resetWidget('test_activated_bulk');\n Configured_tests_data.run();\n }, () => {}, {\n 'test_activated_bulk': test_activated_b,\n 'test_ids': JSFunctions.getIds()\n });\n}", + "selfReferencingDataPaths": [], + "jsArguments": [], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "() => {\n let test_activated_b = test_activated_bulk.isChecked;\n Bulk_Update_Test_Activated.run(() => {\n showAlert('Successfully updated test activation status');\n closeModal('Activate_Tests_Modal');\n resetWidget('test_activated_bulk');\n Configured_tests_data.run();\n }, () => {}, {\n 'test_activated_bulk': test_activated_b,\n 'test_ids': JSFunctions.getIds()\n });\n}" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_JSFunctions.bulkUpdate", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781836b" + }, + { + "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}};", + "selfReferencingDataPaths": [], + "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}};", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818348" + }, + { + "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}};", + "selfReferencingDataPaths": [], + "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}};", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1cb293c75c9781837f" + }, + { + "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;", + "selfReferencingDataPaths": [], + "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;", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_Scenario_dropdown", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1cb293c75c9781837e" + }, + { + "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\t\texample\nFROM \n dot.test_parameters_interface\nWHERE\n\t\ttest_type = '{{Edit_Add_Test_Form.formData.test_type}}' AND\n\t\ttest_type = '{{Edit_Add_Test_Form.formData.test_type}}'\n", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.test_type" + ], + "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\t\texample\nFROM \n dot.test_parameters_interface\nWHERE\n\t\ttest_type = '{{Edit_Add_Test_Form.formData.test_type}}' AND\n\t\ttest_type = '{{Edit_Add_Test_Form.formData.test_type}}'\n", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.test_type" + ], + "userSetOnLoad": true, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_Test_parameters_sample", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1cb293c75c97818386" + }, + { + "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\" = {{Edit_Add_Test_Form.formData.test_activated}},\n\t\t\"project_id\" = '{{Edit_Add_Test_Form.formData.project_id}}',\n\t\t\"scenario_id\" = '{{Edit_Add_Test_Form.formData.scenario_id}}',\n\t\t\"priority\" = {{Edit_Add_Test_Form.formData.priority}},\n\t\t\"description\" = '{{Edit_Add_Test_Form.formData.description}}',\n\t\t\"impact\" = '{{Edit_Add_Test_Form.formData.impact}}',\n\t\t\"proposed_remediation\" = '{{Edit_Add_Test_Form.formData.proposed_remediation}}',\n\t\t\"entity_id\" = '{{Edit_Add_Test_Form.formData.entity_id}}',\n\t\t\"test_type\" = '{{Edit_Add_Test_Form.formData.test_type}}',\n\t\t\"column_name\" = '{{Edit_Add_Test_Form.formData.column_name}}',\n\t\t\"test_parameters\" = $${{Edit_Add_Test_Form.formData.form_test_parameters_string}}$$,\n\t\t\"last_updated_by\" = '{{appsmith.user.name == null ? '' : appsmith.user.name == null }}',\n\t\t\"date_modified\" = NOW()\n WHERE \"test_id\" = '{{Edit_Add_Test_Form.formData.test_id}}';", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.description", + "Edit_Add_Test_Form.formData.scenario_id", + "Edit_Add_Test_Form.formData.priority", + "appsmith.user.name == null ? '' : appsmith.user.name == null", + "Edit_Add_Test_Form.formData.test_activated", + "Edit_Add_Test_Form.formData.form_test_parameters_string", + "Edit_Add_Test_Form.formData.impact", + "Edit_Add_Test_Form.formData.entity_id", + "Edit_Add_Test_Form.formData.project_id", + "Edit_Add_Test_Form.formData.test_type", + "Edit_Add_Test_Form.formData.column_name", + "Edit_Add_Test_Form.formData.test_id", + "Edit_Add_Test_Form.formData.proposed_remediation" + ], + "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\" = {{Edit_Add_Test_Form.formData.test_activated}},\n\t\t\"project_id\" = '{{Edit_Add_Test_Form.formData.project_id}}',\n\t\t\"scenario_id\" = '{{Edit_Add_Test_Form.formData.scenario_id}}',\n\t\t\"priority\" = {{Edit_Add_Test_Form.formData.priority}},\n\t\t\"description\" = '{{Edit_Add_Test_Form.formData.description}}',\n\t\t\"impact\" = '{{Edit_Add_Test_Form.formData.impact}}',\n\t\t\"proposed_remediation\" = '{{Edit_Add_Test_Form.formData.proposed_remediation}}',\n\t\t\"entity_id\" = '{{Edit_Add_Test_Form.formData.entity_id}}',\n\t\t\"test_type\" = '{{Edit_Add_Test_Form.formData.test_type}}',\n\t\t\"column_name\" = '{{Edit_Add_Test_Form.formData.column_name}}',\n\t\t\"test_parameters\" = $${{Edit_Add_Test_Form.formData.form_test_parameters_string}}$$,\n\t\t\"last_updated_by\" = '{{appsmith.user.name == null ? '' : appsmith.user.name == null }}',\n\t\t\"date_modified\" = NOW()\n WHERE \"test_id\" = '{{Edit_Add_Test_Form.formData.test_id}}';", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.description", + "Edit_Add_Test_Form.formData.scenario_id", + "Edit_Add_Test_Form.formData.priority", + "appsmith.user.name == null ? '' : appsmith.user.name == null", + "Edit_Add_Test_Form.formData.test_activated", + "Edit_Add_Test_Form.formData.form_test_parameters_string", + "Edit_Add_Test_Form.formData.impact", + "Edit_Add_Test_Form.formData.entity_id", + "Edit_Add_Test_Form.formData.project_id", + "Edit_Add_Test_Form.formData.test_type", + "Edit_Add_Test_Form.formData.column_name", + "Edit_Add_Test_Form.formData.test_id", + "Edit_Add_Test_Form.formData.proposed_remediation" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_Edit_Test", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1cb293c75c9781837b" + }, + { + "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 \n entity_id as \"label\", \n\t entity_id as \"value\" \nfrom \n dot.configured_entities\nwhere\n {{Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\" }}\n\n", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\"" + ], + "userSetOnLoad": true, + "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 \n entity_id as \"label\", \n\t entity_id as \"value\" \nfrom \n dot.configured_entities\nwhere\n {{Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\" }}\n\n", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\"" + ], + "userSetOnLoad": true, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_Entities_dropdown", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1cb293c75c97818377" + }, + { + "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';", + "selfReferencingDataPaths": [], + "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';", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818346" + }, + { + "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}};", + "selfReferencingDataPaths": [], + "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}};", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1cb293c75c97818380" + }, + { + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "Entity_column_names_cache", + "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": "-- A cache of all entity column names. This is further filtered in javascript for the list \n-- appropriate to each widget, eg by project, type, etc. We populate a cache so we get all \n-- the data once, better than executing lots of conditional queries, simpler. mjh\nSELECT DISTINCT\n ce.entity_id,\n\t ce.entity_id,\n CONCAT(c.column_name, ' (', c.data_type, ')') as \"label\",\n c.column_name as \"value\",\n ce.project_id,\n c.column_name, \n c.data_type, \n t.table_name, \n t.table_schema\nFROM \n dot.configured_entities ce,\n\t\tdot.projects cp,\n information_schema.tables t\n left join information_schema.columns c \n on t.table_schema = c.table_schema \n and t.table_name = c.table_name \n and c.column_name is not null\nWHERE \n t.table_name = CONCAT('dot_model__',ce.entity_id) AND -- dbt entities only \n\t\tcp.project_id = ce.project_id AND\n t.table_schema = CONCAT(cp.project_schema, '_tests')", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": true, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "Entity_column_names_cache", + "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": "-- A cache of all entity column names. This is further filtered in javascript for the list \n-- appropriate to each widget, eg by project, type, etc. We populate a cache so we get all \n-- the data once, better than executing lots of conditional queries, simpler. mjh\nSELECT DISTINCT\n ce.entity_id,\n\t ce.entity_id,\n CONCAT(c.column_name, ' (', c.data_type, ')') as \"label\",\n c.column_name as \"value\",\n ce.project_id,\n c.column_name, \n c.data_type, \n t.table_name, \n t.table_schema\nFROM \n dot.configured_entities ce,\n\t\tdot.projects cp,\n information_schema.tables t\n left join information_schema.columns c \n on t.table_schema = c.table_schema \n and t.table_name = c.table_name \n and c.column_name is not null\nWHERE \n t.table_name = CONCAT('dot_model__',ce.entity_id) AND -- dbt entities only \n\t\tcp.project_id = ce.project_id AND\n t.table_schema = CONCAT(cp.project_schema, '_tests')", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": true, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_Entity_column_names_cache", + "deleted": false, + "gitSyncId": "62c0be1797ff1761a68b0a61_62c1f90f97ff1761a68b0ad1" + }, + { + "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": "Failed tests", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "\nSELECT \n\t\ttr.status,\n\t\tct.description,\n\t\tct.test_type,\n ce.entity_id, \n\t\tdot.get_test_result_data_record(ce.entity_id, tr.id_column_name, \n tr.id_column_value,CONCAT(dp.project_schema,'_tests'))::jsonb as \"data_record\",\n\t\ttr.test_result_id\nFROM \n dot.\"test_results\" tr,\n\t\tdot.configured_entities ce,\n\t\tdot.configured_tests ct,\n\t dot.projects dp\nWHERE \n ct.test_id = tr.test_id AND\n ce.entity_id = tr.entity_id AND\n tr.view_name ilike '%{{data_table.searchText || \"\"}}%' AND\n\t tr.run_id = '{{appsmith.URL.queryParams.run_id}}' AND\n\t tr.test_id = '{{appsmith.URL.queryParams.test_id}}' AND\n\t ce.project_id = dp.project_id\nORDER BY \"{{data_table.sortOrder.column || 'test_result_id'}}\" {{data_table.sortOrder.order || 'ASC'}}\nLIMIT {{data_table.pageSize}}\nOFFSET {{(data_table.pageNo - 1) * data_table.pageSize}};", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "appsmith.URL.queryParams.run_id", + "data_table.sortOrder.order || 'ASC'", + "data_table.pageSize", + "data_table.searchText || \"\"", + "data_table.sortOrder.column || 'test_result_id'", + "(data_table.pageNo - 1) * data_table.pageSize", + "appsmith.URL.queryParams.test_id" + ], + "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": "Failed tests", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "\nSELECT \n\t\ttr.status,\n\t\tct.description,\n\t\tct.test_type,\n ce.entity_id, \n\t\tdot.get_test_result_data_record(ce.entity_id, tr.id_column_name, \n tr.id_column_value,CONCAT(dp.project_schema,'_tests'))::jsonb as \"data_record\",\n\t\ttr.test_result_id\nFROM \n dot.\"test_results\" tr,\n\t\tdot.configured_entities ce,\n\t\tdot.configured_tests ct,\n\t dot.projects dp\nWHERE \n ct.test_id = tr.test_id AND\n ce.entity_id = tr.entity_id AND\n tr.view_name ilike '%{{data_table.searchText || \"\"}}%' AND\n\t tr.run_id = '{{appsmith.URL.queryParams.run_id}}' AND\n\t tr.test_id = '{{appsmith.URL.queryParams.test_id}}' AND\n\t ce.project_id = dp.project_id\nORDER BY \"{{data_table.sortOrder.column || 'test_result_id'}}\" {{data_table.sortOrder.order || 'ASC'}}\nLIMIT {{data_table.pageSize}}\nOFFSET {{(data_table.pageNo - 1) * data_table.pageSize}};", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "appsmith.URL.queryParams.run_id", + "data_table.sortOrder.order || 'ASC'", + "data_table.pageSize", + "data_table.searchText || \"\"", + "data_table.sortOrder.column || 'test_result_id'", + "(data_table.pageNo - 1) * data_table.pageSize", + "appsmith.URL.queryParams.test_id" + ], + "userSetOnLoad": true, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Failed tests_SelectQuery", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818338" + }, + { + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "Entities_dropdown_with_prefix", + "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 entity_id as \"label\" ,\n\t entity_id as \"value\" \nfrom \n dot.configured_entities\nwhere\n {{Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\" }}", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\"" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "Entities_dropdown_with_prefix", + "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 entity_id as \"label\" ,\n\t entity_id as \"value\" \nfrom \n dot.configured_entities\nwhere\n {{Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\" }}", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\"" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_Entities_dropdown_with_prefix", + "deleted": false, + "gitSyncId": "62c0be1797ff1761a68b0a61_62c1eb9e97ff1761a68b0ac4" + }, + { + "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 return `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "() => {\n return `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`;\n}" + ], + "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 return `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "() => {\n return `(${configured_tests.selectedRows.map(item => `\\'${item.test_id}\\'`).join(\", \")})`;\n}" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_JSFunctions.getIds", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1cb293c75c97818389" + }, + { + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "Entities_dropdown_dbt_ref_fmt", + "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 entity_id as \"label\" ,\n\t entity_id as \"value\" \nfrom \n dot.configured_entities\nwhere\n {{Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\" }}", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\"" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "Entities_dropdown_dbt_ref_fmt", + "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 entity_id as \"label\" ,\n\t entity_id as \"value\" \nfrom \n dot.configured_entities\nwhere\n {{Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\" }}", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.project_id == undefined ? \"1=1\" : \"project_id='\"+Edit_Add_Test_Form.formData.project_id+\"'\"" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_Entities_dropdown_dbt_ref_fmt", + "deleted": false, + "gitSyncId": "62c204e997ff1761a68b0ade_62c2f9b297ff1761a68b0b35" + }, + { + "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": "Run results", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT \n rl.run_start as \"Run date\",\n ct.project_id,\n ct.description as \"Test\",\n ce.entity_id as \"Entity\", \n ct.test_type as \"Test type\",\n s.scenario_id as \"Scenario\",\n tr.test_status as \"Test status\",\n tr.rows_total as \"Rows tested\",\n tr.rows_failed as \"Rows failed\",\n\t CASE WHEN tr.rows_total = 0 THEN 0\n\t ELSE ROUND(100 * tr.rows_failed / (1.0*tr.rows_total),2) END \"% fail\",\n\t tr.run_id as \"Run id\",\n\t tr.test_id as \"Test id\"\nFROM\n dot.scenarios s,\n dot.configured_tests ct,\n dot.test_results_summary tr,\n dot.configured_entities ce,\n dot.run_log rl\nWHERE \n s.scenario_id=ct.scenario_id AND\n tr.test_id=ct.test_id AND\n ce.entity_id = ct.entity_id and \n rl.run_id = tr.run_id AND \n\t rl.project_id ilike '%{{data_table.searchText || \"\"}}%' AND\n\t rl.run_id = '{{appsmith.URL.queryParams.run_id}}'\nORDER BY \"{{data_table.sortOrder.column || 'Run id'}}\" {{data_table.sortOrder.order || 'ASC'}}\nLIMIT {{data_table.pageSize}}\nOFFSET {{(data_table.pageNo - 1) * data_table.pageSize}};", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "appsmith.URL.queryParams.run_id", + "data_table.sortOrder.order || 'ASC'", + "data_table.sortOrder.column || 'Run id'", + "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": "Run results", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT \n rl.run_start as \"Run date\",\n ct.project_id,\n ct.description as \"Test\",\n ce.entity_id as \"Entity\", \n ct.test_type as \"Test type\",\n s.scenario_id as \"Scenario\",\n tr.test_status as \"Test status\",\n tr.rows_total as \"Rows tested\",\n tr.rows_failed as \"Rows failed\",\n\t CASE WHEN tr.rows_total = 0 THEN 0\n\t ELSE ROUND(100 * tr.rows_failed / (1.0*tr.rows_total),2) END \"% fail\",\n\t tr.run_id as \"Run id\",\n\t tr.test_id as \"Test id\"\nFROM\n dot.scenarios s,\n dot.configured_tests ct,\n dot.test_results_summary tr,\n dot.configured_entities ce,\n dot.run_log rl\nWHERE \n s.scenario_id=ct.scenario_id AND\n tr.test_id=ct.test_id AND\n ce.entity_id = ct.entity_id and \n rl.run_id = tr.run_id AND \n\t rl.project_id ilike '%{{data_table.searchText || \"\"}}%' AND\n\t rl.run_id = '{{appsmith.URL.queryParams.run_id}}'\nORDER BY \"{{data_table.sortOrder.column || 'Run id'}}\" {{data_table.sortOrder.order || 'ASC'}}\nLIMIT {{data_table.pageSize}}\nOFFSET {{(data_table.pageNo - 1) * data_table.pageSize}};", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "appsmith.URL.queryParams.run_id", + "data_table.sortOrder.order || 'ASC'", + "data_table.sortOrder.column || 'Run id'", + "data_table.pageSize", + "data_table.searchText || \"\"", + "(data_table.pageNo - 1) * data_table.pageSize" + ], + "userSetOnLoad": true, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Run results_SelectQuery", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781834b" + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "getTestTypeDescription", + "fullyQualifiedName": "JSFunctions.getTestTypeDescription", + "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 var params = Test_Types_Cache.data.filter(function (el) {\n return el.test_type == test_type_in;\n });\n var tooltip = params.length == 0 ? ' ' : params[0].description;\n return tooltip;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [ + { + "name": "function" + }, + { + "name": "(el" + } + ], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "test_type_in => {\n var params = Test_Types_Cache.data.filter(function (el) {\n return el.test_type == test_type_in;\n });\n var tooltip = params.length == 0 ? ' ' : params[0].description;\n return tooltip;\n}" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "getTestTypeDescription", + "fullyQualifiedName": "JSFunctions.getTestTypeDescription", + "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 var params = Test_Types_Cache.data.filter(function (el) {\n return el.test_type == test_type_in;\n });\n var tooltip = params.length == 0 ? ' ' : params[0].description;\n return tooltip;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [ + { + "name": "function" + }, + { + "name": "(el" + } + ], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "test_type_in => {\n var params = Test_Types_Cache.data.filter(function (el) {\n return el.test_type == test_type_in;\n });\n var tooltip = params.length == 0 ? ' ' : params[0].description;\n return tooltip;\n}" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_JSFunctions.getTestTypeDescription", + "deleted": false, + "gitSyncId": "62c4319bfa65ed18bbd7c88a_62c4d2678b0ebe338ec57999" + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "paramIsVisible", + "fullyQualifiedName": "JSFunctions.paramIsVisible", + "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, param_in) => {\n const params = Test_Parameters.data.map(item => {\n return item.test_type == test_type_in ? item.parameter : undefined;\n });\n return params.includes(param_in);\n}", + "selfReferencingDataPaths": [], + "jsArguments": [ + { + "name": "test_type_in" + }, + { + "name": "param_in" + } + ], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "(test_type_in, param_in) => {\n const params = Test_Parameters.data.map(item => {\n return item.test_type == test_type_in ? item.parameter : undefined;\n });\n return params.includes(param_in);\n}" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "paramIsVisible", + "fullyQualifiedName": "JSFunctions.paramIsVisible", + "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, param_in) => {\n const params = Test_Parameters.data.map(item => {\n return item.test_type == test_type_in ? item.parameter : undefined;\n });\n return params.includes(param_in);\n}", + "selfReferencingDataPaths": [], + "jsArguments": [ + { + "name": "test_type_in" + }, + { + "name": "param_in" + } + ], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "(test_type_in, param_in) => {\n const params = Test_Parameters.data.map(item => {\n return item.test_type == test_type_in ? item.parameter : undefined;\n });\n return params.includes(param_in);\n}" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_JSFunctions.paramIsVisible", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bd1a71b293c75c978183fe" + }, + { + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "Test_Types_Cache", + "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, description from dot.test_types ", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": true, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "Test_Types_Cache", + "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, description from dot.test_types ", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": true, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_Test_Types_Cache", + "deleted": false, + "gitSyncId": "62c4319bfa65ed18bbd7c88a_62c4c87e8b0ebe338ec57990" + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "getTestParameterExample", + "fullyQualifiedName": "JSFunctions.getTestParameterExample", + "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_parameter_in => {\n var params = Test_Parameters_Cache.data.filter(function (el) {\n return el.parameter == test_parameter_in;\n });\n var example = params.length == 0 ? ' ' : params[0].example;\n return example;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [ + { + "name": "function" + }, + { + "name": "(el" + } + ], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "test_parameter_in => {\n var params = Test_Parameters_Cache.data.filter(function (el) {\n return el.parameter == test_parameter_in;\n });\n var example = params.length == 0 ? ' ' : params[0].example;\n return example;\n}" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "getTestParameterExample", + "fullyQualifiedName": "JSFunctions.getTestParameterExample", + "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_parameter_in => {\n var params = Test_Parameters_Cache.data.filter(function (el) {\n return el.parameter == test_parameter_in;\n });\n var example = params.length == 0 ? ' ' : params[0].example;\n return example;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [ + { + "name": "function" + }, + { + "name": "(el" + } + ], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "test_parameter_in => {\n var params = Test_Parameters_Cache.data.filter(function (el) {\n return el.parameter == test_parameter_in;\n });\n var example = params.length == 0 ? ' ' : params[0].example;\n return example;\n}" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_JSFunctions.getTestParameterExample", + "deleted": false, + "gitSyncId": "62c4319bfa65ed18bbd7c88a_62c4da798b0ebe338ec5799b" + }, + { + "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 }};", + "selfReferencingDataPaths": [], + "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 }};", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818366" + }, + { + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "Run_Fails_By_Scenario_plot", + "datasource": { + "name": "dot_db_local", + "pluginId": "postgres-plugin", + "messages": [], + "isAutoGenerated": false, + "id": "dot_db_local", + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Run results", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT \n s.scenario as \"x\", \n ROUND(100 * SUM(tr.rows_failed) / (1.0*SUM(tr.rows_total)),2) as \"y\"\nFROM\n dot.scenarios s,\n dot.configured_tests ct,\n dot.test_results_summary tr,\n dot.configured_entities ce,\n dot.run_log rl,\n dot.entity_categories ec \nWHERE \n s.scenario_id=ct.scenario_id AND\n tr.test_id=ct.test_id AND\n ce.entity_id = ct.entity_id and \n rl.run_id = tr.run_id and \n ce.entity_category = ec.entity_category and\n\t rl.run_id = '{{appsmith.URL.queryParams.run_id}}'\ngroup by\n s.scenario ", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "appsmith.URL.queryParams.run_id" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "Run_Fails_By_Scenario_plot", + "datasource": { + "name": "dot_db_local", + "pluginId": "postgres-plugin", + "messages": [], + "isAutoGenerated": false, + "id": "dot_db_local", + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Run results", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT \n s.scenario as \"x\", \n ROUND(100 * SUM(tr.rows_failed) / (1.0*SUM(tr.rows_total)),2) as \"y\"\nFROM\n dot.scenarios s,\n dot.configured_tests ct,\n dot.test_results_summary tr,\n dot.configured_entities ce,\n dot.run_log rl,\n dot.entity_categories ec \nWHERE \n s.scenario_id=ct.scenario_id AND\n tr.test_id=ct.test_id AND\n ce.entity_id = ct.entity_id and \n rl.run_id = tr.run_id and \n ce.entity_category = ec.entity_category and\n\t rl.run_id = '{{appsmith.URL.queryParams.run_id}}'\ngroup by\n s.scenario ", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "appsmith.URL.queryParams.run_id" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Run results_Run_Fails_By_Scenario_plot", + "deleted": false, + "gitSyncId": "62c4319bfa65ed18bbd7c88a_62c5adae8b0ebe338ec579be" + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "getEntityColumns", + "fullyQualifiedName": "JSFunctions.getEntityColumns", + "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": "(project_id_in, entity_id_in, entity_id_in, data_type_in) => {\n var columns = Entity_column_names_cache.data.filter(function (el) {\n return (el.entity_id == entity_id_in || entity_id_in == undefined) && (el.entity_id == entity_id_in || entity_id_in == undefined) && (el.project_id == project_id_in || project_id_in == undefined) && (el.data_type == data_type_in || data_type_in == undefined);\n }).map(({label, value}) => ({\n label,\n value\n }));\n return columns;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [ + {}, + {}, + {}, + {} + ], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "(project_id_in, entity_id_in, entity_id_in, data_type_in) => {\n var columns = Entity_column_names_cache.data.filter(function (el) {\n return (el.entity_id == entity_id_in || entity_id_in == undefined) && (el.entity_id == entity_id_in || entity_id_in == undefined) && (el.project_id == project_id_in || project_id_in == undefined) && (el.data_type == data_type_in || data_type_in == undefined);\n }).map(({label, value}) => ({\n label,\n value\n }));\n return columns;\n}" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "getEntityColumns", + "fullyQualifiedName": "JSFunctions.getEntityColumns", + "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": "(project_id_in, entity_id_in, entity_id_in, data_type_in) => {\n var columns = Entity_column_names_cache.data.filter(function (el) {\n return (el.entity_id == entity_id_in || entity_id_in == undefined) && (el.entity_id == entity_id_in || entity_id_in == undefined) && (el.project_id == project_id_in || project_id_in == undefined) && (el.data_type == data_type_in || data_type_in == undefined);\n }).map(({label, value}) => ({\n label,\n value\n }));\n return columns;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [ + {}, + {}, + {}, + {} + ], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "(project_id_in, entity_id_in, entity_id_in, data_type_in) => {\n var columns = Entity_column_names_cache.data.filter(function (el) {\n return (el.entity_id == entity_id_in || entity_id_in == undefined) && (el.entity_id == entity_id_in || entity_id_in == undefined) && (el.project_id == project_id_in || project_id_in == undefined) && (el.data_type == data_type_in || data_type_in == undefined);\n }).map(({label, value}) => ({\n label,\n value\n }));\n return columns;\n}" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_JSFunctions.getEntityColumns", + "deleted": false, + "gitSyncId": "62c204e997ff1761a68b0ade_62c2078397ff1761a68b0b24" + }, + { + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "Failed_Test_data_record", + "datasource": { + "name": "dot_db_local", + "pluginId": "postgres-plugin", + "messages": [], + "isAutoGenerated": false, + "id": "dot_db_local", + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Failed tests", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT \n dot.get_test_result_data_record(ce.entity_id, tr.id_column_name, \n tr.id_column_value,CONCAT(dp.project_schema,'_tests'))\nFROM \n dot.\"test_results\" tr,\n\t\tdot.configured_entities ce,\n\t\tdot.projects dp\nWHERE \n\t tr.test_result_id = '{{data_table.selectedRow.test_result_id}}' AND\n\t tr.entity_id = ce.entity_id AND\n\t ce.project_id = dp.project_id", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "data_table.selectedRow.test_result_id" + ], + "userSetOnLoad": true, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "Failed_Test_data_record", + "datasource": { + "name": "dot_db_local", + "pluginId": "postgres-plugin", + "messages": [], + "isAutoGenerated": false, + "id": "dot_db_local", + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Failed tests", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT \n dot.get_test_result_data_record(ce.entity_id, tr.id_column_name, \n tr.id_column_value,CONCAT(dp.project_schema,'_tests'))\nFROM \n dot.\"test_results\" tr,\n\t\tdot.configured_entities ce,\n\t\tdot.projects dp\nWHERE \n\t tr.test_result_id = '{{data_table.selectedRow.test_result_id}}' AND\n\t tr.entity_id = ce.entity_id AND\n\t ce.project_id = dp.project_id", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "data_table.selectedRow.test_result_id" + ], + "userSetOnLoad": true, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Failed tests_Failed_Test_data_record", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781833a" + }, + { + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "Run_fails_by_category_plot", + "datasource": { + "name": "dot_db_local", + "pluginId": "postgres-plugin", + "messages": [], + "isAutoGenerated": false, + "id": "dot_db_local", + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Run results", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT \n ec.description as \"x\", \n ROUND(100 * SUM(tr.rows_failed) / (1.0*SUM(tr.rows_total)),2) as \"y\"\nFROM\n dot.scenarios s,\n dot.configured_tests ct,\n dot.test_results_summary tr,\n dot.configured_entities ce,\n dot.run_log rl,\n dot.entity_categories ec \nWHERE \n s.scenario_id=ct.scenario_id AND\n tr.test_id=ct.test_id AND\n ce.entity_id = ct.entity_id and \n rl.run_id = tr.run_id and \n ce.entity_category = ec.entity_category and\n\t rl.run_id = '{{appsmith.URL.queryParams.run_id}}'\ngroup by\n ec.description ", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "appsmith.URL.queryParams.run_id" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "Run_fails_by_category_plot", + "datasource": { + "name": "dot_db_local", + "pluginId": "postgres-plugin", + "messages": [], + "isAutoGenerated": false, + "id": "dot_db_local", + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Run results", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT \n ec.description as \"x\", \n ROUND(100 * SUM(tr.rows_failed) / (1.0*SUM(tr.rows_total)),2) as \"y\"\nFROM\n dot.scenarios s,\n dot.configured_tests ct,\n dot.test_results_summary tr,\n dot.configured_entities ce,\n dot.run_log rl,\n dot.entity_categories ec \nWHERE \n s.scenario_id=ct.scenario_id AND\n tr.test_id=ct.test_id AND\n ce.entity_id = ct.entity_id and \n rl.run_id = tr.run_id and \n ce.entity_category = ec.entity_category and\n\t rl.run_id = '{{appsmith.URL.queryParams.run_id}}'\ngroup by\n ec.description ", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "appsmith.URL.queryParams.run_id" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Run results_Run_fails_by_category_plot", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818350" + }, + { + "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}};", + "selfReferencingDataPaths": [], + "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}};", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818355" + }, + { + "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_id\" = '{{entity_id.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 == null ? '' : appsmith.user.name == null }}'\nWHERE \"entity_id\" = {{data_table.selectedRow.entity_id}};", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "entity_definition.text", + "entity_id.text", + "entity_category.selectedOptionValue", + "appsmith.user.name == null ? '' : appsmith.user.name == null", + "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_id\" = '{{entity_id.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 == null ? '' : appsmith.user.name == null }}'\nWHERE \"entity_id\" = {{data_table.selectedRow.entity_id}};", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "entity_definition.text", + "entity_id.text", + "entity_category.selectedOptionValue", + "appsmith.user.name == null ? '' : appsmith.user.name == null", + "data_table.selectedRow.entity_id" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Entities_EditQuery", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c9781834e" + }, + { + "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}};", + "selfReferencingDataPaths": [], + "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}};", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818349" + }, + { + "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", + "selfReferencingDataPaths": [], + "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", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818344" + }, + { + "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;", + "selfReferencingDataPaths": [], + "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;", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1cb293c75c9781838a" + }, + { + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "Test_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, parameter from dot.test_parameters_interface;\n", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "Test_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, parameter from dot.test_parameters_interface;\n", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_Test_Parameters", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bd1a8eb293c75c97818400" + }, + { + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "Run_Fails_by_Test_Type", + "datasource": { + "name": "dot_db_local", + "pluginId": "postgres-plugin", + "messages": [], + "isAutoGenerated": false, + "id": "dot_db_local", + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Run results", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT \n tt.description as \"x\", \n CASE WHEN SUM(tr.rows_total) = 0 THEN \n\t 0 \n\t ELSE\n\t ROUND(100 * SUM(tr.rows_failed) / (1.0*SUM(tr.rows_total)),2) \n\t END as \"y\"\nFROM\n dot.configured_tests ct,\n dot.test_results_summary tr,\n dot.test_types tt,\n dot.run_log rl\nWHERE \n tr.test_id=ct.test_id AND\n tt.test_type = ct.test_type and \n rl.run_id = tr.run_id and \n\t rl.run_id = '{{appsmith.URL.queryParams.run_id}}'\ngroup by\n tt.description ", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "appsmith.URL.queryParams.run_id" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "Run_Fails_by_Test_Type", + "datasource": { + "name": "dot_db_local", + "pluginId": "postgres-plugin", + "messages": [], + "isAutoGenerated": false, + "id": "dot_db_local", + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Run results", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT \n tt.description as \"x\", \n CASE WHEN SUM(tr.rows_total) = 0 THEN \n\t 0 \n\t ELSE\n\t ROUND(100 * SUM(tr.rows_failed) / (1.0*SUM(tr.rows_total)),2) \n\t END as \"y\"\nFROM\n dot.configured_tests ct,\n dot.test_results_summary tr,\n dot.test_types tt,\n dot.run_log rl\nWHERE \n tr.test_id=ct.test_id AND\n tt.test_type = ct.test_type and \n rl.run_id = tr.run_id and \n\t rl.run_id = '{{appsmith.URL.queryParams.run_id}}'\ngroup by\n tt.description ", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "appsmith.URL.queryParams.run_id" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Run results_Run_Fails_by_Test_Type", + "deleted": false, + "gitSyncId": "62c4319bfa65ed18bbd7c88a_62c5ad3b8b0ebe338ec579bc" + }, + { + "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 const test_types = Test_Types_That_Use_Column.data.map(item => {\n return item.test_type;\n });\n return test_types.includes(test_type_in);\n}", + "selfReferencingDataPaths": [], + "jsArguments": [ + { + "name": "item" + }, + { + "name": "", + "value": ">" + }, + { + "name": "{" + }, + { + "name": "return" + }, + { + "name": "item.test_type;" + }, + { + "name": "}" + } + ], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "test_type_in => {\n const test_types = Test_Types_That_Use_Column.data.map(item => {\n return item.test_type;\n });\n return test_types.includes(test_type_in);\n}" + ], + "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 const test_types = Test_Types_That_Use_Column.data.map(item => {\n return item.test_type;\n });\n return test_types.includes(test_type_in);\n}", + "selfReferencingDataPaths": [], + "jsArguments": [ + { + "name": "item" + }, + { + "name": "", + "value": ">" + }, + { + "name": "{" + }, + { + "name": "return" + }, + { + "name": "item.test_type;" + }, + { + "name": "}" + } + ], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "test_type_in => {\n const test_types = Test_Types_That_Use_Column.data.map(item => {\n return item.test_type;\n });\n return test_types.includes(test_type_in);\n}" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_JSFunctions.testUsesColumn", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818364" + }, + { + "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_id\",\n\t\"entity_category\",\n\t\"project_id\",\n\t\"entity_definition\",\n\t\"date_added\",\n\t\"date_modified\",\n\t\"last_updated_by\")\nVALUES (\n\t'{{insert_form.formData.entity_id}}',\n\t'{{insert_form.formData.entity_category}}',\n\t'{{insert_form.formData.entity_project_id}}',\n\t'{{insert_form.formData.entity_definition}}',\n\tNOW(),\n\tNOW(),\n\t'{{appsmith.user.name == null ? '' : appsmith.user.name == null }}');", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "insert_form.formData.entity_project_id", + "insert_form.formData.entity_definition", + "appsmith.user.name == null ? '' : appsmith.user.name == null", + "insert_form.formData.entity_category", + "insert_form.formData.entity_id" + ], + "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_id\",\n\t\"entity_category\",\n\t\"project_id\",\n\t\"entity_definition\",\n\t\"date_added\",\n\t\"date_modified\",\n\t\"last_updated_by\")\nVALUES (\n\t'{{insert_form.formData.entity_id}}',\n\t'{{insert_form.formData.entity_category}}',\n\t'{{insert_form.formData.entity_project_id}}',\n\t'{{insert_form.formData.entity_definition}}',\n\tNOW(),\n\tNOW(),\n\t'{{appsmith.user.name == null ? '' : appsmith.user.name == null }}');", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "insert_form.formData.entity_project_id", + "insert_form.formData.entity_definition", + "appsmith.user.name == null ? '' : appsmith.user.name == null", + "insert_form.formData.entity_category", + "insert_form.formData.entity_id" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Entities_InsertQuery", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818343" + }, + { + "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": "Entities", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "select \n project_id as \"label\",\n project_id as \"value\"\nfrom \n dot.projects\n", + "selfReferencingDataPaths": [], + "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": "Entities", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "select \n project_id as \"label\",\n project_id as \"value\"\nfrom \n dot.projects\n", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Entities_Projects_Dropdown", + "deleted": false, + "gitSyncId": "62d47185ee678f7d50b97a55_62d849788dd06c702055913e" + }, + { + "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);", + "selfReferencingDataPaths": [], + "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);", + "selfReferencingDataPaths": [], + "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": "62bcfc1bb293c75c97818326_62bcfc1bb293c75c97818342" + }, + { + "pluginType": "JS", + "pluginId": "js-plugin", + "unpublishedAction": { + "name": "getTestParameterDescription", + "fullyQualifiedName": "JSFunctions.getTestParameterDescription", + "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_parameter_in => {\n var params = Test_Parameters_Cache.data.filter(function (el) {\n return el.parameter == test_parameter_in;\n });\n var tooltip = params.length == 0 ? ' ' : params[0].description;\n return tooltip;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [ + { + "name": "function" + }, + { + "name": "(el" + } + ], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "test_parameter_in => {\n var params = Test_Parameters_Cache.data.filter(function (el) {\n return el.parameter == test_parameter_in;\n });\n var tooltip = params.length == 0 ? ' ' : params[0].description;\n return tooltip;\n}" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "getTestParameterDescription", + "fullyQualifiedName": "JSFunctions.getTestParameterDescription", + "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_parameter_in => {\n var params = Test_Parameters_Cache.data.filter(function (el) {\n return el.parameter == test_parameter_in;\n });\n var tooltip = params.length == 0 ? ' ' : params[0].description;\n return tooltip;\n}", + "selfReferencingDataPaths": [], + "jsArguments": [ + { + "name": "function" + }, + { + "name": "(el" + } + ], + "isAsync": false + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "test_parameter_in => {\n var params = Test_Parameters_Cache.data.filter(function (el) {\n return el.parameter == test_parameter_in;\n });\n var tooltip = params.length == 0 ? ' ' : params[0].description;\n return tooltip;\n}" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_JSFunctions.getTestParameterDescription", + "deleted": false, + "gitSyncId": "62c4319bfa65ed18bbd7c88a_62c4ccb38b0ebe338ec57994" + }, + { + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "Test_Parameters_Cache", + "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 * from dot.test_parameters_interface", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "Test_Parameters_Cache", + "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 * from dot.test_parameters_interface", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": true + } + ] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_Test_Parameters_Cache", + "deleted": false, + "gitSyncId": "62c4319bfa65ed18bbd7c88a_62c4cc7e8b0ebe338ec57992" + }, + { + "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\t \"test_id\",\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) VALUES(\n\t uuid_generate_v3(uuid_ns_oid(), '123'), \n {{Edit_Add_Test_Form.formData.test_activated}},\n\t\t'{{Edit_Add_Test_Form.formData.project_id}}',\n\t\t'{{Edit_Add_Test_Form.formData.scenario_id}}',\n\t\t {{Edit_Add_Test_Form.formData.priority}},\n\t\t'{{Edit_Add_Test_Form.formData.description}}',\n\t\t'{{Edit_Add_Test_Form.formData.impact}}',\n\t\t'{{Edit_Add_Test_Form.formData.proposed_remediation}}',\n\t\t'{{Edit_Add_Test_Form.formData.entity_id}}',\n\t '{{Edit_Add_Test_Form.formData.test_type}}',\n\t '{{Edit_Add_Test_Form.formData.column_name}}',\n\t\t'{{Edit_Add_Test_Form.formData.form_test_parameters_string}}',\n\t\t'{{appsmith.user.name == null ? '' : appsmith.user.name == null }}',\n\t\t NOW(),\n\t\t NOW()) ;\n", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.description", + "Edit_Add_Test_Form.formData.scenario_id", + "Edit_Add_Test_Form.formData.impact", + "Edit_Add_Test_Form.formData.entity_id", + "Edit_Add_Test_Form.formData.priority", + "Edit_Add_Test_Form.formData.project_id", + "Edit_Add_Test_Form.formData.test_type", + "Edit_Add_Test_Form.formData.column_name", + "Edit_Add_Test_Form.formData.proposed_remediation", + "appsmith.user.name == null ? '' : appsmith.user.name == null", + "Edit_Add_Test_Form.formData.test_activated", + "Edit_Add_Test_Form.formData.form_test_parameters_string" + ], + "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\t \"test_id\",\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) VALUES(\n\t uuid_generate_v3(uuid_ns_oid(), '123'), \n {{Edit_Add_Test_Form.formData.test_activated}},\n\t\t'{{Edit_Add_Test_Form.formData.project_id}}',\n\t\t'{{Edit_Add_Test_Form.formData.scenario_id}}',\n\t\t {{Edit_Add_Test_Form.formData.priority}},\n\t\t'{{Edit_Add_Test_Form.formData.description}}',\n\t\t'{{Edit_Add_Test_Form.formData.impact}}',\n\t\t'{{Edit_Add_Test_Form.formData.proposed_remediation}}',\n\t\t'{{Edit_Add_Test_Form.formData.entity_id}}',\n\t '{{Edit_Add_Test_Form.formData.test_type}}',\n\t '{{Edit_Add_Test_Form.formData.column_name}}',\n\t\t'{{Edit_Add_Test_Form.formData.form_test_parameters_string}}',\n\t\t'{{appsmith.user.name == null ? '' : appsmith.user.name == null }}',\n\t\t NOW(),\n\t\t NOW()) ;\n", + "selfReferencingDataPaths": [], + "pluginSpecifiedTemplates": [ + { + "value": false + } + ] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [ + "Edit_Add_Test_Form.formData.description", + "Edit_Add_Test_Form.formData.scenario_id", + "Edit_Add_Test_Form.formData.impact", + "Edit_Add_Test_Form.formData.entity_id", + "Edit_Add_Test_Form.formData.priority", + "Edit_Add_Test_Form.formData.project_id", + "Edit_Add_Test_Form.formData.test_type", + "Edit_Add_Test_Form.formData.column_name", + "Edit_Add_Test_Form.formData.proposed_remediation", + "appsmith.user.name == null ? '' : appsmith.user.name == null", + "Edit_Add_Test_Form.formData.test_activated", + "Edit_Add_Test_Form.formData.form_test_parameters_string" + ], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Tests_Add_Test", + "deleted": false, + "gitSyncId": "62c4319bfa65ed18bbd7c88a_62c4e3eb8b0ebe338ec5799e" + } + ], + "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\tparamIsVisible: (test_type_in, param_in) => {\n\t\tconst params = Test_Parameters.data.map(item => { return item.test_type == test_type_in ? item.parameter : undefined;});\n\t\treturn params.includes(param_in);\n\t},\n\tgetEntityColumns: (project_id_in, entity_id_in, data_type_in) => { \n\t\t//project_id_in = 'riders';\n\t\t//entity_id_in = 'riders_all_fuel_log_data';\n\t\t//data_type_in='double precision'\n\t\t// Filter and subset\n\t\tvar columns = Entity_column_names_cache.data.filter(function (el) {\n \t\treturn (el.entity_id == entity_id_in || entity_id_in == undefined) &&\n\t\t\t\t (el.entity_id == entity_id_in || entity_id_in == undefined) &&\n\t\t\t\t (el.project_id == project_id_in || project_id_in == undefined) &&\n\t\t\t\t (el.data_type == data_type_in || data_type_in == undefined);\n\t\t}).map( ({label, value}) => ({label, value} ) );\n\t\treturn columns;\n\t},\n\tgetTestParameterDescription: (test_parameter_in) => { \n\t\t//test_parameter_in = 'values';\n\t\t// Filter \n\t\tvar params = Test_Parameters_Cache.data.filter(function (el) {\n \t\treturn el.parameter == test_parameter_in;\n\t\t});\n\t\tvar tooltip = params.length == 0 ? ' ' : params[0].description;\n\t\treturn tooltip;\n\t},\n\tgetTestParameterExample: (test_parameter_in) => { \n\t\tvar params = Test_Parameters_Cache.data.filter(function (el) {\n \t\treturn el.parameter == test_parameter_in;\n\t\t});\n\t\tvar example = params.length == 0 ? ' ' : params[0].example;\n\t\treturn example;\n\t},\n\tgetTestTypeDescription: (test_type_in) => { \n\t\t// Filter \n\t\tvar params = Test_Types_Cache.data.filter(function (el) {\n \t\treturn el.test_type == test_type_in;\n\t\t});\n\t\tvar tooltip = params.length == 0 ? ' ' : params[0].description;\n\t\treturn tooltip;\n\t}\n}", + "variables": [], + "userPermissions": [] + }, + "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\tparamIsVisible: (test_type_in, param_in) => {\n\t\tconst params = Test_Parameters.data.map(item => { return item.test_type == test_type_in ? item.parameter : undefined;});\n\t\treturn params.includes(param_in);\n\t},\n\tgetEntityColumns: (project_id_in, entity_id_in, data_type_in) => { \n\t\t//project_id_in = 'Brac';\n\t\t//entity_id_in = 'ancview_pregnancy';\n\t\t// Filter and subset\n\t\tvar columns = Entity_column_names_cache.data.filter(function (el) {\n \t\treturn (el.entity_id == entity_id_in || entity_id_in == undefined) &&\n\t\t\t\t (el.entity_id == entity_id_in || entity_id_in == undefined) &&\n\t\t\t\t (el.project_id == project_id_in || project_id_in == undefined) &&\n\t\t\t\t (el.data_type == data_type_in || data_type_in == undefined);\n\t\t}).map( ({label, value}) => ({label, value} ) );\n\t\treturn columns;\n\t},\n\tgetTestParameterDescription: (test_parameter_in) => { \n\t\t//test_parameter_in = 'values';\n\t\t// Filter \n\t\tvar params = Test_Parameters_Cache.data.filter(function (el) {\n \t\treturn el.parameter == test_parameter_in;\n\t\t});\n\t\tvar tooltip = params.length == 0 ? ' ' : params[0].description;\n\t\treturn tooltip;\n\t},\n\tgetTestParameterExample: (test_parameter_in) => { \n\t\tvar params = Test_Parameters_Cache.data.filter(function (el) {\n \t\treturn el.parameter == test_parameter_in;\n\t\t});\n\t\tvar example = params.length == 0 ? ' ' : params[0].example;\n\t\treturn example;\n\t},\n\tgetTestTypeDescription: (test_type_in) => { \n\t\t// Filter \n\t\tvar params = Test_Types_Cache.data.filter(function (el) {\n \t\treturn el.test_type == test_type_in;\n\t\t});\n\t\tvar tooltip = params.length == 0 ? ' ' : params[0].description;\n\t\treturn tooltip;\n\t}\n}", + "variables": [], + "userPermissions": [] + }, + "id": "Tests_JSFunctions", + "deleted": false, + "gitSyncId": "62bcfc1bb293c75c97818326_62bcfc1cb293c75c9781838d" + } + ], + "updatedResources": { + "actionList": [ + "JSFunctions.bulkUpdate##ENTITY_SEPARATOR##Tests", + "EditQuery##ENTITY_SEPARATOR##Entities", + "SelectQuery##ENTITY_SEPARATOR##Run log", + "Entities_dropdown_with_prefix##ENTITY_SEPARATOR##Tests", + "EditQuery##ENTITY_SEPARATOR##Projects", + "Test_parameters_sample##ENTITY_SEPARATOR##Tests", + "Test_Types_That_Use_Parameters##ENTITY_SEPARATOR##Tests", + "JSFunctions.allowUpdate##ENTITY_SEPARATOR##Tests", + "JSFunctions.getTestParameterExample##ENTITY_SEPARATOR##Tests", + "Bulk_Update_Test_Activated##ENTITY_SEPARATOR##Tests", + "InsertQuery##ENTITY_SEPARATOR##Categories", + "Delete_Test##ENTITY_SEPARATOR##Tests", + "Bulk_Delete_Tests##ENTITY_SEPARATOR##Tests", + "Entity_Categories_Dropdown##ENTITY_SEPARATOR##Entities", + "Test_Types_Cache##ENTITY_SEPARATOR##Tests", + "SelectQuery##ENTITY_SEPARATOR##Failed tests", + "DeleteQuery##ENTITY_SEPARATOR##Entities", + "Test_Parameters_Cache##ENTITY_SEPARATOR##Tests", + "DeleteQuery##ENTITY_SEPARATOR##Projects", + "Entities_dropdown_dbt_ref_fmt##ENTITY_SEPARATOR##Tests", + "Test_Parameters##ENTITY_SEPARATOR##Tests", + "JSFunctions.paramIsVisible##ENTITY_SEPARATOR##Tests", + "JSFunctions.bulkDelete##ENTITY_SEPARATOR##Tests", + "DB_Schemas_dropdown##ENTITY_SEPARATOR##Projects", + "Entities_dropdown##ENTITY_SEPARATOR##Tests", + "JSFunctions.getIds##ENTITY_SEPARATOR##Tests", + "Projects_Dropdown##ENTITY_SEPARATOR##Entities", + "Entity_column_names_cache##ENTITY_SEPARATOR##Tests", + "JSFunctions.testUsesParameters##ENTITY_SEPARATOR##Tests", + "Failed_Test_data_record##ENTITY_SEPARATOR##Failed tests", + "JSFunctions.getTestTypeDescription##ENTITY_SEPARATOR##Tests", + "SelectQuery##ENTITY_SEPARATOR##Run results", + "Test_Types_That_Use_Column##ENTITY_SEPARATOR##Tests", + "Testtypes_dropdown##ENTITY_SEPARATOR##Tests", + "JSFunctions.testUsesColumn##ENTITY_SEPARATOR##Tests", + "Run_Fails_by_Test_Type##ENTITY_SEPARATOR##Run results", + "InsertQuery##ENTITY_SEPARATOR##Entities", + "EditQuery##ENTITY_SEPARATOR##Categories", + "SelectQuery##ENTITY_SEPARATOR##Entities", + "Scenario_dropdown##ENTITY_SEPARATOR##Tests", + "Run_Fails_By_Scenario_plot##ENTITY_SEPARATOR##Run results", + "Projects_dropdown##ENTITY_SEPARATOR##Tests", + "Run_fails_by_category_plot##ENTITY_SEPARATOR##Run results", + "InsertQuery##ENTITY_SEPARATOR##Projects", + "Configured_tests_data##ENTITY_SEPARATOR##Tests", + "Add_Test##ENTITY_SEPARATOR##Tests", + "JSFunctions.getTestParameterDescription##ENTITY_SEPARATOR##Tests", + "Edit_Test##ENTITY_SEPARATOR##Tests", + "DeleteQuery##ENTITY_SEPARATOR##Categories", + "JSFunctions.getEntityColumns##ENTITY_SEPARATOR##Tests", + "SelectQuery##ENTITY_SEPARATOR##Projects", + "SelectQuery##ENTITY_SEPARATOR##Categories" + ], + "pageList": [ + "Failed tests", + "Categories", + "Projects", + "Run results", + "Run log", + "Tests", + "Entities" + ], + "actionCollectionList": [ + "JSFunctions##ENTITY_SEPARATOR##Tests" + ] + }, + "editModeTheme": { + "name": "Classic", + "displayName": "Classic", + "isSystemTheme": true, + "deleted": false + }, + "publishedTheme": { + "name": "Classic", + "displayName": "Classic", + "isSystemTheme": true, + "deleted": false + } +} diff --git a/dot/dbt/macros/test_possible_duplicate_forms.sql b/dot/dbt/macros/test_possible_duplicate_forms.sql old mode 100644 new mode 100755 index 7b06ffd..a285700 --- a/dot/dbt/macros/test_possible_duplicate_forms.sql +++ b/dot/dbt/macros/test_possible_duplicate_forms.sql @@ -1,31 +1,30 @@ --- Test to check if a patient was reported more than once in a specified period. +-- Test to check if the same group key appears more than once in a specified period. -- Input period parameter is database specific (https://hub.getdbt.com/dbt-labs/dbt_utils/0.1.13/) --- Some valid values for PostgreSQL include 'day', 'week', 'hour' +-- Some valid values for PostgreSQL include 'day', 'week', 'hour' -- (See https://www.postgresql.org/docs/9.1/functions-datetime.html#FUNCTIONS-DATETIME-TRUNC) --- If so, flag as possible duplicate form. --- TODO Convert these parameter names to generic. Be sure to update DB schema and samples -{% macro test_possible_duplicate_forms(model, table_specific_reported_date='reported', table_specific_patient_uuid='patient_uuid', table_specific_uuid='uuid', table_specific_period='hour', name='possible_duplicate_records') %} +-- If so, flag as possible duplicate records. +{% macro test_possible_duplicate_forms(model, date_column='reported', group_column='patient_uuid', id_column='uuid', period='hour', name='possible_duplicate_records') %} -with records_per_patient_period as ( +with records_per_group_period as ( select - date_trunc('{{ table_specific_period}}', {{ table_specific_reported_date }}::timestamp) as date_period, - {{ table_specific_patient_uuid }} as patient_uuid_to_flag, - count({{ table_specific_uuid }}) as number_of_records + date_trunc('{{ period}}', {{ date_column }}::timestamp) as date_period, + {{ group_column }} as group_key_to_flag, + count({{ id_column }}) as number_of_records FROM {{ model }} group by 1, 2 ), possible_duplicate_combinations as ( select * -from records_per_patient_period +from records_per_group_period where number_of_records > 1 ) -select array_agg({{ table_specific_uuid }}) as uuid_list -- postgres only? +select array_agg({{ id_column }}) as uuid_list -- postgres only? from possible_duplicate_combinations pdc left join {{ model }} m -on date_trunc('{{ table_specific_period}}', m.{{ table_specific_reported_date }}::timestamp) = pdc.date_period -and m.{{ table_specific_patient_uuid }} = pdc.patient_uuid_to_flag +on date_trunc('{{ period}}', m.{{ date_column }}::timestamp) = pdc.date_period +and m.{{ group_column }} = pdc.group_key_to_flag having count(*) > 0 {% endmacro %} diff --git a/dot/self_tests/data/expected/integration/test_results.csv b/dot/self_tests/data/expected/integration/test_results.csv old mode 100644 new mode 100755 index 33aa634..b33c48b --- a/dot/self_tests/data/expected/integration/test_results.csv +++ b/dot/self_tests/data/expected/integration/test_results.csv @@ -317,261 +317,261 @@ 315,66cfcff1-2e80-3f42-bdde-25a1f55f2534,51479924-b5ff-4efc-9ba0-97cbd021b39f,df44c2f4-65f8-3170-a03f-6035aaa45660,all_flight_data,fail,tr_dot_model__all_flight_data_not_null_origin_a,uuid,0fc748cd-ed9f-39c6-8813-268f54157770 316,ae8e8d49-afca-3eb2-bbc8-1b566d616256,51479924-b5ff-4efc-9ba0-97cbd021b39f,df44c2f4-65f8-3170-a03f-6035aaa45660,all_flight_data,fail,tr_dot_model__all_flight_data_not_null_origin_a,uuid,c1318ad4-3d01-3fcd-9f5b-1edee169b204 317,279d5fc4-cd9a-3443-b59c-6c522dab7188,51479924-b5ff-4efc-9ba0-97cbd021b39f,df44c2f4-65f8-3170-a03f-6035aaa45660,all_flight_data,fail,tr_dot_model__all_flight_data_not_null_origin_a,uuid,5f866c75-d706-38ab-8a48-5d499f156788 -318,e8798308-daad-3514-9e40-6dc0e3c9f421,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,1d33b2f1-f989-3750-992c-edd5ea204863 -319,9b4a809c-79b8-309c-b726-a60f79547700,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,fde1945d-62b2-3993-a300-f740cb2ae519 -320,b2d9b54f-dc0b-3767-8387-5b4aa9c320a9,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,081ed557-5d0d-3965-abeb-cdbfc819474e -321,dbe7ce67-0bd6-3c2f-b14e-dc6160e35616,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5b3278b4-ea9e-3a83-aec5-7c188a7a934f -322,f3c8f6ed-7b0a-37ab-ad30-79d15713885f,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,812a1927-c8ca-3f7a-90d1-d799b2b6b397 -323,798544fe-abad-3fd6-96ac-f46bfaa3d6c5,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d529362b-350f-395e-ae3d-0e9d5053d113 -324,ba69f7ee-f5b2-34fe-814a-228a5aa648bf,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,ebf40718-b9fd-3334-859c-0d27d38dc8fb -325,9975c91e-a1e2-34f1-88f9-500b9d3e62a1,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,6305a747-8440-3d17-b763-a8d99a59183a -326,580c4d9b-c113-3225-9f16-3c929f6c5610,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,bb2c583b-983f-3f06-aed0-1aa98df45edb -327,a62d3031-04c7-3912-9e5d-9f209b7d4e94,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,7cc4c932-3dab-3282-8c6a-9627c24b7322 -328,ad5740ee-4349-3f87-8d05-7b2f8ea6e5e7,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,19a888c9-2fbc-34c1-ba10-cdff38daaf4e -329,13bb8847-4c70-36aa-bc5d-6e7b3c4ba809,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,bc42be27-115d-3e32-9057-dd4d4ff89ff8 -330,9be4c37e-cfed-3299-a0ca-682e3ec59950,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,80785310-2a36-3488-90cf-68e8b5196f01 -331,4210c00e-5a51-3e29-8a41-8ddaf1e425c2,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,bb7a9739-38b1-3060-96c8-3c2902942f7c -332,5d16d43f-1543-3d92-ba90-80ba864162ec,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f4c80167-b113-310f-87b3-48149d5f2268 -333,b85510cc-e0eb-3385-beb6-a88af693b478,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5963ec20-8708-35e4-a2a4-eef1e4594b7d -334,777c744b-fcc8-3114-a585-59860772c4e5,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,94188121-c1e5-3a07-af94-82b5ab3aedcf -335,85c2a9ac-4161-3213-beb7-28c2ebfbbf69,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,6450dde3-63e7-3549-8a0f-321f6344fdda -336,d870a590-76df-32f5-b63e-952560438219,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,000ea267-ffb3-3a58-8e71-eaa3c6a0a81f -337,02032b96-7843-3256-975d-2c07c3861da7,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,561d9eb4-d0b4-3042-b988-4af1c0970c41 -338,82009859-e8f7-3a85-9d86-6fd9125279e2,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e04c091b-5219-3856-8d67-ba1553225989 -339,d5cc474b-1ed2-3d75-b90c-344d21a8fee9,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,b04f749f-b9f4-3f3a-9aa6-e9ff8adaa747 -340,40e2cb4a-91f2-3564-9098-7124bc2495bc,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d6ad326e-b57c-3ae0-9dc9-0db17b6a1b6b -341,2c629c34-65d3-37b1-a29a-ee9fd7e94c9a,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,47e66230-56f1-3ee1-a3e2-2e561fd22bf2 -342,66756068-33aa-3d05-b083-f17b28cabb72,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0cac0cda-2504-3e41-8822-51f97b077466 -343,a36ca8a4-bbc2-354e-91c4-728452b80d6a,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,799d668b-4e27-31ef-ae6a-441bf4cdf190 -344,c6d75eff-3bfe-3717-bb7e-7a40ffb8ddfa,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,313c2d21-1376-377e-be6b-6d929349d5d2 -345,46cad409-defd-3ed6-b37b-c14cc135e740,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,adf2e491-333b-3a82-8648-8195fcb4f511 -346,754bc14f-8edd-3f46-8af0-feeeea8d5aee,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d5b16037-98fd-38cb-9631-6854148f1c96 -347,090756f6-3f34-31d8-846c-5b2b0388c1f4,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,eaeb6316-c8ce-3708-802b-ca2a45136690 -348,6df4d08d-08ac-361e-8169-f93418228697,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,cdccdde7-8a5f-3970-8508-1f3e29aac00b -349,61a14273-fe5c-3d2b-b489-bfecde4f1807,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,48a649d3-88c7-31eb-99d3-3cf007967719 -350,3b88cd55-c34c-33a5-b8cb-e95b95187f09,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,dd984f51-bceb-3e05-bc0a-ab48a96b695e -351,dfd520b7-4e44-37f0-9e20-530b51b49019,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,2727ec67-c154-3502-926c-ddb2f11c03fc -352,db46d146-9f2e-3248-8a83-436f74edcfb6,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,1ba455cd-96bb-3191-898e-b5730ec8cc26 -353,fc0ad836-85dc-33d5-90f8-e11841a3cda6,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,8b66a3e7-6b88-3c04-8596-9b5cb30b8471 -354,abdffb24-df5e-35ad-9cb0-00c1cf4ae530,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,bd7f496a-3110-324c-8abd-62f570009111 -355,21d17552-d468-3def-b324-679fba8b70f7,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5bdf6d7f-d4d1-3bbd-9f4b-19f8dbbe1fad -356,678e31cf-aab4-398d-a261-aeb55b701d10,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,63850baa-c0c0-3986-af19-8bbf082503f1 -357,0da21c1c-4e60-3a9f-bd41-ed58d8e99f94,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,a5885471-d83e-3384-8a8e-78ce602eb701 -358,e4bd52b9-3992-36b6-b5ff-586c9000087b,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,72cfafbb-dcfd-3627-b949-ebbfc626ff6f -359,bdee3838-11ba-38f4-a50e-a7c945a8d079,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0608665f-0e8e-3855-9ab8-99c9db004e74 -360,397ac154-88c3-3c2e-aead-0363c61cc608,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,cb23fc0d-20c0-3d1f-8fad-5e9532384985 -361,4605613c-8e5b-374f-808d-8051fe5b7bc2,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f085c7a0-74ba-3cfa-a44a-d0c8bd3f177c -362,1563c3f8-57d9-3e64-92a1-4fd31e4ac738,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,46af3aea-5eef-332e-bd37-145bb5e7f050 -363,ee0f36fa-1574-36c7-869a-a553a80ad1df,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,cbe07d97-4b21-3518-88cb-224e0c691181 -364,ba144e00-169c-3d3c-93e6-f0579167f3ad,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,391ea306-1aed-3528-a736-2d1bc290ab5f -365,18da0cfd-757b-3cc5-8001-25a22457da2a,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,caa23d7f-e776-333a-b0f2-5c03e465f4c4 -366,79476504-c7de-3fdc-9f49-0e35be13c3e4,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,96f4c0f8-f43a-30aa-97cb-33dc60370f37 -367,d5c5801f-5f46-3ef1-a9b9-6df9d5b81fb5,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,b627d11b-06af-32b7-a3df-8c07da6eb4ad -368,b503852d-7d9d-325c-aec2-4f333eb720f0,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,619d0b59-71b8-381e-9fe4-a378d2ff85da -369,4f0c6185-574d-376c-b9e8-11431822220f,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,9eb129f6-cda3-38ad-b574-0b673920c492 -370,0c3f2863-4b69-3765-808c-d98350cba057,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,49d6198b-29b2-3d7a-a4c2-91d5c6393c5c -371,49061409-2497-3771-9d48-e93dbda5d6f4,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,1f500873-de33-3485-a8bf-882c0ccde9f5 -372,750f28c2-454e-33fb-9470-3acaecb6df0b,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,76f018a2-8ae5-3bf9-bc19-5e977e912091 -373,fc3b6464-fb1f-3d52-be96-5feca10be72d,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e87b5e11-f286-3cf5-9dfc-b8ab368f78f6 -374,1a623408-0cc6-3d14-8179-e7889917d2cc,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,8fe6a801-65f9-3766-9ef1-adb3e5878153 -375,d513e4b7-1a59-36a3-8578-ad3b532d7eb9,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,3df70dc8-154a-37ae-bc39-a9e926518c53 -376,5e4ec8c1-3ab9-3d7c-b33c-76a86c9e7b51,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,a339e029-eacf-3a2e-a7a5-343ad70574a2 -377,ed35802a-62d4-3e6b-a13d-4423f5dd28b6,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,165f48aa-6704-3186-b407-d7ba593ce182 -378,87a2c921-5acd-3dc0-882b-3f08e6f349ac,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e3fd5b9e-c0a7-3e8a-b19e-c3c618ace3ff -379,d9a1c4f9-6b38-32b2-9378-4cd7e4292326,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,bf33d1a3-54ad-337d-a2a0-0177ab1dfa8d -380,7d07b793-5515-3c15-9ad1-eb3245dc956f,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,30f506f2-352d-3c10-a8f8-a58c6b37c09c -381,2fddd328-34f4-3707-97cd-32c14eb14adb,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,04a0b9b0-af49-3cc3-8639-abcd5218dcdf -382,cc9c3fff-94e0-3941-95ad-5402b403a177,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,112c0c18-81d4-335a-9adc-4998843714e0 -383,2fed3038-3d74-3e56-8a9f-a923d5625b68,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,7f155c60-2b5b-3a13-9292-54f39e88c417 -384,9d0c05e2-d99e-3bd8-bdce-4fb45289feee,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0f6da5ea-2410-38ab-aebe-6a6739168f49 -385,e9ef32ed-f1d2-3fc7-b82d-236feeabaf91,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,87c9d88a-0693-300d-a629-b7cbee1e5323 -386,1d2bf4ad-48ca-33c4-860e-97ee22081b99,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4d6a3075-b756-3dfc-866c-97009dbe486c -387,b37773b8-6583-36b6-90ab-4552ab0bff9a,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,21bcdc1c-355c-38fc-a0fa-9c622a36c2c3 -388,60d1424a-0c5c-3619-bfb0-9bc52571204f,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,58ba6017-9256-3bfb-87b9-8910ff797157 -389,a8942a4b-d74c-391b-a348-aad35779143d,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,48a99b9f-994b-33d3-89d3-81e4cb12d861 -390,9c5b9a1e-7095-3f63-b8f4-7eedbd554696,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5b60c5de-1408-39d5-8a8b-f7113b475a8f -391,605dd5ef-438e-3776-a31a-607a1a765fc7,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,57d65fb0-28c2-38e7-96db-5c124a049222 -392,a44e4931-f040-3ff9-a2f6-e1c6e9b2a9ca,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,cfed42b0-823e-3620-83d3-8161c11139aa -393,4620cf2e-8b80-3b13-97f2-08818ebfb260,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,9891259f-73e9-399f-9ccf-f432b1f8c73f -394,d1c971ab-c0b9-38f7-ab67-867d8ca38912,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,491c0c74-fdf1-342a-a343-7b98b2c2bb7e -395,f83b248e-8829-3b42-ba4d-082704ef2266,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5ff9bd48-142e-3079-a1c8-3b2e92d3245c -396,662e8ee3-9310-3c1c-89e8-055ba020ecf1,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,fc9f60d4-3cbf-3493-918e-a01478aa91db -397,5cc6a9f2-5b93-3912-9480-13443f8b8f3b,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4cf6f84f-16b8-36b4-a5d8-715a174f353f -398,054925b9-42c1-30ab-943b-c87873c3f81e,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0dd5df34-52bb-38a5-be09-0df2dbe8af7a -399,a6489555-c5dd-301e-9ba3-1954d44e8bba,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4e2d463a-2d65-35ec-aa00-10cdea99d393 -400,5607a5a2-1fcc-3f67-8152-8d6ea77b7696,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,7c13f0cc-ab37-34b1-879d-743056e8a208 -401,560db444-3f32-39d9-8065-380d76b262d9,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,213d0f7f-bad8-3e0b-b8d4-2cba301019e9 -402,49a9b6ea-de1d-3824-be07-9a06a0349f25,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,55dcb907-95d0-3066-91a0-38b4ae80b732 -403,cba67a78-bf16-3e11-8b90-9c964f001f16,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f75b3f9f-a7ee-3c0b-b107-e836a40c0efd -404,f8cf8eac-7795-38f0-a052-eb084be670a4,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,3f929601-a594-3a77-919f-039c6ef544ef -405,bfb9b75d-596e-3e16-a6fb-29f171b80f68,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,171d5c4e-c9f7-3238-a47a-aec24f4545e1 -406,bc72b70c-3ce6-39d9-ab22-30c913822157,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,a4c531c0-f21c-3c92-9bfd-b39fa260ff8d -407,38e7b6cb-50c7-3938-8f7a-98023a55a02a,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,feffa9d9-076a-3b9d-abe5-2475b23d88f2 -408,5d241b90-5b6c-3d05-9166-dbfdb79223db,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,09007c9b-46ba-3248-b095-10e166f862db -409,51c0a6d7-9ac2-3754-a0c2-c42e938ab053,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,603a152e-04f5-394f-ad0d-c35845ade55c -410,89f752a6-ef8b-35d0-bad8-f5a81a05da83,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d5a83da7-2016-342a-9a25-e18ea2989fc9 -411,b332cfe0-2ea0-358f-807d-a168cd4b9258,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,607dbdd7-7272-3d37-8ca1-1f15b37b126a -412,3b6b3d79-9d2a-30d6-a040-993cad8158f0,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0f56c04c-dc63-3632-91c4-02f02e3e4a64 -413,3c009800-569a-3c19-a02d-a5988766923f,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e138aa0b-0d8d-3809-9fde-4c27bf9e5855 -414,aeb3a6ed-8423-350c-975f-eaed69a45581,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,bd0be8f3-a4c5-3bea-83f6-a2d46a9bad65 -415,012ad3eb-148b-3c1c-bac4-1e74e1f91d95,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c24826dc-6a56-3e19-b3ed-5a796a8ce88a -416,9061fb76-3b40-36fc-b9d8-17b55fa7f67f,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,138c4201-a2b2-3d85-ae31-97fab4fa04b4 -417,0f080171-03aa-3c0d-965d-bf92e0b569cf,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,41bbfe37-1d8f-3c43-85dd-eaa2d463acbd -418,b557e786-d1d2-35f1-87f8-73aff08ade7c,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,25e9bdbb-a5f9-3e4f-8458-bbfe8970cbab -419,35db7ae2-827e-32fd-86bb-ecbb68ba995e,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,02614b8a-1512-3b5f-9169-1a3c9afd5ea8 -420,123b3418-7c13-340d-ab21-193e28c34a9e,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,27199a4b-7e92-3de9-bd1a-b4d1c6db0ef7 -421,db1449b2-26aa-3329-b3c0-d108ba1c6512,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,66602228-79de-3719-a4b7-2cb5bfedb349 -422,aedcc8be-18ea-3a13-b068-a02c946e2e8d,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,NULL -423,e05d36fd-b138-38a4-a483-86a1733d1763,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e67ae2d2-a4b4-3bb0-a9e5-a8db8c4da08b -424,4aedee3c-6b2e-3996-8f84-33f373f3a455,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,2b60fcd8-ce1f-3687-8167-c488bd68ab23 -425,6a87d56b-00f1-3826-9630-2c51ac36ca0c,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,19735284-19b1-373d-ab6a-d04a87556f9f -426,a11af14e-ca3c-328b-8688-4312ac663780,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,98712f1b-a725-3968-8af0-6a7276075744 -427,33f70f7a-d64d-390b-b57b-deb9c41f8a3e,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0a194fec-f928-3b0f-aaca-90f9a1bc6e62 -428,ed910c50-5f4a-3886-8f79-e1977345a87d,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,89497188-ec76-31bb-8b31-3d678d9b29e6 -429,ddfe6ad7-3a2b-3b93-aa53-7d79779f2b72,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,7fc56c79-1e86-3d3b-bb3b-f3d51858d67a -430,4e3a6875-2a22-31d9-8f77-77aefdd3c022,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,850783c3-8f98-3822-af2c-746c5cfe19b3 -431,a3e9368f-b1b0-3c0b-ae1e-20e1c771ed65,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,59ad2ad1-7a0b-3837-978d-ff2658ff77cd -432,55b113cd-908d-3132-9744-5452f9fccf86,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,6b98fc94-65e3-391f-abed-e4da2bc5aa2b -433,f13d75b3-0223-34cb-9208-b1994a475e43,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5b4ec4fe-37c8-3bd9-b3b8-8750b3c86255 -434,41683f8b-e570-3082-92c8-42766f53bdd5,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0fbf028a-116b-3913-a4f1-a90d02f0d0cf -435,a8b8bab9-a71d-3a2a-8a67-d393d83104ac,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,104c7dec-cd9e-385f-acad-bd69012da521 -436,b45ec8af-2f07-364c-b78e-4524106eb374,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,9b105901-f4bf-384e-ac90-d17306cecd5a -437,757edb3d-0b09-3186-b5e9-903c0a2421df,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,058088c2-1791-31ea-b183-054ebd528132 -438,6210f6f6-a60e-30dc-ab43-b74d7773c27b,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,697a5428-fd0b-365e-92c5-6eb5ee0def06 -439,07276602-f091-3a0a-97c0-423e4f4d1908,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,39a02112-9601-3618-9eb8-23542f5ea86a -440,4a866d7d-e831-37a1-bf17-8518bfa31d72,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c81f4e11-d051-3816-858c-75133b0f8905 -441,88c5c421-c377-3971-b073-f48f18b027e9,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,2d879b3a-f227-3eb7-943d-f1a96592afd4 -442,ce6639a6-4e5a-3b43-9005-a7ea57b7e207,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e8702419-33d0-3b37-9650-d61807b8f733 -443,fe9ab036-9a86-3b0e-bba8-3dbdcf4df768,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,09ffe548-fa0a-33d5-aea7-38c6e28a3400 -444,f7cb06fc-fa62-3ca2-9bbe-687c2bb01040,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,78e9aacf-cf7b-38ed-af29-ed5eb7751f59 -445,51135a47-c45f-3896-94f8-1e8559af6816,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,7c24a1fb-0650-30ba-a25d-7163995174f6 -446,a1c28828-2959-325e-a7e1-586932874218,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,671008ac-1b72-33e2-89fd-5be491e976d3 -447,4275a3e7-0c94-30fd-8529-4a4aef5a2205,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,ccc9dba1-de5c-31c7-b4c8-7007aca3e1e3 -448,9da3e8aa-eb5a-3db7-b343-c38e3c52b521,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,a2fb76b4-8738-3eed-a6a3-1c8a60033a59 -449,fbb52f53-0c09-31f2-a415-6c954c5be0e4,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,91191eb9-c763-3878-96a1-09287f85af60 -450,5d679da3-15fe-3af9-acc6-1c467da87ef5,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0b3150b1-2761-3407-b0bc-cb82a027632c -451,cc089e1a-9b42-3551-82cf-e3fc63c15c1e,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,9e14848b-a046-367d-b36b-ed4ef0d70935 -452,12594048-9fd4-3335-8f2d-71a92f8c84e8,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,49494b78-8617-3225-b5d0-bfc5cecff50b -453,f54de1f3-c3a1-33ab-b72a-aff43d3d11a1,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,a72af405-39a4-30bb-bd76-9c7ffe525291 -454,394e625e-1c3d-3b88-a283-f3deac0337e8,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,04c739e0-13ea-3c8f-9e65-38eeafcca330 -455,8effbaa9-8b38-3db0-874c-f27c00a78362,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,cd729559-04ce-322c-9919-894ee5c1f30f -456,95778f2e-f40d-350c-993a-42625a1ae453,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,09d13f85-8ee4-39b9-9541-d3b261f7e0b6 -457,12312948-8baa-33c3-adf3-62e3c4bd4f82,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,6f4b6d8c-41c8-33b9-a6bc-71d629c5bd0b -458,1aa0648a-405c-3f1f-a78d-2b8f81d361d9,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,619b2bcf-596f-313d-a9c4-7ef240a21e62 -459,bd7fafcc-d567-3456-bd1c-eaa0bb7a1f42,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5fd4fe2e-ca0c-3b3f-b88c-93f8f589fbae -460,6a812a84-992d-3656-96d8-21891be24229,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,8eaa27e0-9b90-35d7-8bc0-e3ad750ccaa3 -461,edafd0ee-2719-38c0-9ec3-a3f3f4014cb8,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,ccb1a746-cb19-30da-9b68-52008f530a0d -462,49dfb7fb-6e67-3b6c-8f10-3ee33d93ff9a,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5ef0d847-9158-371f-b98b-089933021bf7 -463,180fa0d3-b9e5-3514-9027-171994df8cfe,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,9074997b-f1f2-3efa-8354-64ecfbce502f -464,9a4f922a-2732-3b0c-a0c6-445ee4c5fdf9,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4f938f1d-2e82-342b-a418-509abcb52cec -465,fa6ce63d-ce95-3232-ba6b-c5703a22e1ce,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0ccf1c29-10e4-3a30-ade2-70e65aa1029f -466,aae3d3c5-787b-3417-ba9e-070f3dadfaef,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,867bf69b-69d6-3701-b1f4-db8c24a047b0 -467,5c8a1e79-6553-3e47-b3a3-57aec8fcf734,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,049f9c81-6a39-35d4-bd78-410343e5e64d -468,291a62de-8298-32e2-a843-f1e6ef97110a,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d428cf7c-9856-3a0e-adc1-81862616270f -469,01c90a46-e36a-3534-813e-5fd4d2d6a221,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f9ff6e4b-038f-3a4d-b484-d42fa8d980f2 -470,4e113b8c-3314-36ce-a59b-343efd6e9e75,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,6be2fc2a-3e9c-35fc-b234-7818184fab77 -471,e5a3a9d7-d17d-3ed5-99b1-25573101fc8b,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,b4f0f013-664f-3008-92ca-e7660c82af83 -472,936fa536-6a1e-3303-aaa9-1ec5bf58a596,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c51882b5-23e8-344b-a959-5f8d562f4d60 -473,35948c92-a3de-3238-aa98-a67579af3329,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,ea648d86-69d6-39fe-80e8-bdb7b804cdc2 -474,8070521e-1ac9-301f-b5c1-7c341cce4d74,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f6106895-99bc-3852-a3f0-8336acecc986 -475,78ac490b-103d-34cb-b5af-6f05168e757d,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,15c817f8-0e72-37a2-8c02-fb519619a427 -476,90d9fbed-3995-3d15-a72f-3f37cbc824a7,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d386dbd1-32c6-386e-8294-fbcfec0a65fe -477,10e510fc-c33e-301a-a53d-7a7f0e86652c,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d9665ead-03bf-32f9-9c76-2b03573ef747 -478,642700b1-75a5-3996-bd2f-1352ff1b5b39,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,40df8734-60af-3dd7-95b2-65c72673cb5a -479,f03c4c42-5e4b-3ad8-acb0-8c7cb1a674bd,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,16e405cb-ecd8-3d9b-884b-027d0120438f -480,e5adf700-09d8-36c8-bea4-a20476c50185,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f770486b-e031-3d46-af15-2e9d1c7991c9 -481,5738df52-f4e1-35e6-aa27-93d8e58f092f,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,caeab9fc-d4b2-34be-adc5-0869a36b6850 -482,f9aee36f-7a7f-35ba-bef6-4eac19d9cfbb,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,401fb2c6-943d-3a77-b77c-933f7d4fe5b3 -483,19d3d7c0-3914-35b2-9573-1807a6fba76c,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,57afced5-00ab-30da-9e43-ba36dce3f40d -484,21a18852-8728-3dd6-8322-fc14640f78a6,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,6c2f5a38-38f6-37d0-95dd-b99230fe61ad -485,ccb79ae6-dd6d-31c6-941e-cf96713f45ec,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,86aca429-beb6-3764-b152-dd56c4de6c6a -486,805588a0-b645-3680-9770-ee44effa69cd,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f4b21aa0-19e5-38fe-9fc2-d99e897cfcf2 -487,7375c910-d11c-377e-b3ec-19221b596ddd,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,1ec1cae0-63f2-3a56-93f6-6d053f89dc8e -488,c53e149b-b3da-3754-bf02-8c147f90a662,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,63e641db-165f-3c1c-9e9f-87fe4bdc281d -489,232d5c1a-ae69-3933-b597-ea9bb9badc9b,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f6227d0d-b910-35f8-9c6c-79b5cc3e7bc6 -490,d6e8c088-044e-349b-8992-3b60bba7867a,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,8881aed8-3002-3506-83ca-d5102b76146a -491,aaef456b-0279-3485-8fd5-dfa59462f7cc,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,2ceab1e0-b66a-37c5-8949-2d9ec81f8fc4 -492,560c0eb3-7528-399e-901a-aa74cd3e4338,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4cb8b02a-d85d-3936-90e2-3ca743ee64f1 -493,e8f5cb03-95e3-3acf-b23f-ec0b4a738013,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,6d7246da-96a9-3159-b34a-f0dd117d8b5e -494,51e5d0a8-3908-3aa8-91b7-fb1db20c115e,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,37390e55-1539-355b-945f-6e4a7869a925 -495,795453ca-c05a-3731-b205-2dd42fe7b3ae,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,13a9c973-6584-3382-a2db-8c61b1f92457 -496,46f61d4f-8c26-3545-a0f7-850f296c4c87,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,dc10f603-c859-3138-9181-c850b48326e7 -497,5ffbb96d-b763-3599-a2ff-6dacb6972cf5,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,00aaf95b-1059-311c-99bb-8dfce1334a98 -498,a85cc2cb-fb77-3a1b-9cce-f60aa6acab86,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,93911e49-ad99-31bc-b504-6e5a61d2291d -499,eec1e33c-17bb-37ad-b81b-a5b27e03e48f,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c662bbe8-47b1-37ef-91ef-a7d866a63165 -500,6698b8d7-33c2-3a49-b9b1-7016b458142d,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,a1bffe87-584f-32ad-9b3f-db44101eff62 -501,1c7c68bf-6630-3347-87c5-de1063cc46ea,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4745f62a-ccc8-3a44-91fb-fe0dc0e6ab86 -502,f3b9c8b7-3c07-3e4a-a965-bbf01b4c6d5c,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,056e1db9-af4d-3a4f-a1c8-b3788afadc6f -503,5e5723c5-e3c8-376d-939f-0fa63560b5f0,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,8fbdc4b5-f082-366d-b2e6-a9d1408571d7 -504,be50e78f-b648-36a5-b704-2b7f2accf752,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,933fffec-e921-38ef-bfaa-6a8ab69acbde -505,c635b524-1239-30d2-a506-a72f2c4ec277,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c1d252a8-abb7-3daa-b565-708ee3fb206f -506,af533b14-7228-3744-9044-a90a9d03de21,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,a68f2080-efcd-31b9-9678-e2e05d26e80d -507,12662653-a288-3e54-a707-1c0116457c4b,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,1d9f0f5e-77bd-3ac1-9e88-1159f56455d8 -508,08acb3e0-891b-3f6e-8b8b-ebf1d26da822,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d30d2b9e-b0fb-33f0-bfd7-a24286590ef1 -509,e1694275-8b70-30f2-ac86-5cb57e413fa4,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f7df3263-941b-3271-b238-a176dacf3a98 -510,0dc5bdd3-7377-3b9b-b2d0-37fdf86acc1d,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,fa8a11a6-79ab-307b-bede-81cbff179e46 -511,2a21977a-4c3e-34a2-8d59-99400fb55135,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,82a8fe19-dfd3-3afa-9501-bfa547fb42a5 -512,d9abd1ae-fd24-3263-a0cd-81702852156c,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5f866c75-d706-38ab-8a48-5d499f156788 -513,c8ec4acd-3a66-3dd4-b26b-297016bc7681,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4e0c8c0e-a391-3ac6-a174-04d755f02758 -514,0fd1f168-7ce7-35ae-9dff-50ea5bceb51c,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c1318ad4-3d01-3fcd-9f5b-1edee169b204 -515,e73bceb9-489a-344c-9190-c54972bcaa34,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,79ec2312-95ad-3640-ad02-76a2ae3c0670 -516,5d0316de-d747-3927-b030-e3bf206ec094,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,bcb006f4-1443-3800-98a1-1ff9ecfb02f3 -517,bfeea94f-204f-38c9-b0f2-13230d48f719,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d11256c2-d313-3d23-9e01-b39f88bc6fff -518,cfa05f8f-f7c7-3e62-9bba-25fcd3b9aecf,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,a344769e-648a-3bfe-9b49-1a5631a397ab -519,79162dda-323b-3185-9a2e-20dc5f875514,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,8b731225-436f-3b9a-8e7f-3a1451693017 -520,9e7d51df-3dd8-3f28-96a1-3d2fd550161f,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,b32f9606-2ac6-31c5-a8a5-3ab77aeb9e6d -521,70206234-77ec-38c2-9619-50e940a2c449,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d4808674-fa21-3435-ae1e-02eac6b9ea80 -522,ee047671-ef60-39e4-8a9a-7e6bab3c04cb,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4f63d533-d533-3971-bb24-00a37d9c6501 -523,54a65edb-d4ad-368e-ad08-deee3efb6c00,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,9ba6d07f-f356-30d1-807f-d6b676a65326 -524,388ec8d4-caad-317f-93e1-057f743d5393,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,6a9204be-da0f-3e6e-a725-94f3121c0b35 -525,2d9b2fbc-3ccf-3f25-a6e2-54755771381b,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,71463b36-c04e-357d-b48f-d62031db5a1c -526,b5b09c7d-bcd9-3763-b079-8cbc1d87e15d,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c913189a-80fb-3861-b612-134b35ee1d0d -527,c8c6fd54-cc90-32ed-b601-02348658da58,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,588bd20a-ef35-3d30-bdc7-69632496f8f1 -528,65ff3e22-8fae-3662-9b22-61e8ea06b1c5,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,02476dff-9bcc-3443-8b2e-4ff74d748591 -529,9574d45c-86bc-3546-ac31-a5c26c692fff,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,731a9b69-9d45-392d-aecf-415953d0e6b0 -530,119ee832-5c7f-3d4b-ad98-767ae3c4751f,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e8d1b2d9-faf9-3961-be60-0798d8b426a5 -531,e72a6f8e-1cf5-3a46-aef9-a3b256746a73,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,de0b6b88-9a0d-3d96-8b10-e9f974e5d984 -532,0ded5a64-da19-3e3c-9a0c-7fe5f86f89e5,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4e60bc5e-af92-3724-b8e3-09584400edc4 -533,d5ae7b4c-8991-39cd-82ec-c8ab2d92df8a,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,1ff582c2-8a83-3452-9bce-0cc70965b32b -534,0c0bac4d-23ef-3e77-a016-4c5251ff0a77,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e062b734-1f0b-365a-98da-37e37dfa060c -535,8a51ad4d-71e2-31ba-aa5b-8719ef3e7555,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,be3b749d-6c88-397e-b5fd-bea1c2141961 -536,46cea67d-a5a0-3f1a-8cba-03f8b20b9a8d,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,2a638131-9f91-3cec-855d-ca05ce5e41e1 -537,d01511e6-e24b-3b66-a3d0-a6f313a6535d,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,683eb142-9c74-33d4-850a-3f00b81445c1 -538,b0711eea-ca70-3ac2-a61c-5c852083d69a,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,62845cd2-9493-3d38-bc24-94c3ef959595 -539,7f7102b3-35be-3ff0-9532-852bb74b4f7b,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d983e6d0-1272-38a3-a7cb-d0e30d1c8a27 -540,e2f9e7c2-c8d0-3c40-b124-77ad673c44bf,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,22c51b55-8cce-3ec1-8e46-b008f49a409d -541,3d591e71-73f5-38db-96f5-3c47bba9e4de,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,db534b49-de93-3ab8-8fca-43afc2eb20b9 -542,f15392c7-1812-38ad-8bbc-1ad232362837,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e7431fec-cbb7-3217-aee5-7bcdb8ac9384 -543,a7cb0498-c4bc-3491-a3f8-bb2c84c08eff,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,b8f56384-2fc7-3e1b-af66-6b9944fbbf44 -544,f1cf271a-cd0d-3953-95de-16664af294c3,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,bf9e582c-517a-3aef-86f5-8118c9a5976f -545,4b362e8e-8c6a-3833-8775-308ff594f0ac,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,3c50d14e-cd2a-3fc1-9e38-8f51e8ec2a01 -546,402e9b75-020b-3ede-a84a-493f0a4489ab,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,024d3ff5-c6ce-36a3-b305-e1dd83d18aaf -547,a8e883a3-093f-3a51-a618-d01cf4c17d49,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0ca86e1a-787c-3f27-b595-d3aa86875b28 -548,9d9ece87-b628-3505-b377-52aa55e69a44,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,b8f07e3c-4887-357b-b261-a341558c1107 -549,d990ad2c-0d06-361d-bce7-ad300e5ad520,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0ec0b48c-9342-301a-a062-71e24f936ac2 -550,3b3f7b35-499c-3906-ab15-ceea17ad7527,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c8fa0acc-ec75-3521-bef3-23d8cbd819e8 -551,0330be9c-3276-3ea8-9f8e-c2ae8b08f71f,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,447d8c8a-690b-3ae8-927e-b6fba8c49f3f -552,12ae9c4f-5403-3b69-8afe-b8b2328af72b,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,24767986-02a2-3be9-891b-a9b6a34f04d5 -553,9dc38161-9773-3eb0-a1d7-78308131a8e1,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f065b5ab-4a1b-3aac-b951-b033955ffe45 -554,fffcc777-e3bb-33e2-b6a3-6a4c65c0fbb2,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,85e6f020-7eb4-33ba-917b-8806a6bf3b4e -555,10bebadf-bc99-30b7-b87c-02a57b5727b4,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,2d0a4521-eb09-3611-a0d9-3f28a0efde6f -556,7fc45cf8-8748-3112-96c6-79c448aed6b4,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c15b2bd3-9c27-3edf-8e72-0b4368ee1594 -557,47ee6407-43c1-309c-b509-fb21a66e1b11,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,47c7c6c9-6a3d-33ec-9a53-a3d55de3a589 -558,400cd67a-113d-3515-8cd7-91b345036a1b,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,afef3961-482b-3ca9-87a3-ea80bdb88eca -559,c9981700-5b50-37c6-8049-fa21247c5b2f,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f542d6ed-7fa7-3d86-b054-8dacf1a73406 -560,6e3e0b2c-58c7-3c3e-81e3-9db2a1500d3b,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c18528df-ffa5-305f-bc3e-fb64fff4c4cd -561,dc88d862-cca0-3d2e-a2ba-9a5880942531,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d5f38df1-7f68-35c5-903b-035d08427220 -562,0ed550bf-2502-34bd-a62b-64c877c15854,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,23c616d0-b4b9-3704-83ed-dab1f7288908 -563,438ac37e-e260-38ff-951f-1fb041971d59,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,64ddcdbb-a1c7-3d9a-a54a-33778be51754 -564,7ca626c0-b3b0-3881-a935-ed62e9ef7b0e,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,09e4ffa2-1462-3806-8a72-319819bd29ec -565,4d299727-8762-33c2-a9d4-bff485b166b5,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,56f8a586-1679-329c-a45a-6cf61b198135 -566,6c6e7f6b-ad69-3c83-a076-9c6f781dc12c,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,253451bf-b9ee-336c-8631-65386a54f3fe -567,df2a4108-e2b5-32fd-a696-fca1416dcbd5,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,35d50994-240a-3522-8f41-07ecb9d63360 -568,a98ce156-7a5b-34f0-8a28-292a95806518,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f98eee80-50be-3f0b-b190-401b3293ccf3 -569,ce78e121-c49e-3074-a3ee-96c3a1a07cad,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,026a4052-eb39-3da4-abda-dea252a3da8e -570,45e0c997-1767-3b20-aefd-626984aba96d,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c46c44f2-9701-39a9-8604-a19fa835a101 -571,f46f5bef-1f43-30c9-b81d-db1ca84122ff,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c1a219cb-37fa-37ed-9e3d-0b61caabbef8 -572,f7775a62-1fc5-3893-9eb6-2a1cad72093a,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4ba1f890-2d10-32b8-ab49-242462825472 +318,e8798308-daad-3514-9e40-6dc0e3c9f421,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,1d33b2f1-f989-3750-992c-edd5ea204863 +319,9b4a809c-79b8-309c-b726-a60f79547700,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,fde1945d-62b2-3993-a300-f740cb2ae519 +320,b2d9b54f-dc0b-3767-8387-5b4aa9c320a9,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,081ed557-5d0d-3965-abeb-cdbfc819474e +321,dbe7ce67-0bd6-3c2f-b14e-dc6160e35616,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5b3278b4-ea9e-3a83-aec5-7c188a7a934f +322,f3c8f6ed-7b0a-37ab-ad30-79d15713885f,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,812a1927-c8ca-3f7a-90d1-d799b2b6b397 +323,798544fe-abad-3fd6-96ac-f46bfaa3d6c5,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d529362b-350f-395e-ae3d-0e9d5053d113 +324,ba69f7ee-f5b2-34fe-814a-228a5aa648bf,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,ebf40718-b9fd-3334-859c-0d27d38dc8fb +325,9975c91e-a1e2-34f1-88f9-500b9d3e62a1,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,6305a747-8440-3d17-b763-a8d99a59183a +326,580c4d9b-c113-3225-9f16-3c929f6c5610,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,bb2c583b-983f-3f06-aed0-1aa98df45edb +327,a62d3031-04c7-3912-9e5d-9f209b7d4e94,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,7cc4c932-3dab-3282-8c6a-9627c24b7322 +328,ad5740ee-4349-3f87-8d05-7b2f8ea6e5e7,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,19a888c9-2fbc-34c1-ba10-cdff38daaf4e +329,13bb8847-4c70-36aa-bc5d-6e7b3c4ba809,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,bc42be27-115d-3e32-9057-dd4d4ff89ff8 +330,9be4c37e-cfed-3299-a0ca-682e3ec59950,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,80785310-2a36-3488-90cf-68e8b5196f01 +331,4210c00e-5a51-3e29-8a41-8ddaf1e425c2,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,bb7a9739-38b1-3060-96c8-3c2902942f7c +332,5d16d43f-1543-3d92-ba90-80ba864162ec,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f4c80167-b113-310f-87b3-48149d5f2268 +333,b85510cc-e0eb-3385-beb6-a88af693b478,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5963ec20-8708-35e4-a2a4-eef1e4594b7d +334,777c744b-fcc8-3114-a585-59860772c4e5,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,94188121-c1e5-3a07-af94-82b5ab3aedcf +335,85c2a9ac-4161-3213-beb7-28c2ebfbbf69,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,6450dde3-63e7-3549-8a0f-321f6344fdda +336,d870a590-76df-32f5-b63e-952560438219,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,000ea267-ffb3-3a58-8e71-eaa3c6a0a81f +337,02032b96-7843-3256-975d-2c07c3861da7,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,561d9eb4-d0b4-3042-b988-4af1c0970c41 +338,82009859-e8f7-3a85-9d86-6fd9125279e2,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e04c091b-5219-3856-8d67-ba1553225989 +339,d5cc474b-1ed2-3d75-b90c-344d21a8fee9,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,b04f749f-b9f4-3f3a-9aa6-e9ff8adaa747 +340,40e2cb4a-91f2-3564-9098-7124bc2495bc,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d6ad326e-b57c-3ae0-9dc9-0db17b6a1b6b +341,2c629c34-65d3-37b1-a29a-ee9fd7e94c9a,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,47e66230-56f1-3ee1-a3e2-2e561fd22bf2 +342,66756068-33aa-3d05-b083-f17b28cabb72,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0cac0cda-2504-3e41-8822-51f97b077466 +343,a36ca8a4-bbc2-354e-91c4-728452b80d6a,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,799d668b-4e27-31ef-ae6a-441bf4cdf190 +344,c6d75eff-3bfe-3717-bb7e-7a40ffb8ddfa,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,313c2d21-1376-377e-be6b-6d929349d5d2 +345,46cad409-defd-3ed6-b37b-c14cc135e740,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,adf2e491-333b-3a82-8648-8195fcb4f511 +346,754bc14f-8edd-3f46-8af0-feeeea8d5aee,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d5b16037-98fd-38cb-9631-6854148f1c96 +347,090756f6-3f34-31d8-846c-5b2b0388c1f4,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,eaeb6316-c8ce-3708-802b-ca2a45136690 +348,6df4d08d-08ac-361e-8169-f93418228697,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,cdccdde7-8a5f-3970-8508-1f3e29aac00b +349,61a14273-fe5c-3d2b-b489-bfecde4f1807,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,48a649d3-88c7-31eb-99d3-3cf007967719 +350,3b88cd55-c34c-33a5-b8cb-e95b95187f09,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,dd984f51-bceb-3e05-bc0a-ab48a96b695e +351,dfd520b7-4e44-37f0-9e20-530b51b49019,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,2727ec67-c154-3502-926c-ddb2f11c03fc +352,db46d146-9f2e-3248-8a83-436f74edcfb6,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,1ba455cd-96bb-3191-898e-b5730ec8cc26 +353,fc0ad836-85dc-33d5-90f8-e11841a3cda6,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,8b66a3e7-6b88-3c04-8596-9b5cb30b8471 +354,abdffb24-df5e-35ad-9cb0-00c1cf4ae530,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,bd7f496a-3110-324c-8abd-62f570009111 +355,21d17552-d468-3def-b324-679fba8b70f7,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5bdf6d7f-d4d1-3bbd-9f4b-19f8dbbe1fad +356,678e31cf-aab4-398d-a261-aeb55b701d10,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,63850baa-c0c0-3986-af19-8bbf082503f1 +357,0da21c1c-4e60-3a9f-bd41-ed58d8e99f94,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,a5885471-d83e-3384-8a8e-78ce602eb701 +358,e4bd52b9-3992-36b6-b5ff-586c9000087b,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,72cfafbb-dcfd-3627-b949-ebbfc626ff6f +359,bdee3838-11ba-38f4-a50e-a7c945a8d079,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0608665f-0e8e-3855-9ab8-99c9db004e74 +360,397ac154-88c3-3c2e-aead-0363c61cc608,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,cb23fc0d-20c0-3d1f-8fad-5e9532384985 +361,4605613c-8e5b-374f-808d-8051fe5b7bc2,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f085c7a0-74ba-3cfa-a44a-d0c8bd3f177c +362,1563c3f8-57d9-3e64-92a1-4fd31e4ac738,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,46af3aea-5eef-332e-bd37-145bb5e7f050 +363,ee0f36fa-1574-36c7-869a-a553a80ad1df,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,cbe07d97-4b21-3518-88cb-224e0c691181 +364,ba144e00-169c-3d3c-93e6-f0579167f3ad,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,391ea306-1aed-3528-a736-2d1bc290ab5f +365,18da0cfd-757b-3cc5-8001-25a22457da2a,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,caa23d7f-e776-333a-b0f2-5c03e465f4c4 +366,79476504-c7de-3fdc-9f49-0e35be13c3e4,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,96f4c0f8-f43a-30aa-97cb-33dc60370f37 +367,d5c5801f-5f46-3ef1-a9b9-6df9d5b81fb5,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,b627d11b-06af-32b7-a3df-8c07da6eb4ad +368,b503852d-7d9d-325c-aec2-4f333eb720f0,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,619d0b59-71b8-381e-9fe4-a378d2ff85da +369,4f0c6185-574d-376c-b9e8-11431822220f,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,9eb129f6-cda3-38ad-b574-0b673920c492 +370,0c3f2863-4b69-3765-808c-d98350cba057,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,49d6198b-29b2-3d7a-a4c2-91d5c6393c5c +371,49061409-2497-3771-9d48-e93dbda5d6f4,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,1f500873-de33-3485-a8bf-882c0ccde9f5 +372,750f28c2-454e-33fb-9470-3acaecb6df0b,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,76f018a2-8ae5-3bf9-bc19-5e977e912091 +373,fc3b6464-fb1f-3d52-be96-5feca10be72d,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e87b5e11-f286-3cf5-9dfc-b8ab368f78f6 +374,1a623408-0cc6-3d14-8179-e7889917d2cc,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,8fe6a801-65f9-3766-9ef1-adb3e5878153 +375,d513e4b7-1a59-36a3-8578-ad3b532d7eb9,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,3df70dc8-154a-37ae-bc39-a9e926518c53 +376,5e4ec8c1-3ab9-3d7c-b33c-76a86c9e7b51,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,a339e029-eacf-3a2e-a7a5-343ad70574a2 +377,ed35802a-62d4-3e6b-a13d-4423f5dd28b6,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,165f48aa-6704-3186-b407-d7ba593ce182 +378,87a2c921-5acd-3dc0-882b-3f08e6f349ac,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e3fd5b9e-c0a7-3e8a-b19e-c3c618ace3ff +379,d9a1c4f9-6b38-32b2-9378-4cd7e4292326,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,bf33d1a3-54ad-337d-a2a0-0177ab1dfa8d +380,7d07b793-5515-3c15-9ad1-eb3245dc956f,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,30f506f2-352d-3c10-a8f8-a58c6b37c09c +381,2fddd328-34f4-3707-97cd-32c14eb14adb,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,04a0b9b0-af49-3cc3-8639-abcd5218dcdf +382,cc9c3fff-94e0-3941-95ad-5402b403a177,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,112c0c18-81d4-335a-9adc-4998843714e0 +383,2fed3038-3d74-3e56-8a9f-a923d5625b68,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,7f155c60-2b5b-3a13-9292-54f39e88c417 +384,9d0c05e2-d99e-3bd8-bdce-4fb45289feee,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0f6da5ea-2410-38ab-aebe-6a6739168f49 +385,e9ef32ed-f1d2-3fc7-b82d-236feeabaf91,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,87c9d88a-0693-300d-a629-b7cbee1e5323 +386,1d2bf4ad-48ca-33c4-860e-97ee22081b99,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4d6a3075-b756-3dfc-866c-97009dbe486c +387,b37773b8-6583-36b6-90ab-4552ab0bff9a,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,21bcdc1c-355c-38fc-a0fa-9c622a36c2c3 +388,60d1424a-0c5c-3619-bfb0-9bc52571204f,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,58ba6017-9256-3bfb-87b9-8910ff797157 +389,a8942a4b-d74c-391b-a348-aad35779143d,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,48a99b9f-994b-33d3-89d3-81e4cb12d861 +390,9c5b9a1e-7095-3f63-b8f4-7eedbd554696,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5b60c5de-1408-39d5-8a8b-f7113b475a8f +391,605dd5ef-438e-3776-a31a-607a1a765fc7,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,57d65fb0-28c2-38e7-96db-5c124a049222 +392,a44e4931-f040-3ff9-a2f6-e1c6e9b2a9ca,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,cfed42b0-823e-3620-83d3-8161c11139aa +393,4620cf2e-8b80-3b13-97f2-08818ebfb260,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,9891259f-73e9-399f-9ccf-f432b1f8c73f +394,d1c971ab-c0b9-38f7-ab67-867d8ca38912,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,491c0c74-fdf1-342a-a343-7b98b2c2bb7e +395,f83b248e-8829-3b42-ba4d-082704ef2266,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5ff9bd48-142e-3079-a1c8-3b2e92d3245c +396,662e8ee3-9310-3c1c-89e8-055ba020ecf1,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,fc9f60d4-3cbf-3493-918e-a01478aa91db +397,5cc6a9f2-5b93-3912-9480-13443f8b8f3b,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4cf6f84f-16b8-36b4-a5d8-715a174f353f +398,054925b9-42c1-30ab-943b-c87873c3f81e,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0dd5df34-52bb-38a5-be09-0df2dbe8af7a +399,a6489555-c5dd-301e-9ba3-1954d44e8bba,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4e2d463a-2d65-35ec-aa00-10cdea99d393 +400,5607a5a2-1fcc-3f67-8152-8d6ea77b7696,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,7c13f0cc-ab37-34b1-879d-743056e8a208 +401,560db444-3f32-39d9-8065-380d76b262d9,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,213d0f7f-bad8-3e0b-b8d4-2cba301019e9 +402,49a9b6ea-de1d-3824-be07-9a06a0349f25,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,55dcb907-95d0-3066-91a0-38b4ae80b732 +403,cba67a78-bf16-3e11-8b90-9c964f001f16,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f75b3f9f-a7ee-3c0b-b107-e836a40c0efd +404,f8cf8eac-7795-38f0-a052-eb084be670a4,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,3f929601-a594-3a77-919f-039c6ef544ef +405,bfb9b75d-596e-3e16-a6fb-29f171b80f68,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,171d5c4e-c9f7-3238-a47a-aec24f4545e1 +406,bc72b70c-3ce6-39d9-ab22-30c913822157,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,a4c531c0-f21c-3c92-9bfd-b39fa260ff8d +407,38e7b6cb-50c7-3938-8f7a-98023a55a02a,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,feffa9d9-076a-3b9d-abe5-2475b23d88f2 +408,5d241b90-5b6c-3d05-9166-dbfdb79223db,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,09007c9b-46ba-3248-b095-10e166f862db +409,51c0a6d7-9ac2-3754-a0c2-c42e938ab053,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,603a152e-04f5-394f-ad0d-c35845ade55c +410,89f752a6-ef8b-35d0-bad8-f5a81a05da83,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d5a83da7-2016-342a-9a25-e18ea2989fc9 +411,b332cfe0-2ea0-358f-807d-a168cd4b9258,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,607dbdd7-7272-3d37-8ca1-1f15b37b126a +412,3b6b3d79-9d2a-30d6-a040-993cad8158f0,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0f56c04c-dc63-3632-91c4-02f02e3e4a64 +413,3c009800-569a-3c19-a02d-a5988766923f,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e138aa0b-0d8d-3809-9fde-4c27bf9e5855 +414,aeb3a6ed-8423-350c-975f-eaed69a45581,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,bd0be8f3-a4c5-3bea-83f6-a2d46a9bad65 +415,012ad3eb-148b-3c1c-bac4-1e74e1f91d95,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c24826dc-6a56-3e19-b3ed-5a796a8ce88a +416,9061fb76-3b40-36fc-b9d8-17b55fa7f67f,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,138c4201-a2b2-3d85-ae31-97fab4fa04b4 +417,0f080171-03aa-3c0d-965d-bf92e0b569cf,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,41bbfe37-1d8f-3c43-85dd-eaa2d463acbd +418,b557e786-d1d2-35f1-87f8-73aff08ade7c,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,25e9bdbb-a5f9-3e4f-8458-bbfe8970cbab +419,35db7ae2-827e-32fd-86bb-ecbb68ba995e,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,02614b8a-1512-3b5f-9169-1a3c9afd5ea8 +420,123b3418-7c13-340d-ab21-193e28c34a9e,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,27199a4b-7e92-3de9-bd1a-b4d1c6db0ef7 +421,db1449b2-26aa-3329-b3c0-d108ba1c6512,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,66602228-79de-3719-a4b7-2cb5bfedb349 +422,aedcc8be-18ea-3a13-b068-a02c946e2e8d,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,NULL +423,e05d36fd-b138-38a4-a483-86a1733d1763,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e67ae2d2-a4b4-3bb0-a9e5-a8db8c4da08b +424,4aedee3c-6b2e-3996-8f84-33f373f3a455,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,2b60fcd8-ce1f-3687-8167-c488bd68ab23 +425,6a87d56b-00f1-3826-9630-2c51ac36ca0c,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,19735284-19b1-373d-ab6a-d04a87556f9f +426,a11af14e-ca3c-328b-8688-4312ac663780,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,98712f1b-a725-3968-8af0-6a7276075744 +427,33f70f7a-d64d-390b-b57b-deb9c41f8a3e,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0a194fec-f928-3b0f-aaca-90f9a1bc6e62 +428,ed910c50-5f4a-3886-8f79-e1977345a87d,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,89497188-ec76-31bb-8b31-3d678d9b29e6 +429,ddfe6ad7-3a2b-3b93-aa53-7d79779f2b72,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,7fc56c79-1e86-3d3b-bb3b-f3d51858d67a +430,4e3a6875-2a22-31d9-8f77-77aefdd3c022,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,850783c3-8f98-3822-af2c-746c5cfe19b3 +431,a3e9368f-b1b0-3c0b-ae1e-20e1c771ed65,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,59ad2ad1-7a0b-3837-978d-ff2658ff77cd +432,55b113cd-908d-3132-9744-5452f9fccf86,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,6b98fc94-65e3-391f-abed-e4da2bc5aa2b +433,f13d75b3-0223-34cb-9208-b1994a475e43,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5b4ec4fe-37c8-3bd9-b3b8-8750b3c86255 +434,41683f8b-e570-3082-92c8-42766f53bdd5,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0fbf028a-116b-3913-a4f1-a90d02f0d0cf +435,a8b8bab9-a71d-3a2a-8a67-d393d83104ac,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,104c7dec-cd9e-385f-acad-bd69012da521 +436,b45ec8af-2f07-364c-b78e-4524106eb374,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,9b105901-f4bf-384e-ac90-d17306cecd5a +437,757edb3d-0b09-3186-b5e9-903c0a2421df,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,058088c2-1791-31ea-b183-054ebd528132 +438,6210f6f6-a60e-30dc-ab43-b74d7773c27b,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,697a5428-fd0b-365e-92c5-6eb5ee0def06 +439,07276602-f091-3a0a-97c0-423e4f4d1908,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,39a02112-9601-3618-9eb8-23542f5ea86a +440,4a866d7d-e831-37a1-bf17-8518bfa31d72,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c81f4e11-d051-3816-858c-75133b0f8905 +441,88c5c421-c377-3971-b073-f48f18b027e9,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,2d879b3a-f227-3eb7-943d-f1a96592afd4 +442,ce6639a6-4e5a-3b43-9005-a7ea57b7e207,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e8702419-33d0-3b37-9650-d61807b8f733 +443,fe9ab036-9a86-3b0e-bba8-3dbdcf4df768,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,09ffe548-fa0a-33d5-aea7-38c6e28a3400 +444,f7cb06fc-fa62-3ca2-9bbe-687c2bb01040,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,78e9aacf-cf7b-38ed-af29-ed5eb7751f59 +445,51135a47-c45f-3896-94f8-1e8559af6816,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,7c24a1fb-0650-30ba-a25d-7163995174f6 +446,a1c28828-2959-325e-a7e1-586932874218,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,671008ac-1b72-33e2-89fd-5be491e976d3 +447,4275a3e7-0c94-30fd-8529-4a4aef5a2205,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,ccc9dba1-de5c-31c7-b4c8-7007aca3e1e3 +448,9da3e8aa-eb5a-3db7-b343-c38e3c52b521,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,a2fb76b4-8738-3eed-a6a3-1c8a60033a59 +449,fbb52f53-0c09-31f2-a415-6c954c5be0e4,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,91191eb9-c763-3878-96a1-09287f85af60 +450,5d679da3-15fe-3af9-acc6-1c467da87ef5,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0b3150b1-2761-3407-b0bc-cb82a027632c +451,cc089e1a-9b42-3551-82cf-e3fc63c15c1e,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,9e14848b-a046-367d-b36b-ed4ef0d70935 +452,12594048-9fd4-3335-8f2d-71a92f8c84e8,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,49494b78-8617-3225-b5d0-bfc5cecff50b +453,f54de1f3-c3a1-33ab-b72a-aff43d3d11a1,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,a72af405-39a4-30bb-bd76-9c7ffe525291 +454,394e625e-1c3d-3b88-a283-f3deac0337e8,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,04c739e0-13ea-3c8f-9e65-38eeafcca330 +455,8effbaa9-8b38-3db0-874c-f27c00a78362,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,cd729559-04ce-322c-9919-894ee5c1f30f +456,95778f2e-f40d-350c-993a-42625a1ae453,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,09d13f85-8ee4-39b9-9541-d3b261f7e0b6 +457,12312948-8baa-33c3-adf3-62e3c4bd4f82,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,6f4b6d8c-41c8-33b9-a6bc-71d629c5bd0b +458,1aa0648a-405c-3f1f-a78d-2b8f81d361d9,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,619b2bcf-596f-313d-a9c4-7ef240a21e62 +459,bd7fafcc-d567-3456-bd1c-eaa0bb7a1f42,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5fd4fe2e-ca0c-3b3f-b88c-93f8f589fbae +460,6a812a84-992d-3656-96d8-21891be24229,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,8eaa27e0-9b90-35d7-8bc0-e3ad750ccaa3 +461,edafd0ee-2719-38c0-9ec3-a3f3f4014cb8,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,ccb1a746-cb19-30da-9b68-52008f530a0d +462,49dfb7fb-6e67-3b6c-8f10-3ee33d93ff9a,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5ef0d847-9158-371f-b98b-089933021bf7 +463,180fa0d3-b9e5-3514-9027-171994df8cfe,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,9074997b-f1f2-3efa-8354-64ecfbce502f +464,9a4f922a-2732-3b0c-a0c6-445ee4c5fdf9,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4f938f1d-2e82-342b-a418-509abcb52cec +465,fa6ce63d-ce95-3232-ba6b-c5703a22e1ce,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0ccf1c29-10e4-3a30-ade2-70e65aa1029f +466,aae3d3c5-787b-3417-ba9e-070f3dadfaef,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,867bf69b-69d6-3701-b1f4-db8c24a047b0 +467,5c8a1e79-6553-3e47-b3a3-57aec8fcf734,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,049f9c81-6a39-35d4-bd78-410343e5e64d +468,291a62de-8298-32e2-a843-f1e6ef97110a,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d428cf7c-9856-3a0e-adc1-81862616270f +469,01c90a46-e36a-3534-813e-5fd4d2d6a221,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f9ff6e4b-038f-3a4d-b484-d42fa8d980f2 +470,4e113b8c-3314-36ce-a59b-343efd6e9e75,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,6be2fc2a-3e9c-35fc-b234-7818184fab77 +471,e5a3a9d7-d17d-3ed5-99b1-25573101fc8b,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,b4f0f013-664f-3008-92ca-e7660c82af83 +472,936fa536-6a1e-3303-aaa9-1ec5bf58a596,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c51882b5-23e8-344b-a959-5f8d562f4d60 +473,35948c92-a3de-3238-aa98-a67579af3329,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,ea648d86-69d6-39fe-80e8-bdb7b804cdc2 +474,8070521e-1ac9-301f-b5c1-7c341cce4d74,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f6106895-99bc-3852-a3f0-8336acecc986 +475,78ac490b-103d-34cb-b5af-6f05168e757d,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,15c817f8-0e72-37a2-8c02-fb519619a427 +476,90d9fbed-3995-3d15-a72f-3f37cbc824a7,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d386dbd1-32c6-386e-8294-fbcfec0a65fe +477,10e510fc-c33e-301a-a53d-7a7f0e86652c,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d9665ead-03bf-32f9-9c76-2b03573ef747 +478,642700b1-75a5-3996-bd2f-1352ff1b5b39,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,40df8734-60af-3dd7-95b2-65c72673cb5a +479,f03c4c42-5e4b-3ad8-acb0-8c7cb1a674bd,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,16e405cb-ecd8-3d9b-884b-027d0120438f +480,e5adf700-09d8-36c8-bea4-a20476c50185,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f770486b-e031-3d46-af15-2e9d1c7991c9 +481,5738df52-f4e1-35e6-aa27-93d8e58f092f,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,caeab9fc-d4b2-34be-adc5-0869a36b6850 +482,f9aee36f-7a7f-35ba-bef6-4eac19d9cfbb,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,401fb2c6-943d-3a77-b77c-933f7d4fe5b3 +483,19d3d7c0-3914-35b2-9573-1807a6fba76c,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,57afced5-00ab-30da-9e43-ba36dce3f40d +484,21a18852-8728-3dd6-8322-fc14640f78a6,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,6c2f5a38-38f6-37d0-95dd-b99230fe61ad +485,ccb79ae6-dd6d-31c6-941e-cf96713f45ec,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,86aca429-beb6-3764-b152-dd56c4de6c6a +486,805588a0-b645-3680-9770-ee44effa69cd,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f4b21aa0-19e5-38fe-9fc2-d99e897cfcf2 +487,7375c910-d11c-377e-b3ec-19221b596ddd,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,1ec1cae0-63f2-3a56-93f6-6d053f89dc8e +488,c53e149b-b3da-3754-bf02-8c147f90a662,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,63e641db-165f-3c1c-9e9f-87fe4bdc281d +489,232d5c1a-ae69-3933-b597-ea9bb9badc9b,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f6227d0d-b910-35f8-9c6c-79b5cc3e7bc6 +490,d6e8c088-044e-349b-8992-3b60bba7867a,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,8881aed8-3002-3506-83ca-d5102b76146a +491,aaef456b-0279-3485-8fd5-dfa59462f7cc,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,2ceab1e0-b66a-37c5-8949-2d9ec81f8fc4 +492,560c0eb3-7528-399e-901a-aa74cd3e4338,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4cb8b02a-d85d-3936-90e2-3ca743ee64f1 +493,e8f5cb03-95e3-3acf-b23f-ec0b4a738013,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,6d7246da-96a9-3159-b34a-f0dd117d8b5e +494,51e5d0a8-3908-3aa8-91b7-fb1db20c115e,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,37390e55-1539-355b-945f-6e4a7869a925 +495,795453ca-c05a-3731-b205-2dd42fe7b3ae,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,13a9c973-6584-3382-a2db-8c61b1f92457 +496,46f61d4f-8c26-3545-a0f7-850f296c4c87,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,dc10f603-c859-3138-9181-c850b48326e7 +497,5ffbb96d-b763-3599-a2ff-6dacb6972cf5,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,00aaf95b-1059-311c-99bb-8dfce1334a98 +498,a85cc2cb-fb77-3a1b-9cce-f60aa6acab86,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,93911e49-ad99-31bc-b504-6e5a61d2291d +499,eec1e33c-17bb-37ad-b81b-a5b27e03e48f,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c662bbe8-47b1-37ef-91ef-a7d866a63165 +500,6698b8d7-33c2-3a49-b9b1-7016b458142d,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,a1bffe87-584f-32ad-9b3f-db44101eff62 +501,1c7c68bf-6630-3347-87c5-de1063cc46ea,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4745f62a-ccc8-3a44-91fb-fe0dc0e6ab86 +502,f3b9c8b7-3c07-3e4a-a965-bbf01b4c6d5c,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,056e1db9-af4d-3a4f-a1c8-b3788afadc6f +503,5e5723c5-e3c8-376d-939f-0fa63560b5f0,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,8fbdc4b5-f082-366d-b2e6-a9d1408571d7 +504,be50e78f-b648-36a5-b704-2b7f2accf752,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,933fffec-e921-38ef-bfaa-6a8ab69acbde +505,c635b524-1239-30d2-a506-a72f2c4ec277,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c1d252a8-abb7-3daa-b565-708ee3fb206f +506,af533b14-7228-3744-9044-a90a9d03de21,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,a68f2080-efcd-31b9-9678-e2e05d26e80d +507,12662653-a288-3e54-a707-1c0116457c4b,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,1d9f0f5e-77bd-3ac1-9e88-1159f56455d8 +508,08acb3e0-891b-3f6e-8b8b-ebf1d26da822,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d30d2b9e-b0fb-33f0-bfd7-a24286590ef1 +509,e1694275-8b70-30f2-ac86-5cb57e413fa4,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f7df3263-941b-3271-b238-a176dacf3a98 +510,0dc5bdd3-7377-3b9b-b2d0-37fdf86acc1d,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,fa8a11a6-79ab-307b-bede-81cbff179e46 +511,2a21977a-4c3e-34a2-8d59-99400fb55135,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,82a8fe19-dfd3-3afa-9501-bfa547fb42a5 +512,d9abd1ae-fd24-3263-a0cd-81702852156c,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,5f866c75-d706-38ab-8a48-5d499f156788 +513,c8ec4acd-3a66-3dd4-b26b-297016bc7681,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4e0c8c0e-a391-3ac6-a174-04d755f02758 +514,0fd1f168-7ce7-35ae-9dff-50ea5bceb51c,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c1318ad4-3d01-3fcd-9f5b-1edee169b204 +515,e73bceb9-489a-344c-9190-c54972bcaa34,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,79ec2312-95ad-3640-ad02-76a2ae3c0670 +516,5d0316de-d747-3927-b030-e3bf206ec094,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,bcb006f4-1443-3800-98a1-1ff9ecfb02f3 +517,bfeea94f-204f-38c9-b0f2-13230d48f719,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d11256c2-d313-3d23-9e01-b39f88bc6fff +518,cfa05f8f-f7c7-3e62-9bba-25fcd3b9aecf,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,a344769e-648a-3bfe-9b49-1a5631a397ab +519,79162dda-323b-3185-9a2e-20dc5f875514,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,8b731225-436f-3b9a-8e7f-3a1451693017 +520,9e7d51df-3dd8-3f28-96a1-3d2fd550161f,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,b32f9606-2ac6-31c5-a8a5-3ab77aeb9e6d +521,70206234-77ec-38c2-9619-50e940a2c449,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d4808674-fa21-3435-ae1e-02eac6b9ea80 +522,ee047671-ef60-39e4-8a9a-7e6bab3c04cb,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4f63d533-d533-3971-bb24-00a37d9c6501 +523,54a65edb-d4ad-368e-ad08-deee3efb6c00,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,9ba6d07f-f356-30d1-807f-d6b676a65326 +524,388ec8d4-caad-317f-93e1-057f743d5393,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,6a9204be-da0f-3e6e-a725-94f3121c0b35 +525,2d9b2fbc-3ccf-3f25-a6e2-54755771381b,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,71463b36-c04e-357d-b48f-d62031db5a1c +526,b5b09c7d-bcd9-3763-b079-8cbc1d87e15d,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c913189a-80fb-3861-b612-134b35ee1d0d +527,c8c6fd54-cc90-32ed-b601-02348658da58,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,588bd20a-ef35-3d30-bdc7-69632496f8f1 +528,65ff3e22-8fae-3662-9b22-61e8ea06b1c5,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,02476dff-9bcc-3443-8b2e-4ff74d748591 +529,9574d45c-86bc-3546-ac31-a5c26c692fff,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,731a9b69-9d45-392d-aecf-415953d0e6b0 +530,119ee832-5c7f-3d4b-ad98-767ae3c4751f,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e8d1b2d9-faf9-3961-be60-0798d8b426a5 +531,e72a6f8e-1cf5-3a46-aef9-a3b256746a73,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,de0b6b88-9a0d-3d96-8b10-e9f974e5d984 +532,0ded5a64-da19-3e3c-9a0c-7fe5f86f89e5,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4e60bc5e-af92-3724-b8e3-09584400edc4 +533,d5ae7b4c-8991-39cd-82ec-c8ab2d92df8a,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,1ff582c2-8a83-3452-9bce-0cc70965b32b +534,0c0bac4d-23ef-3e77-a016-4c5251ff0a77,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e062b734-1f0b-365a-98da-37e37dfa060c +535,8a51ad4d-71e2-31ba-aa5b-8719ef3e7555,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,be3b749d-6c88-397e-b5fd-bea1c2141961 +536,46cea67d-a5a0-3f1a-8cba-03f8b20b9a8d,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,2a638131-9f91-3cec-855d-ca05ce5e41e1 +537,d01511e6-e24b-3b66-a3d0-a6f313a6535d,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,683eb142-9c74-33d4-850a-3f00b81445c1 +538,b0711eea-ca70-3ac2-a61c-5c852083d69a,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,62845cd2-9493-3d38-bc24-94c3ef959595 +539,7f7102b3-35be-3ff0-9532-852bb74b4f7b,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d983e6d0-1272-38a3-a7cb-d0e30d1c8a27 +540,e2f9e7c2-c8d0-3c40-b124-77ad673c44bf,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,22c51b55-8cce-3ec1-8e46-b008f49a409d +541,3d591e71-73f5-38db-96f5-3c47bba9e4de,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,db534b49-de93-3ab8-8fca-43afc2eb20b9 +542,f15392c7-1812-38ad-8bbc-1ad232362837,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,e7431fec-cbb7-3217-aee5-7bcdb8ac9384 +543,a7cb0498-c4bc-3491-a3f8-bb2c84c08eff,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,b8f56384-2fc7-3e1b-af66-6b9944fbbf44 +544,f1cf271a-cd0d-3953-95de-16664af294c3,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,bf9e582c-517a-3aef-86f5-8118c9a5976f +545,4b362e8e-8c6a-3833-8775-308ff594f0ac,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,3c50d14e-cd2a-3fc1-9e38-8f51e8ec2a01 +546,402e9b75-020b-3ede-a84a-493f0a4489ab,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,024d3ff5-c6ce-36a3-b305-e1dd83d18aaf +547,a8e883a3-093f-3a51-a618-d01cf4c17d49,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0ca86e1a-787c-3f27-b595-d3aa86875b28 +548,9d9ece87-b628-3505-b377-52aa55e69a44,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,b8f07e3c-4887-357b-b261-a341558c1107 +549,d990ad2c-0d06-361d-bce7-ad300e5ad520,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,0ec0b48c-9342-301a-a062-71e24f936ac2 +550,3b3f7b35-499c-3906-ab15-ceea17ad7527,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c8fa0acc-ec75-3521-bef3-23d8cbd819e8 +551,0330be9c-3276-3ea8-9f8e-c2ae8b08f71f,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,447d8c8a-690b-3ae8-927e-b6fba8c49f3f +552,12ae9c4f-5403-3b69-8afe-b8b2328af72b,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,24767986-02a2-3be9-891b-a9b6a34f04d5 +553,9dc38161-9773-3eb0-a1d7-78308131a8e1,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f065b5ab-4a1b-3aac-b951-b033955ffe45 +554,fffcc777-e3bb-33e2-b6a3-6a4c65c0fbb2,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,85e6f020-7eb4-33ba-917b-8806a6bf3b4e +555,10bebadf-bc99-30b7-b87c-02a57b5727b4,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,2d0a4521-eb09-3611-a0d9-3f28a0efde6f +556,7fc45cf8-8748-3112-96c6-79c448aed6b4,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c15b2bd3-9c27-3edf-8e72-0b4368ee1594 +557,47ee6407-43c1-309c-b509-fb21a66e1b11,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,47c7c6c9-6a3d-33ec-9a53-a3d55de3a589 +558,400cd67a-113d-3515-8cd7-91b345036a1b,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,afef3961-482b-3ca9-87a3-ea80bdb88eca +559,c9981700-5b50-37c6-8049-fa21247c5b2f,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f542d6ed-7fa7-3d86-b054-8dacf1a73406 +560,6e3e0b2c-58c7-3c3e-81e3-9db2a1500d3b,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c18528df-ffa5-305f-bc3e-fb64fff4c4cd +561,dc88d862-cca0-3d2e-a2ba-9a5880942531,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,d5f38df1-7f68-35c5-903b-035d08427220 +562,0ed550bf-2502-34bd-a62b-64c877c15854,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,23c616d0-b4b9-3704-83ed-dab1f7288908 +563,438ac37e-e260-38ff-951f-1fb041971d59,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,64ddcdbb-a1c7-3d9a-a54a-33778be51754 +564,7ca626c0-b3b0-3881-a935-ed62e9ef7b0e,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,09e4ffa2-1462-3806-8a72-319819bd29ec +565,4d299727-8762-33c2-a9d4-bff485b166b5,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,56f8a586-1679-329c-a45a-6cf61b198135 +566,6c6e7f6b-ad69-3c83-a076-9c6f781dc12c,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,253451bf-b9ee-336c-8631-65386a54f3fe +567,df2a4108-e2b5-32fd-a696-fca1416dcbd5,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,35d50994-240a-3522-8f41-07ecb9d63360 +568,a98ce156-7a5b-34f0-8a28-292a95806518,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,f98eee80-50be-3f0b-b190-401b3293ccf3 +569,ce78e121-c49e-3074-a3ee-96c3a1a07cad,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,026a4052-eb39-3da4-abda-dea252a3da8e +570,45e0c997-1767-3b20-aefd-626984aba96d,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c46c44f2-9701-39a9-8604-a19fa835a101 +571,f46f5bef-1f43-30c9-b81d-db1ca84122ff,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,c1a219cb-37fa-37ed-9e3d-0b61caabbef8 +572,f7775a62-1fc5-3893-9eb6-2a1cad72093a,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,fail,tr_dot_model__all_flight_data_possible_duplicate_f,uuid,4ba1f890-2d10-32b8-ab49-242462825472 573,8c4f7edc-191e-30a2-ba66-c9c49c80d62b,51479924-b5ff-4efc-9ba0-97cbd021b39f,2ba7f3e8-cd62-37ac-854f-01f704489130,all_flight_data,fail,tr_dot_model__all_flight_data_flight_with_no_a,uuid,e7431fec-cbb7-3217-aee5-7bcdb8ac9384 574,dc8e8548-14db-3126-aaf0-25a94fca1e5c,51479924-b5ff-4efc-9ba0-97cbd021b39f,2ba7f3e8-cd62-37ac-854f-01f704489130,all_flight_data,fail,tr_dot_model__all_flight_data_flight_with_no_a,uuid,a589ea84-4e66-37e8-a187-746810c10d2c 575,f9dc79e3-bebf-3ceb-a2f8-794833c60fc9,51479924-b5ff-4efc-9ba0-97cbd021b39f,2ba7f3e8-cd62-37ac-854f-01f704489130,all_flight_data,fail,tr_dot_model__all_flight_data_flight_with_no_a,uuid,c37def2e-a3d5-34df-863a-5672159c213a diff --git a/dot/self_tests/data/expected/integration/test_results_summary.csv b/dot/self_tests/data/expected/integration/test_results_summary.csv old mode 100644 new mode 100755 index 4090ea4..5f2e7dd --- a/dot/self_tests/data/expected/integration/test_results_summary.csv +++ b/dot/self_tests/data/expected/integration/test_results_summary.csv @@ -60,22 +60,22 @@ dot_model__all_flight_data.price FROM self_tests_public_tests.dot_model__all_flight_data WHERE dot_model__all_flight_data.origin_airport IS NULL;",1001,53,948 -5,51479924-b5ff-4efc-9ba0-97cbd021b39f,59b7fabd-acb8-3a38-8cbf-91736a214cab,all_flight_data,possible_duplicate_forms,,"{'table_specific_uuid': 'uuid', 'table_specific_period': 'day', 'table_specific_patient_uuid': 'airline', 'table_specific_reported_date': 'departure_time'}",fail,"got 1 result, configured to fail if != 0",tr_dot_model__all_flight_data_possible_duplicate_f," WITH records_per_patient_period AS ( +5,51479924-b5ff-4efc-9ba0-97cbd021b39f,b36e2d54-2d43-36de-8c07-74e14c8a2aee,all_flight_data,possible_duplicate_forms,,"{'period': 'day', 'id_column': 'uuid', 'date_column': 'departure_time', 'group_column': 'airline'}",fail,"got 1 result, configured to fail if != 0",tr_dot_model__all_flight_data_possible_duplicate_f," WITH records_per_group_period AS ( SELECT date_trunc('day'::text, dot_model__all_flight_data.departure_time::timestamp without time zone) AS date_period, - dot_model__all_flight_data.airline AS patient_uuid_to_flag, + dot_model__all_flight_data.airline AS group_key_to_flag, count(dot_model__all_flight_data.uuid) AS number_of_records FROM self_tests_public_tests.dot_model__all_flight_data GROUP BY (date_trunc('day'::text, dot_model__all_flight_data.departure_time::timestamp without time zone)), dot_model__all_flight_data.airline ), possible_duplicate_combinations AS ( - SELECT records_per_patient_period.date_period, - records_per_patient_period.patient_uuid_to_flag, - records_per_patient_period.number_of_records - FROM records_per_patient_period - WHERE records_per_patient_period.number_of_records > 1 + SELECT records_per_group_period.date_period, + records_per_group_period.group_key_to_flag, + records_per_group_period.number_of_records + FROM records_per_group_period + WHERE records_per_group_period.number_of_records > 1 ) SELECT array_agg(m.uuid) AS uuid_list FROM possible_duplicate_combinations pdc - LEFT JOIN self_tests_public_tests.dot_model__all_flight_data m ON date_trunc('day'::text, m.departure_time::timestamp without time zone) = pdc.date_period AND m.airline::text = pdc.patient_uuid_to_flag::text + LEFT JOIN self_tests_public_tests.dot_model__all_flight_data m ON date_trunc('day'::text, m.departure_time::timestamp without time zone) = pdc.date_period AND m.airline::text = pdc.group_key_to_flag::text HAVING count(*) > 0;",1001,274,727 6,51479924-b5ff-4efc-9ba0-97cbd021b39f,2ba7f3e8-cd62-37ac-854f-01f704489130,all_flight_data,relationships,origin_airport,"{'to': ""ref('dot_model__all_airports_data')"", 'name': 'flight_with_no_airport', 'field': 'airport'}",fail,"got 1 result, configured to fail if != 0",tr_dot_model__all_flight_data_flight_with_no_a," SELECT array_agg(from_model.from_uuid) AS uuid_list FROM ( SELECT dot_model__all_flight_data.uuid AS from_uuid, diff --git a/dot/self_tests/unit/test_dot_utils.py b/dot/self_tests/unit/test_dot_utils.py old mode 100644 new mode 100755 index 2b3664f..ccee3c2 --- a/dot/self_tests/unit/test_dot_utils.py +++ b/dot/self_tests/unit/test_dot_utils.py @@ -147,9 +147,9 @@ def test_possible_duplicate_forms_test_malformed( "'adc007dd-2407-3dc2-95a7-002067e741f9'," "'possible_duplicate_forms', '', ''," """$${ - 'table_specific_uuid': 'uuid', - 'table_specific_patient_uuid': 'patient_id', - 'table_specific_reported_date': 'delivery_date', + 'id_column': 'uuid', + 'group_column': 'patient_id', + 'date_column': 'delivery_date', }$$ ,""" "'2021-12-23 19:00:00.000 -0500'," @@ -200,10 +200,10 @@ def test_get_configured_tests_row_reference_error( project_id="ScanProject1", test_parameters=""" { - 'table_specific_uuid': 'uuid', - 'table_specific_period': 'day', - 'table_specific_patient_uuid': 'patient_id', - 'table_specific_reported_date': 'delivery_date', + 'id_column': 'uuid', + 'period': 'day', + 'group_column': 'patient_id', + 'date_column': 'delivery_date', } """, ) diff --git a/dot/self_tests/unit/test_entity_id_normalize.py b/dot/self_tests/unit/test_entity_id_normalize.py new file mode 100644 index 0000000..7ab802a --- /dev/null +++ b/dot/self_tests/unit/test_entity_id_normalize.py @@ -0,0 +1,144 @@ +"""Tests for bare entity_id normalization in test_parameters.""" + +# Test method names already describe behavior; keep assertions uncluttered. +# pylint: disable=missing-function-docstring + +from utils.configuration_utils import ( + prepare_test_parameters, + to_bare_entity_id, + to_dbt_ref, + to_dbt_table, +) + + +class TestToBareEntityId: + """to_bare_entity_id accepts bare, prefixed, and ref() forms.""" + + def test_bare_id(self): + assert to_bare_entity_id("all_airports_data") == "all_airports_data" + + def test_prefixed_table(self): + assert to_bare_entity_id("dot_model__all_airports_data") == "all_airports_data" + + def test_dbt_ref_single_quotes(self): + assert ( + to_bare_entity_id("ref('dot_model__all_airports_data')") + == "all_airports_data" + ) + + def test_dbt_ref_double_quotes(self): + assert ( + to_bare_entity_id('ref("dot_model__all_airports_data")') + == "all_airports_data" + ) + + def test_empty_and_none(self): + assert to_bare_entity_id(None) is None + assert to_bare_entity_id("") is None + assert to_bare_entity_id(" ") is None + + +class TestToDbtFormats: + """Wrap bare/legacy values into DBT artifact forms.""" + + def test_to_dbt_ref_from_bare(self): + assert to_dbt_ref("all_airports_data") == "ref('dot_model__all_airports_data')" + + def test_to_dbt_ref_from_legacy_ref(self): + assert ( + to_dbt_ref("ref('dot_model__all_airports_data')") + == "ref('dot_model__all_airports_data')" + ) + + def test_to_dbt_table_from_bare(self): + assert to_dbt_table("all_flight_data") == "dot_model__all_flight_data" + + def test_to_dbt_table_from_prefixed(self): + assert ( + to_dbt_table("dot_model__all_flight_data") == "dot_model__all_flight_data" + ) + + +class TestPrepareTestParameters: + """prepare_test_parameters adapts keys and entity formats per test type.""" + + def test_relationships_bare_to(self): + result = prepare_test_parameters( + "relationships", + {"to": "all_airports_data", "field": "airport", "name": "x"}, + ) + assert result["to"] == "ref('dot_model__all_airports_data')" + assert result["field"] == "airport" + + def test_relationships_legacy_ref_to(self): + result = prepare_test_parameters( + "relationships", + { + "to": "ref('dot_model__all_airports_data')", + "field": "airport", + }, + ) + assert result["to"] == "ref('dot_model__all_airports_data')" + + def test_relationships_reference_alias(self): + result = prepare_test_parameters( + "relationships", + {"reference": "ancview_pregnancy", "field": "uuid"}, + ) + assert "reference" not in result + assert result["to"] == "ref('dot_model__ancview_pregnancy')" + + def test_expect_similar_means_bare_data_table(self): + result = prepare_test_parameters( + "expect_similar_means_across_reporters", + { + "key": "airline", + "data_table": "all_flight_data", + "target_table": "airlines_data", + }, + ) + assert result["data_table"] == "dot_model__all_flight_data" + assert result["target_table"] == "dot_model__airlines_data" + + def test_expect_similar_means_form_name_alias(self): + result = prepare_test_parameters( + "expect_similar_means_across_reporters", + {"form_name": "iccmview_assessment", "key": "reported_by"}, + ) + assert "form_name" not in result + assert result["data_table"] == "dot_model__iccmview_assessment" + + def test_possible_duplicate_forms_legacy_keys(self): + result = prepare_test_parameters( + "possible_duplicate_forms", + { + "table_specific_reported_date": "departure_time", + "table_specific_patient_uuid": "airline", + "table_specific_uuid": "uuid", + "table_specific_period": "day", + }, + ) + assert result == { + "date_column": "departure_time", + "group_column": "airline", + "id_column": "uuid", + "period": "day", + } + assert "table_specific_reported_date" not in result + + def test_possible_duplicate_forms_new_keys_unchanged(self): + params = { + "date_column": "departure_time", + "group_column": "airline", + "id_column": "uuid", + "period": "day", + } + assert prepare_test_parameters("possible_duplicate_forms", params) == params + + def test_other_test_type_unchanged(self): + params = {"values": ["a", "b"]} + assert prepare_test_parameters("accepted_values", params) == params + + def test_non_dict_passthrough(self): + assert prepare_test_parameters("relationships", None) is None + assert prepare_test_parameters("relationships", "") == "" diff --git a/dot/utils/configuration_management.py b/dot/utils/configuration_management.py old mode 100644 new mode 100755 index 5e8b18a..ab8b2ad --- a/dot/utils/configuration_management.py +++ b/dot/utils/configuration_management.py @@ -21,7 +21,8 @@ GE_GREAT_EXPECTATIONS_FINAL_FILENAME, GE_CONFIG_VARIABLES_FINAL_FILENAME, load_config_file, - DBT_MODELNAME_PREFIX + DBT_MODELNAME_PREFIX, + prepare_test_parameters, ) from utils.dbt import create_core_entities @@ -330,7 +331,9 @@ def generate_tests_from_db(project_id, logger=logging.Logger): column_name = row["column_name"] description = row["description"] test_type = row["test_type"] - test_parameters = row["test_parameters"] + test_parameters = prepare_test_parameters( + test_type, row["test_parameters"] + ) # if test_parameters != None: # test_parameters = "| ".join([f"{k}={test_parameters[k]}" for k in test_parameters]) # else: @@ -433,7 +436,10 @@ def generate_tests_from_db(project_id, logger=logging.Logger): # "kwargs": add_ge_schema_parameters( # json.loads(row["test_parameters"]), project_id # ), - "kwargs": add_ge_schema_parameters(row["test_parameters"], project_id), + "kwargs": add_ge_schema_parameters( + prepare_test_parameters(row["test_type"], row["test_parameters"]), + project_id, + ), "meta": {}, } diff --git a/dot/utils/configuration_utils.py b/dot/utils/configuration_utils.py old mode 100644 new mode 100755 index 18d506f..2508645 --- a/dot/utils/configuration_utils.py +++ b/dot/utils/configuration_utils.py @@ -20,9 +20,95 @@ ) DBT_MODELNAME_PREFIX = "dot_model__" +# Matches ref('dot_model__entity') or ref("dot_model__entity") +_DBT_REF_PATTERN = re.compile( + r"""^ref\(\s*['"]""" + re.escape(DBT_MODELNAME_PREFIX) + r"""([^'"]+)['"]\s*\)$""" +) + DBT_PROJECT_SEPARATOR = "/" +def to_bare_entity_id(value) -> Optional[str]: + """ + Normalize a stored entity reference to a bare entity_id. + + Accepts bare ids, `dot_model__{id}`, or `ref('dot_model__{id}')`. + Returns None for empty/non-string values. + """ + if value is None or not isinstance(value, str): + return None + value = value.strip() + if not value: + return None + + ref_match = _DBT_REF_PATTERN.match(value) + if ref_match: + return ref_match.group(1) + + if value.startswith(DBT_MODELNAME_PREFIX): + return value[len(DBT_MODELNAME_PREFIX) :] + + return value + + +def to_dbt_ref(value) -> Optional[str]: + """Convert an entity reference to `ref('dot_model__{entity_id}')`.""" + entity_id = to_bare_entity_id(value) + if entity_id is None: + return value if isinstance(value, str) else value + return f"ref('{DBT_MODELNAME_PREFIX}{entity_id}')" + + +def to_dbt_table(value) -> Optional[str]: + """Convert an entity reference to a physical `dot_model__{entity_id}` table name.""" + entity_id = to_bare_entity_id(value) + if entity_id is None: + return value if isinstance(value, str) else value + return f"{DBT_MODELNAME_PREFIX}{entity_id}" + + +def prepare_test_parameters(test_type: str, params) -> dict: + """ + Adapt stored test_parameters for DBT/GE artifact generation. + + Stores may use bare entity_ids; legacy rows may still use ref()/dot_model__ + prefixes. Also aliases legacy keys (reference→to, form_name→data_table, + table_specific_*→generic names for possible_duplicate_forms). + """ + if params in ("", None, "null") or not isinstance(params, dict): + return params + + prepared = dict(params) + + if test_type == "relationships": + if "to" not in prepared and "reference" in prepared: + prepared["to"] = prepared.pop("reference") + if "to" in prepared and prepared["to"] not in ("", None): + prepared["to"] = to_dbt_ref(prepared["to"]) + + elif test_type == "expect_similar_means_across_reporters": + if "data_table" not in prepared and "form_name" in prepared: + prepared["data_table"] = prepared.pop("form_name") + for key in ("data_table", "target_table"): + if key in prepared and prepared[key] not in ("", None): + prepared[key] = to_dbt_table(prepared[key]) + + elif test_type == "possible_duplicate_forms": + _LEGACY_DUPLICATE_KEYS = { + "table_specific_reported_date": "date_column", + "table_specific_patient_uuid": "group_column", + "table_specific_uuid": "id_column", + "table_specific_period": "period", + } + for legacy_key, new_key in _LEGACY_DUPLICATE_KEYS.items(): + if new_key not in prepared and legacy_key in prepared: + prepared[new_key] = prepared.pop(legacy_key) + elif legacy_key in prepared: + prepared.pop(legacy_key) + + return prepared + + def _get_filename_safely(path: str) -> str: """ Internal function - checks if the path exists