-
Notifications
You must be signed in to change notification settings - Fork 48
/
Prepare_Home_Equity_Data.flw
1 lines (1 loc) · 268 KB
/
Prepare_Home_Equity_Data.flw
1
{"creationTimeStamp":null,"modifiedTimeStamp":null,"createdBy":null,"modifiedBy":null,"version":2,"id":null,"name":"Prepare_Home_Equity_Data.flw","description":null,"properties":{"UI_PROP_DF_OPTIMIZE":"false","UI_PROP_DF_ID":"ba48cd81-5e0a-4770-ae4e-3f70789995d2","UI_PROP_DF_EXECUTION_ORDERED":"true"},"links":[],"nodes":{"id-1670434952852-55959":{"nodeType":"dataFlow","version":1,"id":"id-1670434952852-55959","name":"Prepare HOME_EQUITY Data","priority":1,"properties":{"UI_PROP_IS_EXPANDED":"true","UI_PROP_IS_SWIMLANE":"true"},"portMappings":[],"dataFlowAndBindings":{"dataFlow":{"creationTimeStamp":null,"modifiedTimeStamp":null,"createdBy":null,"modifiedBy":null,"version":2,"id":null,"name":null,"description":null,"properties":{},"links":[],"nodes":{"id-1670433998181-43284":{"nodeType":"step","version":1,"id":"id-1670433998181-43284","name":"Import HOME_EQUITY.sas","note":{"version":1,"id":"id-1670433998181-43288","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":0,"properties":{"UI_PROP_XPOS":"48","UI_PROP_YPOS":"46","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_NODE_DATA_ID":"a7190700-f59c-4a94-afe2-214ce639fcde","UI_PROP_NODE_DATA_MODIFIED_DATE":"1667578315669","UI_PROP_PORT_ID|outTables|0":"3134da33-0873-43bb-9833-1a4ebddf7515","UI_PROP_PORT_LABEL|outTables|0":"Output tables 1","UI_PROP_PORT_DESCRIPTION|outTables|0":"Output tables"},"portMappings":[{"mappingType":"tableStructure","portName":"outTables","portIndex":0,"tableStructure":{"columnDefinitions":[{"name":"BAD","label":"Loan Status","index":0,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"attributes":{}},{"name":"LOAN","label":"Amount of Loan Request","index":1,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"DOLLAR","length":12,"decimals":0},"attributes":{"format":"DOLLAR12."}},{"name":"MORTDUE","label":"Amount Due on Existing Mortgage","index":2,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"DOLLAR","length":12,"decimals":0},"attributes":{"format":"DOLLAR12."}},{"name":"VALUE","label":"Value of Current Property","index":3,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"DOLLAR","length":12,"decimals":0},"attributes":{"format":"DOLLAR12."}},{"name":"REASON","label":"Loan Purpose","index":4,"type":"Char","rawLength":7,"formattedLength":0,"version":2,"attributes":{}},{"name":"JOB","label":"Job Category","index":5,"type":"Char","rawLength":7,"formattedLength":0,"version":2,"attributes":{}},{"name":"YOJ","label":"Years at Present Job","index":6,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"attributes":{}},{"name":"DEROG","label":"Number of Derogatory Reports","index":7,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"attributes":{}},{"name":"DELINQ","label":"Number of Delinquent Credit Lines","index":8,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"attributes":{}},{"name":"CLAGE","label":"Age of Oldest Credit Line (months)","index":9,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"NINQ","label":"Number of Recent Credit Inquiries","index":10,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"attributes":{}},{"name":"CLNO","label":"Number of Credit Lines","index":11,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"attributes":{}},{"name":"DEBTINC","label":"Debt to Income Ratio","index":12,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"","length":8,"decimals":1},"attributes":{"format":"8.1"}},{"name":"APPDATE","label":"Loan Application Date","index":13,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"DATE","length":9,"decimals":0},"attributes":{"format":"DATE9."}},{"name":"CITY","label":"City","index":14,"type":"Char","rawLength":19,"formattedLength":0,"version":2,"attributes":{}},{"name":"STATE","label":"State","index":15,"type":"Char","rawLength":20,"formattedLength":0,"version":2,"attributes":{}},{"name":"DIVISION","label":"Division","index":16,"type":"Char","rawLength":18,"formattedLength":0,"version":2,"attributes":{}},{"name":"REGION","label":"Region","index":17,"type":"Char","rawLength":9,"formattedLength":0,"version":2,"attributes":{}}]}}],"stepUri":"/dataFlows/steps/a7190700-f59c-4a94-afe2-214ce639fcde","arguments":{"codeOptions":{"code":"/*********************************************/\n/* Read the home_equity.csv sample data from */ \n/* the SAS Support Example Data website */\n/* create WORK.HOME_EQUITY. */\n/*********************************************/\n\nfilename data TEMP;\n\nproc http \n method=\"GET\" \n url=\"https://support.sas.com/documentation/onlinedoc/viya/exampledatasets/home_equity.csv\" \n out=data;\nrun;\n\n/* Import edu_hmeq.csv and create WORK.HOME_EQUITY */\nproc import file=\"data\" dbms=csv out=work.t_home_equity replace;\n guessingrows=5960;\nrun;\n\ndata work.home_equity;\n set work.t_home_equity;\n label APPDATE=\"Loan Application Date\"\n BAD=\"Loan Status\"\n CITY=\"City\"\n CLAGE=\"Age of Oldest Credit Line (months)\"\n CLNO=\"Number of Credit Lines\"\n DEBTINC=\"Debt to Income Ratio\"\n DELINQ=\"Number of Delinquent Credit Lines\"\n DEROG=\"Number of Derogatory Reports\"\n DIVISION=\"Division\"\n JOB=\"Job Category\"\n LOAN=\"Amount of Loan Request\"\n MORTDUE=\"Amount Due on Existing Mortgage\"\n NINQ=\"Number of Recent Credit Inquiries\"\n REASON=\"Loan Purpose\"\n REGION=\"Region\"\n STATE=\"State\"\n VALUE=\"Value of Current Property\"\n YOJ=\"Years at Present Job\";\n format APPDATE date9.\n CLAGE comma8.1\n LOAN MORTDUE VALUE dollar12.\n DEBTINC 8.1\n BAD CITY CLNO DELINQ DEROG DIVISION JOB NINQ REASON REGION STATE YOJ;\n informat _all_;\nrun;\n\nproc datasets lib=work nolist;\n delete t_home_equity;\nrun;\n\nproc contents data=work.home_equity;\nrun;\n\nfilename data clear;\n\n/*****************************************************************************/\n/* Create a default CAS session and create SAS librefs for existing caslibs */\n/* so that they are visible in the SAS Studio Libraries tree. */\n/*****************************************************************************/\n\ncas; \ncaslib _all_ assign;\n\n\n\n","contentType":"embedded","logHTML":"","resultsHTML":"","variables":[{"name":"_output1","value":{"referenceType":"outputPort","portName":"outTables","portIndex":0}}]}}},"id-1670434012296-43579":{"nodeType":"outputTable","version":1,"id":"id-1670434012296-43579","name":"HOME_EQUITY","note":{"version":1,"id":"id-1670434012297-43583","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":1,"properties":{"UI_PROP_TABLE_URI":"SASData://WORK?HOME_EQUITY","UI_PROP_XPOS":"175","UI_PROP_YPOS":"46","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_USE_PERSISTED_TABLE_STRUCTURE":"false","UI_PROP_NODE_DATA_ID":"table","UI_PROP_PORT_ID|inTable|0":"46ca3350-5aac-4310-aa2d-373d94e8d79d","UI_PROP_PORT_LABEL|inTable|0":"undefined 1","UI_PROP_PORT_DESCRIPTION|inTable|0":"","UI_PROP_PORT_ID|outTable|0":"50c76f1b-c375-4737-be5b-b0f0a59ec4f7","UI_PROP_PORT_LABEL|outTable|0":"undefined 1","UI_PROP_PORT_DESCRIPTION|outTable|0":""},"tableReference":{"referenceType":"parameter","parameterId":"id-1670434012296-43579"},"outputTableArguments":{"advancedOptions":[],"arguments":{}}},"id-1670434589580-44516":{"nodeType":"step","version":1,"id":"id-1670434589580-44516","name":"Compute Loan to Value","note":{"version":1,"id":"id-1670434589580-44520","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":2,"properties":{"UI_PROP_XPOS":"314","UI_PROP_YPOS":"46","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_NODE_DATA_ID":"32925769-6fac-4ce6-b2d9-7278526fccfd","UI_PROP_NODE_DATA_MODIFIED_DATE":"1667578315421","UI_PROP_PORT_ID|inTable|0":"64a81f99-1861-4f28-be32-9e36b300e074","UI_PROP_PORT_LABEL|inTable|0":"Input table 1","UI_PROP_PORT_DESCRIPTION|inTable|0":"Input table for the \"Calculate columns\" step.","UI_PROP_PORT_ID|outTable|0":"0891c737-ea83-4e9c-9868-2fcf72e75bf4","UI_PROP_PORT_LABEL|outTable|0":"Output table 1","UI_PROP_PORT_DESCRIPTION|outTable|0":"Output table for the \"Calculate columns\" step."},"stepUri":"/dataFlows/steps/32925769-6fac-4ce6-b2d9-7278526fccfd","arguments":{"calculateColumns":[{"operation":"propcase","inColumn":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"CITY","inputPort":"inTable","inputPortIndex":0},"outColumn":{"referenceType":"columnDefinition","columnDefinition":{"name":"CITY","label":"City","type":"Character","rawLength":19,"formattedLength":0,"version":2},"outputPort":"outTable","outputPortIndex":0,"impactedColumns":[{"columnReference":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"CITY","inputPort":"inTable","inputPortIndex":0},"replaced":false}]}},{"operation":"expression","expressionText":"MORTDUE/ 'VALUE'n","outColumn":{"referenceType":"columnDefinition","columnDefinition":{"name":"LTV","label":"Loan to Value","type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"PERCENT","length":6,"decimals":0}},"outputPort":"outTable","outputPortIndex":0}}],"inTable":{"referenceType":"inputPort","portName":"inTable","portIndex":0},"outTable":{"referenceType":"outputPort","portName":"outTable","portIndex":0}}},"id-1670434769003-48962":{"nodeType":"outputTable","version":1,"id":"id-1670434769003-48962","name":"HOME_EQUITY_FINAL","note":{"version":1,"id":"id-1670434769004-48966","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":3,"properties":{"UI_PROP_TABLE_URI":"SASData://CASUSER?HOME_EQUITY_FINAL","UI_PROP_XPOS":"598","UI_PROP_YPOS":"57","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_USE_PERSISTED_TABLE_STRUCTURE":"false","UI_PROP_OUTPUT_PORT|outTable|0":"a2f1c946-1b50-453a-89ce-a50468c6bb99|undefined 1|","UI_PROP_NODE_DATA_ID":"table","UI_PROP_PORT_ID|inTable|0":"ea6d1281-042a-4f5f-ad37-5eab8dfc5655","UI_PROP_PORT_LABEL|inTable|0":"undefined 1","UI_PROP_PORT_DESCRIPTION|inTable|0":""},"tableReference":{"referenceType":"parameter","parameterId":"id-1670434769003-48962"},"outputTableArguments":{"advancedOptions":[],"arguments":{}}},"id-1670434667897-45356":{"nodeType":"step","version":1,"id":"id-1670434667897-45356","name":"Add State Population","note":{"version":1,"id":"id-1670434667897-45360","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":4,"properties":{"UI_PROP_XPOS":"458","UI_PROP_YPOS":"58","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_NODE_DATA_ID":"c072ab75-0a02-4aa1-acf3-63fe9c17a711","UI_PROP_NODE_DATA_MODIFIED_DATE":"1667578317545","UI_PROP_PORT_ID|inTables|0":"fc71216e-22fb-40e8-a66e-bc0082bb48ce","UI_PROP_PORT_LABEL|inTables|0":"Input tables 1","UI_PROP_PORT_DESCRIPTION|inTables|0":"Query input tables","UI_PROP_PORT_ID|outTable|0":"5e1f8183-cac8-44df-840c-f5438907e17c","UI_PROP_PORT_LABEL|outTable|0":"Output table 1","UI_PROP_PORT_DESCRIPTION|outTable|0":"Query output table","UI_PROP_PORT_ID|inTables|1":"d2d42101-e3f0-4791-adb4-098593e21363","UI_PROP_PORT_LABEL|inTables|1":"Input tables 2","UI_PROP_PORT_DESCRIPTION|inTables|1":"Query input tables"},"stepUri":"/dataFlows/steps/c072ab75-0a02-4aa1-acf3-63fe9c17a711","arguments":{"fedSQL":false,"outputMode":"TABLE","useOutObs":false,"useInObs":false,"inObs":"","outObs":"","dataSetOptions":"","outputTable":{"referenceType":"outputPort","portName":"outTable","portIndex":0},"joinFormattedFilter":"","queryTables":[{"table":{"referenceType":"inputPort","portName":"inTables","portIndex":0},"alias":"t1"},{"table":{"referenceType":"inputPort","portName":"inTables","portIndex":1},"alias":"t2"}],"queryJoins":{"leftTable":{"table":{"referenceType":"inputPort","portName":"inTables","portIndex":0},"alias":"t1"},"joins":[{"joinType":"LEFT JOIN","rightTable":{"table":{"referenceType":"inputPort","portName":"inTables","portIndex":1},"alias":"t2"},"conditions":[{"leftColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"STATE","inputPort":"inTables","inputPortIndex":0},"leftAlias":"t1","operator":"=","rightColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":1,"columnName":"STATENAME","inputPort":"inTables","inputPortIndex":1}}]}]},"selectedColumns":[{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"BAD","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"LOAN","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"MORTDUE","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"VALUE","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"REASON","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"JOB","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"YOJ","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"DEROG","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"DELINQ","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"CLAGE","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"NINQ","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"CLNO","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"DEBTINC","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"APPDATE","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"CITY","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"STATE","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"DIVISION","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"REGION","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"LTV","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670434667897-45356.inTables.2(d2d42101-e3f0-4791-adb4-098593e21363)","tableAlias":"t2","isCalculated":false,"isModified":true,"inColumn":null,"calculatedColumn":null,"modifiedColumn":{"referenceType":"columnDefinition","columnDefinition":{"name":"POPULATION_2020","label":"2020 Population","type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0}},"outputPort":"outTable","outputPortIndex":0,"impactedColumns":[{"columnReference":{"referenceType":"column","version":1,"port":"inTables","portIndex":1,"columnName":"POPULATION_2020","inputPort":"inTables","inputPortIndex":1},"replaced":true}]},"expressionText":null}],"sessionId":"","selectDistinct":false,"whereFormattedFilter":"","whereQuickFilters":[],"havingFormattedFilter":"","havingQuickFilters":[],"orderByColumns":[],"groupByColumns":[]}},"id-1670434685223-45956":{"nodeType":"table","version":1,"id":"id-1670434685223-45956","name":"US_DATA","note":{"version":1,"id":"id-1670434685223-45960","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":5,"properties":{"UI_PROP_TABLE_URI":"SASData://SASHELP?US_DATA","UI_PROP_XPOS":"313","UI_PROP_YPOS":"166","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_USE_PERSISTED_TABLE_STRUCTURE":"false","UI_PROP_NODE_DATA_ID":"table","UI_PROP_PORT_ID|outTable|0":"05618aa6-16eb-432d-8fb5-8818630b2f17","UI_PROP_PORT_LABEL|outTable|0":"undefined 1","UI_PROP_PORT_DESCRIPTION|outTable|0":""},"tableReference":{"referenceType":"parameter","parameterId":"id-1670434685223-45956"}}},"parameters":{"id-1670434012296-43579":{"parameterType":"table","version":1,"id":"id-1670434012296-43579","name":"HOME_EQUITY","parameterUsage":"INPUT_OUTPUT","defaultValue":{"table":{"name":"HOME_EQUITY","version":1},"source":{"id":"WORK","name":"WORK","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":true,"hasEngines":false,"creationTimeStamp":"0001-01-01T00:00:00.000Z","modifiedTimeStamp":"0001-01-01T00:00:00.000Z","attributes":{"concatenationCount":0,"engineName":"V9","fileFormat":"7","flags":34848,"options":"","physicalName":"/opt/sas/viya/config/var/tmp/compsrv/default/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c/SAS_workA8690000010D_sas-compute-server-ae207f4e-d59a-4753-8068-8e89dde8abb2-zs7dt","readOnly":false,"version":2},"version":1,"links":[{"method":"GET","rel":"self","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"alternate","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source.summary"},{"method":"GET","rel":"up","href":"/dataSources/providers/Compute/sources","uri":"/dataSources/providers/Compute/sources","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"parent","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"tables","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"sessionScoped","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"}]}}},"id-1670434769003-48962":{"parameterType":"table","version":1,"id":"id-1670434769003-48962","name":"HOME_EQUITY_FINAL","parameterUsage":"OUTPUT","defaultValue":{"table":{"name":"HOME_EQUITY_FINAL","version":1},"source":{"id":"CASUSER","name":"CASUSER","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":false,"hasEngines":false,"attributes":{"concatenationCount":0,"engineName":"CAS","fileFormat":"","flags":0,"options":"CASLIB=\"CASUSER\" SESSREF=\"CASAUTO\";","physicalName":"e6a6185d-b50f-b845-93ea-ea8e533042bb","readOnly":false,"version":2},"version":1}}},"id-1670434685223-45956":{"parameterType":"tableStructure","version":2,"id":"id-1670434685223-45956","name":"US_DATA","parameterUsage":"INPUT","defaultValue":{"table":{"name":"US_DATA","providerId":"Compute","dataSourceId":"Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","type":"dataTable","label":"Apportionment, Population, Population Density - Source: https://www.census.gov/data/tables/2020/dec/2020-apportionment-data.html and https://www.census.gov/data/tables/time-series/dec/density-data-text.html","creationTimeStamp":"2022-09-09T15:46:22.492Z","modifiedTimeStamp":"2022-09-09T15:46:22.492Z","attributes":{"bookmarkLength":12,"columnCount":89,"compressionRoutine":"NO","encoding":"us-ascii ASCII (ANSI)","engine":"V9","logicalRecordCount":52,"physicalRecordCount":52,"recordLength":728,"rowCount":52,"version":2},"version":2,"links":[{"method":"GET","rel":"self","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/US_DATA","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/US_DATA","type":"application/vnd.sas.data.table"},{"method":"GET","rel":"alternate","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/US_DATA","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/US_DATA","type":"application/vnd.sas.data.table.summary"},{"method":"GET","rel":"provider","href":"/dataSources/providers/Compute","uri":"/dataSources/providers/Compute","type":"application/vnd.sas.data.provider"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"},{"method":"GET","rel":"sessionScoped","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/US_DATA?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/US_DATA?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"up","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"columns","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/US_DATA/columns?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/US_DATA/columns?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.column.summary"},{"method":"GET","rel":"rows","href":"/rowSets/tables/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP~fs~US_DATA/rows?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/rowSets/tables/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP~fs~US_DATA/rows?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.row"},{"method":"GET","rel":"dataSource","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.source"}]},"source":{"id":"SASHELP","name":"SASHELP","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":true,"hasEngines":false,"creationTimeStamp":"0001-01-01T00:00:00.000Z","modifiedTimeStamp":"0001-01-01T00:00:00.000Z","attributes":{"concatenationCount":4,"engineName":"V9","fileFormat":"7","flags":1057,"options":"","physicalName":"","readOnly":true,"version":2},"version":1,"links":[{"method":"GET","rel":"self","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"alternate","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","type":"application/vnd.sas.data.source.summary"},{"method":"GET","rel":"up","href":"/dataSources/providers/Compute/sources","uri":"/dataSources/providers/Compute/sources","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"parent","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"tables","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"sessionScoped","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"}]},"columns":[{"name":"STATENAME","label":"Name of State or Region","index":0,"type":"Char","rawLength":20,"formattedLength":0,"version":2},{"name":"DENSITY_1910","label":"1910_People per Square Mile","index":1,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1920","label":"1920_People per Square Mile","index":2,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1930","label":"1930_People per Square Mile","index":3,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1940","label":"1940_People per Square Mile","index":4,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1950","label":"1950_People per Square Mile","index":5,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1960","label":"1960_People per Square Mile","index":6,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1970","label":"1970_People per Square Mile","index":7,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1980","label":"1980_People per Square Mile","index":8,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1990","label":"1990_People per Square Mile","index":9,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_2000","label":"2000_People per Square Mile","index":10,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_2010","label":"2010_People per Square Mile","index":11,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_2020","label":"2020_People per Square Mile","index":12,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"RANK_1910","label":"1910_Density Rank: Most Dense(1) to Least Dense(52)","index":13,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1920","label":"1920_Density Rank: Most Dense(1) to Least Dense(52)","index":14,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1930","label":"1930_Density Rank: Most Dense(1) to Least Dense(52)","index":15,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1940","label":"1940_Density Rank: Most Dense(1) to Least Dense(52)","index":16,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1950","label":"1950_Density Rank: Most Dense(1) to Least Dense(52)","index":17,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1960","label":"1960_Density Rank: Most Dense(1) to Least Dense(52)","index":18,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1970","label":"1970_Density Rank: Most Dense(1) to Least Dense(52)","index":19,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1980","label":"1980_Density Rank: Most Dense(1) to Least Dense(52)","index":20,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1990","label":"1990_Density Rank: Most Dense(1) to Least Dense(52)","index":21,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_2000","label":"2000_Density Rank: Most Dense(1) to Least Dense(52)","index":22,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_2010","label":"2010_Density Rank: Most Dense(1) to Least Dense(52)","index":23,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_2020","label":"2020_Density Rank: Most Dense(1) to Least Dense(52)","index":24,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1910","label":"1910_Number of Representatives","index":25,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1920","label":"1920_Number of Representatives","index":26,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1930","label":"1930_Number of Representatives","index":27,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1940","label":"1940_Number of Representatives","index":28,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1950","label":"1950_Number of Representatives","index":29,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1960","label":"1960_Number of Representatives","index":30,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1970","label":"1970_Number of Representatives","index":31,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1980","label":"1980_Number of Representatives","index":32,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1990","label":"1990_Number of Representatives","index":33,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_2000","label":"2000_Number of Representatives","index":34,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_2010","label":"2010_Number of Representatives","index":35,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_2020","label":"2020_Number of Representatives","index":36,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"PEOPLE_PER_REP_1910","label":"1910_People per Representative","index":37,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1920","label":"1920_People per Representative","index":38,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1930","label":"1930_People per Representative","index":39,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1940","label":"1940_People per Representative","index":40,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1950","label":"1950_People per Representative","index":41,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1960","label":"1960_People per Representative","index":42,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1970","label":"1970_People per Representative","index":43,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1980","label":"1980_People per Representative","index":44,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1990","label":"1990_People per Representative","index":45,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_2000","label":"2000_People per Representative","index":46,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_2010","label":"2010_People per Representative","index":47,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_2020","label":"2020_People per Representative","index":48,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"SEAT_CHANGE_1910","label":"1910_Seat Change","index":49,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1920","label":"1920_Seat Change","index":50,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1930","label":"1930_Seat Change","index":51,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1940","label":"1940_Seat Change","index":52,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1950","label":"1950_Seat Change","index":53,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1960","label":"1960_Seat Change","index":54,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1970","label":"1970_Seat Change","index":55,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1980","label":"1980_Seat Change","index":56,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1990","label":"1990_Seat Change","index":57,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_2000","label":"2000_Seat Change","index":58,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_2010","label":"2010_Seat Change","index":59,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_2020","label":"2020_Seat Change","index":60,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"POPULATION_1910","label":"1910_Population","index":61,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1920","label":"1920_Population","index":62,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1930","label":"1930_Population","index":63,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1940","label":"1940_Population","index":64,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1950","label":"1950_Population","index":65,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1960","label":"1960_Population","index":66,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1970","label":"1970_Population","index":67,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1980","label":"1980_Population","index":68,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1990","label":"1990_Population","index":69,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_2000","label":"2000_Population","index":70,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_2010","label":"2010_Population","index":71,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_2020","label":"2020_Population","index":72,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"CHANGE_1910","label":"1910_Population change expressed as %","index":73,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1920","label":"1920_Population change expressed as %","index":74,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1930","label":"1930_Population change expressed as %","index":75,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1940","label":"1940_Population change expressed as %","index":76,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1950","label":"1950_Population change expressed as %","index":77,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1960","label":"1960_Population change expressed as %","index":78,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1970","label":"1970_Population change expressed as %","index":79,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1980","label":"1980_Population change expressed as %","index":80,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1990","label":"1990_Population change expressed as %","index":81,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_2000","label":"2000_Population change expressed as %","index":82,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_2010","label":"2010_Population change expressed as %","index":83,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_2020","label":"2020_Population change expressed as %","index":84,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"STATE","label":"State Fips Code","index":85,"type":"Numeric","rawLength":7,"formattedLength":0,"version":2},{"name":"STATECODE","label":"Two-letter Abbrev. for State Name","index":86,"type":"Char","rawLength":2,"formattedLength":0,"version":2},{"name":"DIVISION","label":"US Divisions","index":87,"type":"Char","rawLength":18,"formattedLength":0,"version":2},{"name":"REGION","label":"US Regions","index":88,"type":"Char","rawLength":9,"formattedLength":0,"version":2}]},"columns":[{"name":"STATENAME","label":"Name of State or Region","index":0,"type":"Char","rawLength":20,"formattedLength":0,"version":2},{"name":"DENSITY_1910","label":"1910_People per Square Mile","index":1,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1920","label":"1920_People per Square Mile","index":2,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1930","label":"1930_People per Square Mile","index":3,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1940","label":"1940_People per Square Mile","index":4,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1950","label":"1950_People per Square Mile","index":5,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1960","label":"1960_People per Square Mile","index":6,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1970","label":"1970_People per Square Mile","index":7,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1980","label":"1980_People per Square Mile","index":8,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1990","label":"1990_People per Square Mile","index":9,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_2000","label":"2000_People per Square Mile","index":10,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_2010","label":"2010_People per Square Mile","index":11,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_2020","label":"2020_People per Square Mile","index":12,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"RANK_1910","label":"1910_Density Rank: Most Dense(1) to Least Dense(52)","index":13,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1920","label":"1920_Density Rank: Most Dense(1) to Least Dense(52)","index":14,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1930","label":"1930_Density Rank: Most Dense(1) to Least Dense(52)","index":15,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1940","label":"1940_Density Rank: Most Dense(1) to Least Dense(52)","index":16,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1950","label":"1950_Density Rank: Most Dense(1) to Least Dense(52)","index":17,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1960","label":"1960_Density Rank: Most Dense(1) to Least Dense(52)","index":18,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1970","label":"1970_Density Rank: Most Dense(1) to Least Dense(52)","index":19,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1980","label":"1980_Density Rank: Most Dense(1) to Least Dense(52)","index":20,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1990","label":"1990_Density Rank: Most Dense(1) to Least Dense(52)","index":21,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_2000","label":"2000_Density Rank: Most Dense(1) to Least Dense(52)","index":22,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_2010","label":"2010_Density Rank: Most Dense(1) to Least Dense(52)","index":23,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_2020","label":"2020_Density Rank: Most Dense(1) to Least Dense(52)","index":24,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1910","label":"1910_Number of Representatives","index":25,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1920","label":"1920_Number of Representatives","index":26,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1930","label":"1930_Number of Representatives","index":27,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1940","label":"1940_Number of Representatives","index":28,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1950","label":"1950_Number of Representatives","index":29,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1960","label":"1960_Number of Representatives","index":30,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1970","label":"1970_Number of Representatives","index":31,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1980","label":"1980_Number of Representatives","index":32,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1990","label":"1990_Number of Representatives","index":33,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_2000","label":"2000_Number of Representatives","index":34,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_2010","label":"2010_Number of Representatives","index":35,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_2020","label":"2020_Number of Representatives","index":36,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"PEOPLE_PER_REP_1910","label":"1910_People per Representative","index":37,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1920","label":"1920_People per Representative","index":38,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1930","label":"1930_People per Representative","index":39,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1940","label":"1940_People per Representative","index":40,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1950","label":"1950_People per Representative","index":41,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1960","label":"1960_People per Representative","index":42,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1970","label":"1970_People per Representative","index":43,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1980","label":"1980_People per Representative","index":44,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1990","label":"1990_People per Representative","index":45,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_2000","label":"2000_People per Representative","index":46,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_2010","label":"2010_People per Representative","index":47,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_2020","label":"2020_People per Representative","index":48,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"SEAT_CHANGE_1910","label":"1910_Seat Change","index":49,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1920","label":"1920_Seat Change","index":50,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1930","label":"1930_Seat Change","index":51,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1940","label":"1940_Seat Change","index":52,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1950","label":"1950_Seat Change","index":53,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1960","label":"1960_Seat Change","index":54,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1970","label":"1970_Seat Change","index":55,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1980","label":"1980_Seat Change","index":56,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1990","label":"1990_Seat Change","index":57,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_2000","label":"2000_Seat Change","index":58,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_2010","label":"2010_Seat Change","index":59,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_2020","label":"2020_Seat Change","index":60,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"POPULATION_1910","label":"1910_Population","index":61,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1920","label":"1920_Population","index":62,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1930","label":"1930_Population","index":63,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1940","label":"1940_Population","index":64,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1950","label":"1950_Population","index":65,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1960","label":"1960_Population","index":66,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1970","label":"1970_Population","index":67,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1980","label":"1980_Population","index":68,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1990","label":"1990_Population","index":69,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_2000","label":"2000_Population","index":70,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_2010","label":"2010_Population","index":71,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_2020","label":"2020_Population","index":72,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"CHANGE_1910","label":"1910_Population change expressed as %","index":73,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1920","label":"1920_Population change expressed as %","index":74,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1930","label":"1930_Population change expressed as %","index":75,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1940","label":"1940_Population change expressed as %","index":76,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1950","label":"1950_Population change expressed as %","index":77,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1960","label":"1960_Population change expressed as %","index":78,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1970","label":"1970_Population change expressed as %","index":79,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1980","label":"1980_Population change expressed as %","index":80,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1990","label":"1990_Population change expressed as %","index":81,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_2000","label":"2000_Population change expressed as %","index":82,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_2010","label":"2010_Population change expressed as %","index":83,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_2020","label":"2020_Population change expressed as %","index":84,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"STATE","label":"State Fips Code","index":85,"type":"Numeric","rawLength":7,"formattedLength":0,"version":2},{"name":"STATECODE","label":"Two-letter Abbrev. for State Name","index":86,"type":"Char","rawLength":2,"formattedLength":0,"version":2},{"name":"DIVISION","label":"US Divisions","index":87,"type":"Char","rawLength":18,"formattedLength":0,"version":2},{"name":"REGION","label":"US Regions","index":88,"type":"Char","rawLength":9,"formattedLength":0,"version":2}]}},"connections":[{"sourcePort":{"node":"id-1670433998181-43284","portName":"outTables","index":0},"targetPort":{"node":"id-1670434012296-43579","portName":"inTable","index":0}},{"sourcePort":{"node":"id-1670434012296-43579","portName":"outTable","index":0},"targetPort":{"node":"id-1670434589580-44516","portName":"inTable","index":0}},{"sourcePort":{"node":"id-1670434589580-44516","portName":"outTable","index":0},"targetPort":{"node":"id-1670434667897-45356","portName":"inTables","index":0}},{"sourcePort":{"node":"id-1670434667897-45356","portName":"outTable","index":0},"targetPort":{"node":"id-1670434769003-48962","portName":"inTable","index":0}},{"sourcePort":{"node":"id-1670434685223-45956","portName":"outTable","index":0},"targetPort":{"node":"id-1670434667897-45356","portName":"inTables","index":1}}],"extendedProperties":{"UI_MODEL|id-1670434667897-45356":"{\"queryOption\":{\"autoSelectGroups\":true,\"selectDistinct\":false,\"selectStar\":false,\"initialized\":false,\"useExplicitPassthrough\":false,\"fedSQL\":false,\"sessionId\":\"\",\"notes\":\"\",\"fromLibraries\":false,\"dataSetOptions\":\"\",\"useInObs\":false,\"useOutObs\":false,\"inObs\":\"\",\"outObs\":\"\",\"migrating\":false,\"outputMode\":\"TABLE\",\"outputLibname\":\"WORK\",\"outputMember\":\"QUERY\",\"queryTables\":[{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"sortOrder\":\"NONE\",\"data\":{\"columns\":[{\"name\":\"BAD\",\"format\":null,\"informat\":null,\"label\":\"Loan Status\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=0\",\"type\":\"Numeric\"},{\"name\":\"LOAN\",\"format\":\"DOLLAR12.\",\"informat\":null,\"label\":\"Amount of Loan Request\",\"length\":8,\"icon\":\"sap-icon://hc/currency\",\"dataOrder\":\"order=1\",\"type\":\"Numeric\"},{\"name\":\"MORTDUE\",\"format\":\"DOLLAR12.\",\"informat\":null,\"label\":\"Amount Due on Existing Mortgage\",\"length\":8,\"icon\":\"sap-icon://hc/currency\",\"dataOrder\":\"order=2\",\"type\":\"Numeric\"},{\"name\":\"VALUE\",\"format\":\"DOLLAR12.\",\"informat\":null,\"label\":\"Value of Current Property\",\"length\":8,\"icon\":\"sap-icon://hc/currency\",\"dataOrder\":\"order=3\",\"type\":\"Numeric\"},{\"name\":\"REASON\",\"format\":null,\"informat\":null,\"label\":\"Loan Purpose\",\"length\":7,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=4\",\"type\":\"Char\"},{\"name\":\"JOB\",\"format\":null,\"informat\":null,\"label\":\"Job Category\",\"length\":7,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=5\",\"type\":\"Char\"},{\"name\":\"YOJ\",\"format\":null,\"informat\":null,\"label\":\"Years at Present Job\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=6\",\"type\":\"Numeric\"},{\"name\":\"DEROG\",\"format\":null,\"informat\":null,\"label\":\"Number of Derogatory Reports\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=7\",\"type\":\"Numeric\"},{\"name\":\"DELINQ\",\"format\":null,\"informat\":null,\"label\":\"Number of Delinquent Credit Lines\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=8\",\"type\":\"Numeric\"},{\"name\":\"CLAGE\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"Age of Oldest Credit Line (months)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=9\",\"type\":\"Numeric\"},{\"name\":\"NINQ\",\"format\":null,\"informat\":null,\"label\":\"Number of Recent Credit Inquiries\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=10\",\"type\":\"Numeric\"},{\"name\":\"CLNO\",\"format\":null,\"informat\":null,\"label\":\"Number of Credit Lines\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=11\",\"type\":\"Numeric\"},{\"name\":\"DEBTINC\",\"format\":\"8.1\",\"informat\":null,\"label\":\"Debt to Income Ratio\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=12\",\"type\":\"Numeric\"},{\"name\":\"APPDATE\",\"format\":\"DATE9.\",\"informat\":null,\"label\":\"Loan Application Date\",\"length\":8,\"icon\":\"sap-icon://hc/date\",\"dataOrder\":\"order=13\",\"type\":\"Numeric\"},{\"name\":\"CITY\",\"format\":null,\"informat\":null,\"label\":\"City\",\"length\":19,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=14\",\"type\":\"Character\"},{\"name\":\"STATE\",\"format\":null,\"informat\":null,\"label\":\"State\",\"length\":20,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=15\",\"type\":\"Char\"},{\"name\":\"DIVISION\",\"format\":null,\"informat\":null,\"label\":\"Division\",\"length\":18,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=16\",\"type\":\"Char\"},{\"name\":\"REGION\",\"format\":null,\"informat\":null,\"label\":\"Region\",\"length\":9,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=17\",\"type\":\"Char\"},{\"name\":\"LTV\",\"format\":\"PERCENT6.\",\"informat\":null,\"label\":\"Loan to Value\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=18\",\"type\":\"Numeric\"}],\"dataType\":\"DATA\"},\"alias\":\"t1\",\"selectTableStar\":false,\"tableSourceLibrary\":\"\",\"workTableName\":\"_flw0041670434589580445160000\"},{\"libname\":\"US_DATA\",\"member\":\"id-1670434667897-45356.inTables.2(d2d42101-e3f0-4791-adb4-098593e21363)\",\"sortOrder\":\"NONE\",\"data\":{\"columns\":[{\"name\":\"STATENAME\",\"format\":null,\"informat\":null,\"label\":\"Name of State or Region\",\"length\":20,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=0\",\"type\":\"Char\"},{\"name\":\"DENSITY_1910\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1910_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=1\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_1920\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1920_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=2\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_1930\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1930_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=3\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_1940\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1940_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=4\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_1950\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1950_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=5\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_1960\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1960_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=6\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_1970\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1970_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=7\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_1980\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1980_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=8\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_1990\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1990_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=9\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_2000\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"2000_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=10\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_2010\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"2010_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=11\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_2020\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"2020_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=12\",\"type\":\"Numeric\"},{\"name\":\"RANK_1910\",\"format\":null,\"informat\":null,\"label\":\"1910_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=13\",\"type\":\"Numeric\"},{\"name\":\"RANK_1920\",\"format\":null,\"informat\":null,\"label\":\"1920_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=14\",\"type\":\"Numeric\"},{\"name\":\"RANK_1930\",\"format\":null,\"informat\":null,\"label\":\"1930_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=15\",\"type\":\"Numeric\"},{\"name\":\"RANK_1940\",\"format\":null,\"informat\":null,\"label\":\"1940_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=16\",\"type\":\"Numeric\"},{\"name\":\"RANK_1950\",\"format\":null,\"informat\":null,\"label\":\"1950_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=17\",\"type\":\"Numeric\"},{\"name\":\"RANK_1960\",\"format\":null,\"informat\":null,\"label\":\"1960_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=18\",\"type\":\"Numeric\"},{\"name\":\"RANK_1970\",\"format\":null,\"informat\":null,\"label\":\"1970_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=19\",\"type\":\"Numeric\"},{\"name\":\"RANK_1980\",\"format\":null,\"informat\":null,\"label\":\"1980_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=20\",\"type\":\"Numeric\"},{\"name\":\"RANK_1990\",\"format\":null,\"informat\":null,\"label\":\"1990_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=21\",\"type\":\"Numeric\"},{\"name\":\"RANK_2000\",\"format\":null,\"informat\":null,\"label\":\"2000_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=22\",\"type\":\"Numeric\"},{\"name\":\"RANK_2010\",\"format\":null,\"informat\":null,\"label\":\"2010_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=23\",\"type\":\"Numeric\"},{\"name\":\"RANK_2020\",\"format\":null,\"informat\":null,\"label\":\"2020_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=24\",\"type\":\"Numeric\"},{\"name\":\"REPS_1910\",\"format\":null,\"informat\":null,\"label\":\"1910_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=25\",\"type\":\"Numeric\"},{\"name\":\"REPS_1920\",\"format\":null,\"informat\":null,\"label\":\"1920_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=26\",\"type\":\"Numeric\"},{\"name\":\"REPS_1930\",\"format\":null,\"informat\":null,\"label\":\"1930_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=27\",\"type\":\"Numeric\"},{\"name\":\"REPS_1940\",\"format\":null,\"informat\":null,\"label\":\"1940_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=28\",\"type\":\"Numeric\"},{\"name\":\"REPS_1950\",\"format\":null,\"informat\":null,\"label\":\"1950_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=29\",\"type\":\"Numeric\"},{\"name\":\"REPS_1960\",\"format\":null,\"informat\":null,\"label\":\"1960_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=30\",\"type\":\"Numeric\"},{\"name\":\"REPS_1970\",\"format\":null,\"informat\":null,\"label\":\"1970_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=31\",\"type\":\"Numeric\"},{\"name\":\"REPS_1980\",\"format\":null,\"informat\":null,\"label\":\"1980_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=32\",\"type\":\"Numeric\"},{\"name\":\"REPS_1990\",\"format\":null,\"informat\":null,\"label\":\"1990_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=33\",\"type\":\"Numeric\"},{\"name\":\"REPS_2000\",\"format\":null,\"informat\":null,\"label\":\"2000_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=34\",\"type\":\"Numeric\"},{\"name\":\"REPS_2010\",\"format\":null,\"informat\":null,\"label\":\"2010_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=35\",\"type\":\"Numeric\"},{\"name\":\"REPS_2020\",\"format\":null,\"informat\":null,\"label\":\"2020_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=36\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1910\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1910_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=37\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1920\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1920_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=38\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1930\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1930_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=39\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1940\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1940_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=40\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1950\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1950_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=41\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1960\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1960_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=42\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1970\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1970_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=43\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1980\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1980_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=44\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1990\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1990_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=45\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_2000\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"2000_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=46\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_2010\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"2010_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=47\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_2020\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"2020_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=48\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1910\",\"format\":null,\"informat\":null,\"label\":\"1910_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=49\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1920\",\"format\":null,\"informat\":null,\"label\":\"1920_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=50\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1930\",\"format\":null,\"informat\":null,\"label\":\"1930_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=51\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1940\",\"format\":null,\"informat\":null,\"label\":\"1940_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=52\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1950\",\"format\":null,\"informat\":null,\"label\":\"1950_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=53\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1960\",\"format\":null,\"informat\":null,\"label\":\"1960_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=54\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1970\",\"format\":null,\"informat\":null,\"label\":\"1970_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=55\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1980\",\"format\":null,\"informat\":null,\"label\":\"1980_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=56\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1990\",\"format\":null,\"informat\":null,\"label\":\"1990_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=57\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_2000\",\"format\":null,\"informat\":null,\"label\":\"2000_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=58\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_2010\",\"format\":null,\"informat\":null,\"label\":\"2010_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=59\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_2020\",\"format\":null,\"informat\":null,\"label\":\"2020_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=60\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1910\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1910_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=61\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1920\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1920_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=62\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1930\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1930_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=63\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1940\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1940_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=64\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1950\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1950_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=65\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1960\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1960_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=66\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1970\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1970_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=67\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1980\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1980_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=68\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1990\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1990_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=69\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_2000\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"2000_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=70\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_2010\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"2010_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=71\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_2020\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"2020_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=72\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1910\",\"format\":null,\"informat\":null,\"label\":\"1910_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=73\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1920\",\"format\":null,\"informat\":null,\"label\":\"1920_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=74\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1930\",\"format\":null,\"informat\":null,\"label\":\"1930_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=75\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1940\",\"format\":null,\"informat\":null,\"label\":\"1940_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=76\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1950\",\"format\":null,\"informat\":null,\"label\":\"1950_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=77\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1960\",\"format\":null,\"informat\":null,\"label\":\"1960_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=78\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1970\",\"format\":null,\"informat\":null,\"label\":\"1970_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=79\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1980\",\"format\":null,\"informat\":null,\"label\":\"1980_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=80\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1990\",\"format\":null,\"informat\":null,\"label\":\"1990_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=81\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_2000\",\"format\":null,\"informat\":null,\"label\":\"2000_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=82\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_2010\",\"format\":null,\"informat\":null,\"label\":\"2010_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=83\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_2020\",\"format\":null,\"informat\":null,\"label\":\"2020_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=84\",\"type\":\"Numeric\"},{\"name\":\"STATE\",\"format\":null,\"informat\":null,\"label\":\"State Fips Code\",\"length\":7,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=85\",\"type\":\"Numeric\"},{\"name\":\"STATECODE\",\"format\":null,\"informat\":null,\"label\":\"Two-letter Abbrev. for State Name\",\"length\":2,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=86\",\"type\":\"Char\"},{\"name\":\"DIVISION\",\"format\":null,\"informat\":null,\"label\":\"US Divisions\",\"length\":18,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=87\",\"type\":\"Char\"},{\"name\":\"REGION\",\"format\":null,\"informat\":null,\"label\":\"US Regions\",\"length\":9,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=88\",\"type\":\"Char\"}],\"dataType\":\"DATA\",\"type\":\"DATA\"},\"alias\":\"t2\",\"selectTableStar\":false,\"engine\":\"V9\",\"tableSourceLibrary\":\"SASHELP\",\"workTableName\":\"\"}],\"queryJoins\":[{\"id\":\"801ab4f6-41c1-9f82-3fa3-53dde7d72bcc\",\"leftTable\":{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"sortOrder\":\"NONE\",\"data\":{\"columns\":[{\"name\":\"BAD\",\"format\":null,\"informat\":null,\"label\":\"Loan Status\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=0\",\"type\":\"Numeric\"},{\"name\":\"LOAN\",\"format\":\"DOLLAR12.\",\"informat\":null,\"label\":\"Amount of Loan Request\",\"length\":8,\"icon\":\"sap-icon://hc/currency\",\"dataOrder\":\"order=1\",\"type\":\"Numeric\"},{\"name\":\"MORTDUE\",\"format\":\"DOLLAR12.\",\"informat\":null,\"label\":\"Amount Due on Existing Mortgage\",\"length\":8,\"icon\":\"sap-icon://hc/currency\",\"dataOrder\":\"order=2\",\"type\":\"Numeric\"},{\"name\":\"VALUE\",\"format\":\"DOLLAR12.\",\"informat\":null,\"label\":\"Value of Current Property\",\"length\":8,\"icon\":\"sap-icon://hc/currency\",\"dataOrder\":\"order=3\",\"type\":\"Numeric\"},{\"name\":\"REASON\",\"format\":null,\"informat\":null,\"label\":\"Loan Purpose\",\"length\":7,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=4\",\"type\":\"Char\"},{\"name\":\"JOB\",\"format\":null,\"informat\":null,\"label\":\"Job Category\",\"length\":7,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=5\",\"type\":\"Char\"},{\"name\":\"YOJ\",\"format\":null,\"informat\":null,\"label\":\"Years at Present Job\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=6\",\"type\":\"Numeric\"},{\"name\":\"DEROG\",\"format\":null,\"informat\":null,\"label\":\"Number of Derogatory Reports\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=7\",\"type\":\"Numeric\"},{\"name\":\"DELINQ\",\"format\":null,\"informat\":null,\"label\":\"Number of Delinquent Credit Lines\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=8\",\"type\":\"Numeric\"},{\"name\":\"CLAGE\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"Age of Oldest Credit Line (months)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=9\",\"type\":\"Numeric\"},{\"name\":\"NINQ\",\"format\":null,\"informat\":null,\"label\":\"Number of Recent Credit Inquiries\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=10\",\"type\":\"Numeric\"},{\"name\":\"CLNO\",\"format\":null,\"informat\":null,\"label\":\"Number of Credit Lines\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=11\",\"type\":\"Numeric\"},{\"name\":\"DEBTINC\",\"format\":\"8.1\",\"informat\":null,\"label\":\"Debt to Income Ratio\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=12\",\"type\":\"Numeric\"},{\"name\":\"APPDATE\",\"format\":\"DATE9.\",\"informat\":null,\"label\":\"Loan Application Date\",\"length\":8,\"icon\":\"sap-icon://hc/date\",\"dataOrder\":\"order=13\",\"type\":\"Numeric\"},{\"name\":\"CITY\",\"format\":null,\"informat\":null,\"label\":\"City\",\"length\":19,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=14\",\"type\":\"Character\"},{\"name\":\"STATE\",\"format\":null,\"informat\":null,\"label\":\"State\",\"length\":20,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=15\",\"type\":\"Char\"},{\"name\":\"DIVISION\",\"format\":null,\"informat\":null,\"label\":\"Division\",\"length\":18,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=16\",\"type\":\"Char\"},{\"name\":\"REGION\",\"format\":null,\"informat\":null,\"label\":\"Region\",\"length\":9,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=17\",\"type\":\"Char\"},{\"name\":\"LTV\",\"format\":\"PERCENT6.\",\"informat\":null,\"label\":\"Loan to Value\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=18\",\"type\":\"Numeric\"}],\"dataType\":\"DATA\"},\"alias\":\"t1\",\"selectTableStar\":false,\"tableSourceLibrary\":\"\",\"workTableName\":\"_flw0041670434589580445160000\"},\"joinType\":\"LEFT JOIN\",\"rightTable\":{\"libname\":\"US_DATA\",\"member\":\"id-1670434667897-45356.inTables.2(d2d42101-e3f0-4791-adb4-098593e21363)\",\"sortOrder\":\"NONE\",\"data\":{\"columns\":[{\"name\":\"STATENAME\",\"format\":null,\"informat\":null,\"label\":\"Name of State or Region\",\"length\":20,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=0\",\"type\":\"Char\"},{\"name\":\"DENSITY_1910\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1910_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=1\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_1920\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1920_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=2\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_1930\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1930_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=3\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_1940\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1940_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=4\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_1950\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1950_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=5\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_1960\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1960_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=6\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_1970\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1970_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=7\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_1980\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1980_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=8\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_1990\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"1990_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=9\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_2000\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"2000_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=10\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_2010\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"2010_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=11\",\"type\":\"Numeric\"},{\"name\":\"DENSITY_2020\",\"format\":\"COMMA8.1\",\"informat\":null,\"label\":\"2020_People per Square Mile\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=12\",\"type\":\"Numeric\"},{\"name\":\"RANK_1910\",\"format\":null,\"informat\":null,\"label\":\"1910_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=13\",\"type\":\"Numeric\"},{\"name\":\"RANK_1920\",\"format\":null,\"informat\":null,\"label\":\"1920_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=14\",\"type\":\"Numeric\"},{\"name\":\"RANK_1930\",\"format\":null,\"informat\":null,\"label\":\"1930_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=15\",\"type\":\"Numeric\"},{\"name\":\"RANK_1940\",\"format\":null,\"informat\":null,\"label\":\"1940_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=16\",\"type\":\"Numeric\"},{\"name\":\"RANK_1950\",\"format\":null,\"informat\":null,\"label\":\"1950_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=17\",\"type\":\"Numeric\"},{\"name\":\"RANK_1960\",\"format\":null,\"informat\":null,\"label\":\"1960_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=18\",\"type\":\"Numeric\"},{\"name\":\"RANK_1970\",\"format\":null,\"informat\":null,\"label\":\"1970_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=19\",\"type\":\"Numeric\"},{\"name\":\"RANK_1980\",\"format\":null,\"informat\":null,\"label\":\"1980_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=20\",\"type\":\"Numeric\"},{\"name\":\"RANK_1990\",\"format\":null,\"informat\":null,\"label\":\"1990_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=21\",\"type\":\"Numeric\"},{\"name\":\"RANK_2000\",\"format\":null,\"informat\":null,\"label\":\"2000_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=22\",\"type\":\"Numeric\"},{\"name\":\"RANK_2010\",\"format\":null,\"informat\":null,\"label\":\"2010_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=23\",\"type\":\"Numeric\"},{\"name\":\"RANK_2020\",\"format\":null,\"informat\":null,\"label\":\"2020_Density Rank: Most Dense(1) to Least Dense(52)\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=24\",\"type\":\"Numeric\"},{\"name\":\"REPS_1910\",\"format\":null,\"informat\":null,\"label\":\"1910_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=25\",\"type\":\"Numeric\"},{\"name\":\"REPS_1920\",\"format\":null,\"informat\":null,\"label\":\"1920_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=26\",\"type\":\"Numeric\"},{\"name\":\"REPS_1930\",\"format\":null,\"informat\":null,\"label\":\"1930_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=27\",\"type\":\"Numeric\"},{\"name\":\"REPS_1940\",\"format\":null,\"informat\":null,\"label\":\"1940_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=28\",\"type\":\"Numeric\"},{\"name\":\"REPS_1950\",\"format\":null,\"informat\":null,\"label\":\"1950_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=29\",\"type\":\"Numeric\"},{\"name\":\"REPS_1960\",\"format\":null,\"informat\":null,\"label\":\"1960_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=30\",\"type\":\"Numeric\"},{\"name\":\"REPS_1970\",\"format\":null,\"informat\":null,\"label\":\"1970_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=31\",\"type\":\"Numeric\"},{\"name\":\"REPS_1980\",\"format\":null,\"informat\":null,\"label\":\"1980_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=32\",\"type\":\"Numeric\"},{\"name\":\"REPS_1990\",\"format\":null,\"informat\":null,\"label\":\"1990_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=33\",\"type\":\"Numeric\"},{\"name\":\"REPS_2000\",\"format\":null,\"informat\":null,\"label\":\"2000_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=34\",\"type\":\"Numeric\"},{\"name\":\"REPS_2010\",\"format\":null,\"informat\":null,\"label\":\"2010_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=35\",\"type\":\"Numeric\"},{\"name\":\"REPS_2020\",\"format\":null,\"informat\":null,\"label\":\"2020_Number of Representatives\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=36\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1910\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1910_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=37\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1920\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1920_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=38\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1930\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1930_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=39\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1940\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1940_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=40\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1950\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1950_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=41\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1960\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1960_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=42\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1970\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1970_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=43\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1980\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1980_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=44\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_1990\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"1990_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=45\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_2000\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"2000_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=46\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_2010\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"2010_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=47\",\"type\":\"Numeric\"},{\"name\":\"PEOPLE_PER_REP_2020\",\"format\":\"COMMA10.\",\"informat\":null,\"label\":\"2020_People per Representative\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=48\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1910\",\"format\":null,\"informat\":null,\"label\":\"1910_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=49\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1920\",\"format\":null,\"informat\":null,\"label\":\"1920_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=50\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1930\",\"format\":null,\"informat\":null,\"label\":\"1930_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=51\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1940\",\"format\":null,\"informat\":null,\"label\":\"1940_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=52\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1950\",\"format\":null,\"informat\":null,\"label\":\"1950_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=53\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1960\",\"format\":null,\"informat\":null,\"label\":\"1960_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=54\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1970\",\"format\":null,\"informat\":null,\"label\":\"1970_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=55\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1980\",\"format\":null,\"informat\":null,\"label\":\"1980_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=56\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_1990\",\"format\":null,\"informat\":null,\"label\":\"1990_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=57\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_2000\",\"format\":null,\"informat\":null,\"label\":\"2000_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=58\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_2010\",\"format\":null,\"informat\":null,\"label\":\"2010_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=59\",\"type\":\"Numeric\"},{\"name\":\"SEAT_CHANGE_2020\",\"format\":null,\"informat\":null,\"label\":\"2020_Seat Change\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=60\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1910\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1910_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=61\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1920\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1920_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=62\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1930\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1930_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=63\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1940\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1940_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=64\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1950\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1950_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=65\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1960\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1960_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=66\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1970\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1970_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=67\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1980\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1980_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=68\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_1990\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"1990_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=69\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_2000\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"2000_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=70\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_2010\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"2010_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=71\",\"type\":\"Numeric\"},{\"name\":\"POPULATION_2020\",\"format\":\"COMMA15.\",\"informat\":null,\"label\":\"2020_Population\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=72\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1910\",\"format\":null,\"informat\":null,\"label\":\"1910_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=73\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1920\",\"format\":null,\"informat\":null,\"label\":\"1920_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=74\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1930\",\"format\":null,\"informat\":null,\"label\":\"1930_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=75\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1940\",\"format\":null,\"informat\":null,\"label\":\"1940_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=76\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1950\",\"format\":null,\"informat\":null,\"label\":\"1950_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=77\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1960\",\"format\":null,\"informat\":null,\"label\":\"1960_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=78\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1970\",\"format\":null,\"informat\":null,\"label\":\"1970_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=79\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1980\",\"format\":null,\"informat\":null,\"label\":\"1980_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=80\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_1990\",\"format\":null,\"informat\":null,\"label\":\"1990_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=81\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_2000\",\"format\":null,\"informat\":null,\"label\":\"2000_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=82\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_2010\",\"format\":null,\"informat\":null,\"label\":\"2010_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=83\",\"type\":\"Numeric\"},{\"name\":\"CHANGE_2020\",\"format\":null,\"informat\":null,\"label\":\"2020_Population change expressed as %\",\"length\":8,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=84\",\"type\":\"Numeric\"},{\"name\":\"STATE\",\"format\":null,\"informat\":null,\"label\":\"State Fips Code\",\"length\":7,\"icon\":\"sap-icon://hc/numericType\",\"dataOrder\":\"order=85\",\"type\":\"Numeric\"},{\"name\":\"STATECODE\",\"format\":null,\"informat\":null,\"label\":\"Two-letter Abbrev. for State Name\",\"length\":2,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=86\",\"type\":\"Char\"},{\"name\":\"DIVISION\",\"format\":null,\"informat\":null,\"label\":\"US Divisions\",\"length\":18,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=87\",\"type\":\"Char\"},{\"name\":\"REGION\",\"format\":null,\"informat\":null,\"label\":\"US Regions\",\"length\":9,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=88\",\"type\":\"Char\"}],\"dataType\":\"DATA\",\"type\":\"DATA\"},\"alias\":\"t2\",\"selectTableStar\":false,\"engine\":\"V9\",\"tableSourceLibrary\":\"SASHELP\",\"workTableName\":\"\"},\"conditions\":[{\"id\":\"94106b66-a974-f59a-bf9d-e1b5c70303e2\",\"leftTableAlias\":\"t1\",\"leftColumn\":\"STATE\",\"operator\":\"=\",\"rightTableAlias\":\"t2\",\"rightColumn\":\"STATENAME\"}]}],\"selectedColumns\":[{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2154\",\"mProperties\":{\"name\":\"BAD\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"\",\"informat\":\"\",\"label\":\"Loan Status\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"BAD\",\"alias\":\"BAD\",\"format\":\"\",\"informat\":\"\",\"label\":\"Loan Status\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2155\",\"mProperties\":{\"name\":\"LOAN\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"DOLLAR12.\",\"informat\":\"\",\"label\":\"Amount of Loan Request\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"LOAN\",\"alias\":\"LOAN\",\"format\":\"DOLLAR12.\",\"informat\":\"\",\"label\":\"Amount of Loan Request\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2156\",\"mProperties\":{\"name\":\"MORTDUE\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"DOLLAR12.\",\"informat\":\"\",\"label\":\"Amount Due on Existing Mortgage\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"MORTDUE\",\"alias\":\"MORTDUE\",\"format\":\"DOLLAR12.\",\"informat\":\"\",\"label\":\"Amount Due on Existing Mortgage\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2157\",\"mProperties\":{\"name\":\"VALUE\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"DOLLAR12.\",\"informat\":\"\",\"label\":\"Value of Current Property\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"VALUE\",\"alias\":\"VALUE\",\"format\":\"DOLLAR12.\",\"informat\":\"\",\"label\":\"Value of Current Property\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2158\",\"mProperties\":{\"name\":\"REASON\",\"columnType\":\"Char\",\"length\":7,\"format\":\"\",\"informat\":\"\",\"label\":\"Loan Purpose\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"REASON\",\"alias\":\"REASON\",\"format\":\"\",\"informat\":\"\",\"label\":\"Loan Purpose\",\"length\":7,\"type\":\"Char\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2159\",\"mProperties\":{\"name\":\"JOB\",\"columnType\":\"Char\",\"length\":7,\"format\":\"\",\"informat\":\"\",\"label\":\"Job Category\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"JOB\",\"alias\":\"JOB\",\"format\":\"\",\"informat\":\"\",\"label\":\"Job Category\",\"length\":7,\"type\":\"Char\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2160\",\"mProperties\":{\"name\":\"YOJ\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"\",\"informat\":\"\",\"label\":\"Years at Present Job\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"YOJ\",\"alias\":\"YOJ\",\"format\":\"\",\"informat\":\"\",\"label\":\"Years at Present Job\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2161\",\"mProperties\":{\"name\":\"DEROG\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"\",\"informat\":\"\",\"label\":\"Number of Derogatory Reports\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"DEROG\",\"alias\":\"DEROG\",\"format\":\"\",\"informat\":\"\",\"label\":\"Number of Derogatory Reports\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2162\",\"mProperties\":{\"name\":\"DELINQ\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"\",\"informat\":\"\",\"label\":\"Number of Delinquent Credit Lines\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"DELINQ\",\"alias\":\"DELINQ\",\"format\":\"\",\"informat\":\"\",\"label\":\"Number of Delinquent Credit Lines\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2163\",\"mProperties\":{\"name\":\"CLAGE\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"COMMA8.1\",\"informat\":\"\",\"label\":\"Age of Oldest Credit Line (months)\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"CLAGE\",\"alias\":\"CLAGE\",\"format\":\"COMMA8.1\",\"informat\":\"\",\"label\":\"Age of Oldest Credit Line (months)\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2164\",\"mProperties\":{\"name\":\"NINQ\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"\",\"informat\":\"\",\"label\":\"Number of Recent Credit Inquiries\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"NINQ\",\"alias\":\"NINQ\",\"format\":\"\",\"informat\":\"\",\"label\":\"Number of Recent Credit Inquiries\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2165\",\"mProperties\":{\"name\":\"CLNO\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"\",\"informat\":\"\",\"label\":\"Number of Credit Lines\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"CLNO\",\"alias\":\"CLNO\",\"format\":\"\",\"informat\":\"\",\"label\":\"Number of Credit Lines\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2166\",\"mProperties\":{\"name\":\"DEBTINC\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"8.1\",\"informat\":\"\",\"label\":\"Debt to Income Ratio\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"DEBTINC\",\"alias\":\"DEBTINC\",\"format\":\"8.1\",\"informat\":\"\",\"label\":\"Debt to Income Ratio\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2167\",\"mProperties\":{\"name\":\"APPDATE\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"DATE9.\",\"informat\":\"\",\"label\":\"Loan Application Date\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"APPDATE\",\"alias\":\"APPDATE\",\"format\":\"DATE9.\",\"informat\":\"\",\"label\":\"Loan Application Date\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2168\",\"mProperties\":{\"name\":\"CITY\",\"columnType\":\"Character\",\"length\":19,\"format\":\"\",\"informat\":\"\",\"label\":\"City\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"CITY\",\"alias\":\"CITY\",\"format\":\"\",\"informat\":\"\",\"label\":\"City\",\"length\":19,\"type\":\"Character\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2169\",\"mProperties\":{\"name\":\"STATE\",\"columnType\":\"Char\",\"length\":20,\"format\":\"\",\"informat\":\"\",\"label\":\"State\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"STATE\",\"alias\":\"STATE\",\"format\":\"\",\"informat\":\"\",\"label\":\"State\",\"length\":20,\"type\":\"Char\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2170\",\"mProperties\":{\"name\":\"DIVISION\",\"columnType\":\"Char\",\"length\":18,\"format\":\"\",\"informat\":\"\",\"label\":\"Division\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"DIVISION\",\"alias\":\"DIVISION\",\"format\":\"\",\"informat\":\"\",\"label\":\"Division\",\"length\":18,\"type\":\"Char\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2171\",\"mProperties\":{\"name\":\"REGION\",\"columnType\":\"Char\",\"length\":9,\"format\":\"\",\"informat\":\"\",\"label\":\"Region\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"REGION\",\"alias\":\"REGION\",\"format\":\"\",\"informat\":\"\",\"label\":\"Region\",\"length\":9,\"type\":\"Char\"},{\"libname\":\"Compute Loan to Value\",\"member\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2172\",\"mProperties\":{\"name\":\"LTV\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"PERCENT6.\",\"informat\":\"\",\"label\":\"Loan to Value\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Compute Loan to Value\",\"tableName\":\"id-1670434667897-45356.inTables.1(fc71216e-22fb-40e8-a66e-bc0082bb48ce)\",\"tableAlias\":\"t1\"},\"name\":\"LTV\",\"alias\":\"LTV\",\"format\":\"PERCENT6.\",\"informat\":\"\",\"label\":\"Loan to Value\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"US_DATA\",\"member\":\"id-1670434667897-45356.inTables.2(d2d42101-e3f0-4791-adb4-098593e21363)\",\"tableAlias\":\"t2\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object2578\",\"mProperties\":{\"name\":\"POPULATION_2020\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"COMMA15.\",\"informat\":\"\",\"label\":\"2020_Population\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"US_DATA\",\"tableName\":\"id-1670434667897-45356.inTables.2(d2d42101-e3f0-4791-adb4-098593e21363)\",\"tableAlias\":\"t2\"},\"name\":\"POPULATION_2020\",\"alias\":\"POPULATION_2020\",\"format\":\"COMMA15.\",\"informat\":\"\",\"label\":\"2020 Population\",\"length\":8,\"type\":\"Numeric\"}],\"whereFilter\":\"\",\"whereFormattedFilter\":\"\",\"useWhereAdvancedExpression\":false,\"whereQuickFilters\":[],\"groupByColumns\":[],\"havingFilter\":\"\",\"havingFormattedFilter\":\"\",\"useHavingAdvancedExpression\":false,\"havingQuickFilters\":[],\"joinFilter\":\"\",\"joinFormattedFilter\":\"\",\"useJoinAdvancedExpression\":false,\"orderByColumns\":[],\"calculatedColumns\":[],\"flowmode\":true,\"codeGenerationOption\":\"\",\"applyFormatsFedSQL\":false}}"},"stickyNotes":[{"version":1,"id":"id-1670434894927-54226","name":null,"description":"HOME_EQUITY_FINAL is loaded in-memory in CASUSER and available for analysis in other SAS Viya apps. \n\n","properties":{"UI_NOTE_PROP_IS_EXPANDED":"true","UI_NOTE_PROP_HEIGHT":"91","UI_NOTE_PROP_WIDTH":"225","UI_NOTE_PROP_IS_STICKYNOTE":"true","UI_NOTE_PROP_X_POS":"789","UI_NOTE_PROP_Y_POS":"56"}}]},"executionBindings":{"sessionId":"a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","contextId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","environmentId":"Compute","tempTablePrefix":null,"arguments":{"id-1670434769003-48962":{"argumentType":"table","version":1,"value":{"table":{"name":"HOME_EQUITY_FINAL","version":1},"source":{"id":"CASUSER","name":"CASUSER","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":false,"hasEngines":false,"attributes":{"concatenationCount":0,"engineName":"CAS","fileFormat":"","flags":0,"options":"CASLIB=\"CASUSER\" SESSREF=\"CASAUTO\";","physicalName":"e6a6185d-b50f-b845-93ea-ea8e533042bb","readOnly":false,"version":2},"version":1}}},"__NO_OPTIMIZE":{"argumentType":"string","version":1,"value":"true"},"id-1670434012296-43579":{"argumentType":"table","version":1,"value":{"table":{"name":"HOME_EQUITY","version":1},"source":{"id":"WORK","name":"WORK","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":true,"hasEngines":false,"creationTimeStamp":"0001-01-01T00:00:00.000Z","modifiedTimeStamp":"0001-01-01T00:00:00.000Z","attributes":{"concatenationCount":0,"engineName":"V9","fileFormat":"7","flags":34848,"options":"","physicalName":"/opt/sas/viya/config/var/tmp/compsrv/default/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c/SAS_workA8690000010D_sas-compute-server-ae207f4e-d59a-4753-8068-8e89dde8abb2-zs7dt","readOnly":false,"version":2},"version":1,"links":[{"method":"GET","rel":"self","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"alternate","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source.summary"},{"method":"GET","rel":"up","href":"/dataSources/providers/Compute/sources","uri":"/dataSources/providers/Compute/sources","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"parent","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"tables","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"sessionScoped","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"}]}}},"id-1670434685223-45956":{"argumentType":"tableStructure","version":1,"value":{"table":{"table":{"name":"US_DATA","providerId":"Compute","dataSourceId":"Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","type":"dataTable","label":"Apportionment, Population, Population Density - Source: https://www.census.gov/data/tables/2020/dec/2020-apportionment-data.html and https://www.census.gov/data/tables/time-series/dec/density-data-text.html","creationTimeStamp":"2022-09-09T15:46:22.492Z","modifiedTimeStamp":"2022-09-09T15:46:22.492Z","attributes":{"bookmarkLength":12,"columnCount":89,"compressionRoutine":"NO","encoding":"us-ascii ASCII (ANSI)","engine":"V9","logicalRecordCount":52,"physicalRecordCount":52,"recordLength":728,"rowCount":52,"version":2},"version":2,"links":[{"method":"GET","rel":"self","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/US_DATA","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/US_DATA","type":"application/vnd.sas.data.table"},{"method":"GET","rel":"alternate","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/US_DATA","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/US_DATA","type":"application/vnd.sas.data.table.summary"},{"method":"GET","rel":"provider","href":"/dataSources/providers/Compute","uri":"/dataSources/providers/Compute","type":"application/vnd.sas.data.provider"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"},{"method":"GET","rel":"sessionScoped","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/US_DATA?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/US_DATA?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"up","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"columns","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/US_DATA/columns?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/US_DATA/columns?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.column.summary"},{"method":"GET","rel":"rows","href":"/rowSets/tables/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP~fs~US_DATA/rows?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/rowSets/tables/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP~fs~US_DATA/rows?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.row"},{"method":"GET","rel":"dataSource","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.source"}]},"source":{"id":"SASHELP","name":"SASHELP","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":true,"hasEngines":false,"creationTimeStamp":"0001-01-01T00:00:00.000Z","modifiedTimeStamp":"0001-01-01T00:00:00.000Z","attributes":{"concatenationCount":4,"engineName":"V9","fileFormat":"7","flags":1057,"options":"","physicalName":"","readOnly":true,"version":2},"version":1,"links":[{"method":"GET","rel":"self","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"alternate","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","type":"application/vnd.sas.data.source.summary"},{"method":"GET","rel":"up","href":"/dataSources/providers/Compute/sources","uri":"/dataSources/providers/Compute/sources","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"parent","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"tables","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"sessionScoped","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"}]},"columns":[{"name":"STATENAME","label":"Name of State or Region","index":0,"type":"Char","rawLength":20,"formattedLength":0,"version":2},{"name":"DENSITY_1910","label":"1910_People per Square Mile","index":1,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1920","label":"1920_People per Square Mile","index":2,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1930","label":"1930_People per Square Mile","index":3,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1940","label":"1940_People per Square Mile","index":4,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1950","label":"1950_People per Square Mile","index":5,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1960","label":"1960_People per Square Mile","index":6,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1970","label":"1970_People per Square Mile","index":7,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1980","label":"1980_People per Square Mile","index":8,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_1990","label":"1990_People per Square Mile","index":9,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_2000","label":"2000_People per Square Mile","index":10,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_2010","label":"2010_People per Square Mile","index":11,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"DENSITY_2020","label":"2020_People per Square Mile","index":12,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":8,"decimals":1},"attributes":{"format":"COMMA8.1"}},{"name":"RANK_1910","label":"1910_Density Rank: Most Dense(1) to Least Dense(52)","index":13,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1920","label":"1920_Density Rank: Most Dense(1) to Least Dense(52)","index":14,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1930","label":"1930_Density Rank: Most Dense(1) to Least Dense(52)","index":15,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1940","label":"1940_Density Rank: Most Dense(1) to Least Dense(52)","index":16,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1950","label":"1950_Density Rank: Most Dense(1) to Least Dense(52)","index":17,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1960","label":"1960_Density Rank: Most Dense(1) to Least Dense(52)","index":18,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1970","label":"1970_Density Rank: Most Dense(1) to Least Dense(52)","index":19,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1980","label":"1980_Density Rank: Most Dense(1) to Least Dense(52)","index":20,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_1990","label":"1990_Density Rank: Most Dense(1) to Least Dense(52)","index":21,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_2000","label":"2000_Density Rank: Most Dense(1) to Least Dense(52)","index":22,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_2010","label":"2010_Density Rank: Most Dense(1) to Least Dense(52)","index":23,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"RANK_2020","label":"2020_Density Rank: Most Dense(1) to Least Dense(52)","index":24,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1910","label":"1910_Number of Representatives","index":25,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1920","label":"1920_Number of Representatives","index":26,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1930","label":"1930_Number of Representatives","index":27,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1940","label":"1940_Number of Representatives","index":28,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1950","label":"1950_Number of Representatives","index":29,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1960","label":"1960_Number of Representatives","index":30,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1970","label":"1970_Number of Representatives","index":31,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1980","label":"1980_Number of Representatives","index":32,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_1990","label":"1990_Number of Representatives","index":33,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_2000","label":"2000_Number of Representatives","index":34,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_2010","label":"2010_Number of Representatives","index":35,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"REPS_2020","label":"2020_Number of Representatives","index":36,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"PEOPLE_PER_REP_1910","label":"1910_People per Representative","index":37,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1920","label":"1920_People per Representative","index":38,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1930","label":"1930_People per Representative","index":39,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1940","label":"1940_People per Representative","index":40,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1950","label":"1950_People per Representative","index":41,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1960","label":"1960_People per Representative","index":42,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1970","label":"1970_People per Representative","index":43,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1980","label":"1980_People per Representative","index":44,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_1990","label":"1990_People per Representative","index":45,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_2000","label":"2000_People per Representative","index":46,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_2010","label":"2010_People per Representative","index":47,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"PEOPLE_PER_REP_2020","label":"2020_People per Representative","index":48,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":10,"decimals":0},"attributes":{"format":"COMMA10."}},{"name":"SEAT_CHANGE_1910","label":"1910_Seat Change","index":49,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1920","label":"1920_Seat Change","index":50,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1930","label":"1930_Seat Change","index":51,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1940","label":"1940_Seat Change","index":52,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1950","label":"1950_Seat Change","index":53,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1960","label":"1960_Seat Change","index":54,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1970","label":"1970_Seat Change","index":55,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1980","label":"1980_Seat Change","index":56,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_1990","label":"1990_Seat Change","index":57,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_2000","label":"2000_Seat Change","index":58,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_2010","label":"2010_Seat Change","index":59,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"SEAT_CHANGE_2020","label":"2020_Seat Change","index":60,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"POPULATION_1910","label":"1910_Population","index":61,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1920","label":"1920_Population","index":62,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1930","label":"1930_Population","index":63,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1940","label":"1940_Population","index":64,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1950","label":"1950_Population","index":65,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1960","label":"1960_Population","index":66,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1970","label":"1970_Population","index":67,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1980","label":"1980_Population","index":68,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_1990","label":"1990_Population","index":69,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_2000","label":"2000_Population","index":70,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_2010","label":"2010_Population","index":71,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"POPULATION_2020","label":"2020_Population","index":72,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"COMMA","length":15,"decimals":0},"attributes":{"format":"COMMA15."}},{"name":"CHANGE_1910","label":"1910_Population change expressed as %","index":73,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1920","label":"1920_Population change expressed as %","index":74,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1930","label":"1930_Population change expressed as %","index":75,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1940","label":"1940_Population change expressed as %","index":76,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1950","label":"1950_Population change expressed as %","index":77,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1960","label":"1960_Population change expressed as %","index":78,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1970","label":"1970_Population change expressed as %","index":79,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1980","label":"1980_Population change expressed as %","index":80,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_1990","label":"1990_Population change expressed as %","index":81,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_2000","label":"2000_Population change expressed as %","index":82,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_2010","label":"2010_Population change expressed as %","index":83,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"CHANGE_2020","label":"2020_Population change expressed as %","index":84,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"STATE","label":"State Fips Code","index":85,"type":"Numeric","rawLength":7,"formattedLength":0,"version":2},{"name":"STATECODE","label":"Two-letter Abbrev. for State Name","index":86,"type":"Char","rawLength":2,"formattedLength":0,"version":2},{"name":"DIVISION","label":"US Divisions","index":87,"type":"Char","rawLength":18,"formattedLength":0,"version":2},{"name":"REGION","label":"US Regions","index":88,"type":"Char","rawLength":9,"formattedLength":0,"version":2}]},"columnMappings":{}}}}}}},"id-1670613160517-18404":{"nodeType":"dataFlow","version":1,"id":"id-1670613160517-18404","name":"Prepare LOAN_CUSTOMERS Data","priority":2,"properties":{"UI_PROP_IS_EXPANDED":"true","UI_PROP_IS_SWIMLANE":"true"},"portMappings":[],"dataFlowAndBindings":{"dataFlow":{"creationTimeStamp":null,"modifiedTimeStamp":null,"createdBy":null,"modifiedBy":null,"version":2,"id":null,"name":null,"description":null,"properties":{},"links":[],"nodes":{"id-1670613729251-48180":{"nodeType":"outputTable","version":1,"id":"id-1670613729251-48180","name":"MORTGAGE","note":{"version":1,"id":"id-1670613729252-48184","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":6,"properties":{"UI_PROP_TABLE_URI":"SASData://WORK?MORTGAGE","UI_PROP_XPOS":"984","UI_PROP_YPOS":"290","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_USE_PERSISTED_TABLE_STRUCTURE":"false","UI_PROP_OUTPUT_PORT|outTable|0":"a89d3a6a-15f3-4b5c-8237-2f02a76c00fc|undefined 1|","UI_PROP_NODE_DATA_ID":"table","UI_PROP_PORT_ID|inTable|0":"f32253e1-3b7b-4b36-a4a0-267bf1a8c8b4","UI_PROP_PORT_LABEL|inTable|0":"undefined 1","UI_PROP_PORT_DESCRIPTION|inTable|0":""},"tableReference":{"referenceType":"parameter","parameterId":"id-1670613729251-48180"},"outputTableArguments":{"advancedOptions":[],"arguments":{}}},"id-1670613627479-41311":{"nodeType":"step","version":1,"id":"id-1670613627479-41311","name":"Split by Loan Type","note":{"version":1,"id":"id-1670613627480-41315","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":7,"properties":{"UI_PROP_XPOS":"852","UI_PROP_YPOS":"345","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_NODE_DATA_ID":"68e987dd-bf9c-4f04-967c-e2bad96348b9","UI_PROP_NODE_DATA_MODIFIED_DATE":"1667578315250","UI_PROP_PORT_ID|inTable|0":"aaf0f369-5152-4c69-9266-714958cc123e","UI_PROP_PORT_LABEL|inTable|0":"Input table 1","UI_PROP_PORT_DESCRIPTION|inTable|0":"Input table","UI_PROP_PORT_ID|outTables|0":"816a18a5-ee32-4545-bcc1-4349aabc346f","UI_PROP_PORT_LABEL|outTables|0":"Output tables 1","UI_PROP_PORT_DESCRIPTION|outTables|0":"Output tables","UI_PROP_PORT_ID|outTables|1":"18df4a49-8ab1-4caa-8c7c-6b70e2a27501","UI_PROP_PORT_LABEL|outTables|1":"Output tables 2","UI_PROP_PORT_DESCRIPTION|outTables|1":"Output tables","UI_PROP_PORT_ID|outTables|2":"6c1a2869-947e-49e4-99fc-01f6b3966b57","UI_PROP_PORT_LABEL|outTables|2":"Output tables 3","UI_PROP_PORT_DESCRIPTION|outTables|2":"Output tables"},"stepUri":"/dataFlows/steps/68e987dd-bf9c-4f04-967c-e2bad96348b9","arguments":{"inTable":{"referenceType":"inputPort","portName":"inTable","portIndex":0},"filters":[{"quickFilters":[{"matchCase":false,"quoteStrings":true,"inColumn":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"ACCT_TYPE","inputPort":"inTable","inputPortIndex":0},"value":["MORT"],"operator":"equal","useRaw":true,"logicalOperator":"AND"}],"outTable":{"referenceType":"outputPort","portName":"outTables","portIndex":0}},{"quickFilters":[{"matchCase":false,"quoteStrings":true,"inColumn":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"ACCT_TYPE","inputPort":"inTable","inputPortIndex":0},"value":["PERSONAL"],"operator":"equal","useRaw":true,"logicalOperator":"AND"}],"outTable":{"referenceType":"outputPort","portName":"outTables","portIndex":1}},{"quickFilters":[{"matchCase":false,"quoteStrings":true,"inColumn":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"ACCT_TYPE","inputPort":"inTable","inputPortIndex":0},"value":["AUTO"],"operator":"equal","useRaw":true,"logicalOperator":"AND"}],"outTable":{"referenceType":"outputPort","portName":"outTables","portIndex":2}}]}},"id-1670613742827-48467":{"nodeType":"outputTable","version":1,"id":"id-1670613742827-48467","name":"PERSONAL","note":{"version":1,"id":"id-1670613742828-48471","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":8,"properties":{"UI_PROP_TABLE_URI":"SASData://WORK?PERSONAL","UI_PROP_XPOS":"1070","UI_PROP_YPOS":"345","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_USE_PERSISTED_TABLE_STRUCTURE":"false","UI_PROP_OUTPUT_PORT|outTable|0":"52b83839-8d75-4c36-87d2-4b2a9a9f4f6d|undefined 1|","UI_PROP_NODE_DATA_ID":"table","UI_PROP_PORT_ID|inTable|0":"ae6404d0-5496-4ae7-bca2-98a09392fa52","UI_PROP_PORT_LABEL|inTable|0":"undefined 1","UI_PROP_PORT_DESCRIPTION|inTable|0":""},"tableReference":{"referenceType":"parameter","parameterId":"id-1670613742827-48467"},"outputTableArguments":{"advancedOptions":[],"arguments":{}}},"id-1675982915805-16044":{"nodeType":"step","version":1,"id":"id-1675982915805-16044","name":"Import_LOAN_CUSTOMERS.py","note":{"version":1,"id":"id-1675982915805-16048","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":9,"properties":{"UI_PROP_XPOS":"48","UI_PROP_YPOS":"388","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_NODE_DATA_ID":"ab59f8c4-af9a-4608-a5d5-a8365357bb99","UI_PROP_NODE_DATA_MODIFIED_DATE":"1667578317393","UI_PROP_PORT_ID|outTables|0":"d4475010-4588-4c9d-9449-3a7cdf2891c9","UI_PROP_PORT_LABEL|outTables|0":"Output tables 1","UI_PROP_PORT_DESCRIPTION|outTables|0":"Output tables"},"portMappings":[{"mappingType":"tableStructure","portName":"outTables","portIndex":0,"tableStructure":{"columnDefinitions":[{"name":"ID","index":0,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"attributes":{}},{"name":"CUST_NAME","index":1,"type":"Char","rawLength":48,"formattedLength":0,"version":2,"attributes":{}},{"name":"ADDRESS","index":2,"type":"Char","rawLength":27,"formattedLength":0,"version":2,"attributes":{}},{"name":"CITY","index":3,"type":"Char","rawLength":16,"formattedLength":0,"version":2,"attributes":{}},{"name":"STATE","index":4,"type":"Char","rawLength":20,"formattedLength":0,"version":2,"attributes":{}},{"name":"POSTAL_CODE","index":5,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"attributes":{}},{"name":"EMAIL","index":6,"type":"Char","rawLength":22,"formattedLength":0,"version":2,"attributes":{}},{"name":"ACCOUNT_NO","index":7,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"attributes":{}},{"name":"ACCT_TYPE","index":8,"type":"Char","rawLength":8,"formattedLength":0,"version":2,"attributes":{}},{"name":"OPEN_DATE","index":9,"type":"Char","rawLength":25,"formattedLength":0,"version":2,"attributes":{}},{"name":"STATUS","index":10,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"attributes":{}}]}}],"stepUri":"/dataFlows/steps/ab59f8c4-af9a-4608-a5d5-a8365357bb99","arguments":{"codeOptions":{"code":"## Copyright © 2022, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.\n## SPDX-License-Identifier: Apache-2.0 \n\n\n## Packages and Options\nimport pandas as pd\n\n## Access Data\ndf = pd.read_csv(r'https://support.sas.com/documentation/onlinedoc/viya/exampledatasets/loan_customers.csv')\n\nSAS.df2sd(df, 'work.loan_customers')","logHTML":"","resultsHTML":"","variables":[{"name":"_output1","value":{"referenceType":"outputPort","portName":"outTables","portIndex":0}}],"contentType":"embedded"}}},"id-1670613347795-21356":{"nodeType":"outputTable","version":1,"id":"id-1670613347795-21356","name":"LOAN_CUSTOMERS","note":{"version":1,"id":"id-1670613347795-21360","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":10,"properties":{"UI_PROP_TABLE_URI":"SASData://WORK?LOAN_CUSTOMERS","UI_PROP_XPOS":"162","UI_PROP_YPOS":"388","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_USE_PERSISTED_TABLE_STRUCTURE":"false","UI_PROP_NODE_DATA_ID":"table","UI_PROP_PORT_ID|outTable|0":"496d2052-8bf3-4f92-8e3a-b9777a66de2e","UI_PROP_PORT_LABEL|outTable|0":"undefined 1","UI_PROP_PORT_DESCRIPTION|outTable|0":"","UI_PROP_PORT_ID|inTable|0":"dee00b10-9a64-4d18-b30e-3c025a90d6fc","UI_PROP_PORT_LABEL|inTable|0":"undefined 1","UI_PROP_PORT_DESCRIPTION|inTable|0":""},"tableReference":{"referenceType":"parameter","parameterId":"id-1670613347795-21356"},"outputTableArguments":{"advancedOptions":[],"arguments":{}}},"id-1670613367513-22990":{"nodeType":"step","version":1,"id":"id-1670613367513-22990","name":"Add Column Labels","note":{"version":1,"id":"id-1670613367514-22994","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":11,"properties":{"UI_PROP_XPOS":"293","UI_PROP_YPOS":"388","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_NODE_DATA_ID":"c1b50be2-5bb9-4216-ab9c-1105e16632ef","UI_PROP_NODE_DATA_MODIFIED_DATE":"1667578316882","UI_PROP_PORT_ID|inTable|0":"30f55afc-0371-43f3-bf58-93994de8b4b2","UI_PROP_PORT_LABEL|inTable|0":"Input table 1","UI_PROP_PORT_DESCRIPTION|inTable|0":"Input table","UI_PROP_PORT_ID|outTable|0":"bfb058e4-bc58-4f0d-a32e-6a7bbf38c1e1","UI_PROP_PORT_LABEL|outTable|0":"Output table 1","UI_PROP_PORT_DESCRIPTION|outTable|0":"Output table"},"stepUri":"/dataFlows/steps/c1b50be2-5bb9-4216-ab9c-1105e16632ef","arguments":{"selectedColumns":[{"inColumn":null,"isModified":true,"modifiedColumn":{"referenceType":"columnDefinition","columnDefinition":{"name":"ID","label":"Customer ID","type":"Numeric","rawLength":8,"formattedLength":0,"version":2},"outputPort":"outTable","outputPortIndex":0,"impactedColumns":[{"columnReference":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"ID","inputPort":"inTable","inputPortIndex":0},"replaced":false}]}},{"inColumn":null,"isModified":true,"modifiedColumn":{"referenceType":"columnDefinition","columnDefinition":{"name":"CUST_NAME","label":"Customer Name","type":"Char","rawLength":48,"formattedLength":0,"version":2},"outputPort":"outTable","outputPortIndex":0,"impactedColumns":[{"columnReference":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"CUST_NAME","inputPort":"inTable","inputPortIndex":0},"replaced":false}]}},{"inColumn":null,"isModified":true,"modifiedColumn":{"referenceType":"columnDefinition","columnDefinition":{"name":"ADDRESS","label":"Address","type":"Char","rawLength":27,"formattedLength":0,"version":2},"outputPort":"outTable","outputPortIndex":0,"impactedColumns":[{"columnReference":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"ADDRESS","inputPort":"inTable","inputPortIndex":0},"replaced":false}]}},{"inColumn":null,"isModified":true,"modifiedColumn":{"referenceType":"columnDefinition","columnDefinition":{"name":"CITY","label":"City","type":"Char","rawLength":16,"formattedLength":0,"version":2},"outputPort":"outTable","outputPortIndex":0,"impactedColumns":[{"columnReference":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"CITY","inputPort":"inTable","inputPortIndex":0},"replaced":false}]}},{"inColumn":null,"isModified":true,"modifiedColumn":{"referenceType":"columnDefinition","columnDefinition":{"name":"STATE","label":"State","type":"Char","rawLength":20,"formattedLength":0,"version":2},"outputPort":"outTable","outputPortIndex":0,"impactedColumns":[{"columnReference":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"STATE","inputPort":"inTable","inputPortIndex":0},"replaced":false}]}},{"inColumn":null,"isModified":true,"modifiedColumn":{"referenceType":"columnDefinition","columnDefinition":{"name":"POSTAL_CODE","label":"Postal Code","type":"Numeric","rawLength":8,"formattedLength":0,"version":2},"outputPort":"outTable","outputPortIndex":0,"impactedColumns":[{"columnReference":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"POSTAL_CODE","inputPort":"inTable","inputPortIndex":0},"replaced":false}]}},{"inColumn":null,"isModified":true,"modifiedColumn":{"referenceType":"columnDefinition","columnDefinition":{"name":"EMAIL","label":"Email","type":"Char","rawLength":22,"formattedLength":0,"version":2},"outputPort":"outTable","outputPortIndex":0,"impactedColumns":[{"columnReference":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"EMAIL","inputPort":"inTable","inputPortIndex":0},"replaced":false}]}},{"inColumn":null,"isModified":true,"modifiedColumn":{"referenceType":"columnDefinition","columnDefinition":{"name":"ACCOUNT_NO","label":"Account Number","type":"Numeric","rawLength":8,"formattedLength":0,"version":2},"outputPort":"outTable","outputPortIndex":0,"impactedColumns":[{"columnReference":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"ACCOUNT_NO","inputPort":"inTable","inputPortIndex":0},"replaced":false}]}},{"inColumn":null,"isModified":true,"modifiedColumn":{"referenceType":"columnDefinition","columnDefinition":{"name":"ACCT_TYPE","label":"Account Type","type":"Char","rawLength":8,"formattedLength":0,"version":2},"outputPort":"outTable","outputPortIndex":0,"impactedColumns":[{"columnReference":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"ACCT_TYPE","inputPort":"inTable","inputPortIndex":0},"replaced":false}]}},{"inColumn":null,"isModified":true,"modifiedColumn":{"referenceType":"columnDefinition","columnDefinition":{"name":"OPEN_DATE","label":"Loan Start Date","type":"Char","rawLength":25,"formattedLength":0,"version":2},"outputPort":"outTable","outputPortIndex":0,"impactedColumns":[{"columnReference":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"OPEN_DATE","inputPort":"inTable","inputPortIndex":0},"replaced":false}]}},{"inColumn":null,"isModified":true,"modifiedColumn":{"referenceType":"columnDefinition","columnDefinition":{"name":"STATUS","label":"Status","type":"Numeric","rawLength":8,"formattedLength":0,"version":2},"outputPort":"outTable","outputPortIndex":0,"impactedColumns":[{"columnReference":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"STATUS","inputPort":"inTable","inputPortIndex":0},"replaced":false}]}}],"inTable":{"referenceType":"inputPort","portName":"inTable","portIndex":0},"outTable":{"referenceType":"outputPort","portName":"outTable","portIndex":0}}},"id-1670613483377-30551":{"nodeType":"step","version":1,"id":"id-1670613483377-30551","name":"Calculate Columns","note":{"version":1,"id":"id-1670613483378-30555","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":12,"properties":{"UI_PROP_XPOS":"435","UI_PROP_YPOS":"388","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_NODE_DATA_ID":"32925769-6fac-4ce6-b2d9-7278526fccfd","UI_PROP_NODE_DATA_MODIFIED_DATE":"1667578315421","UI_PROP_PORT_ID|inTable|0":"57b97b4f-67f7-4325-ab57-9e0142cbfe55","UI_PROP_PORT_LABEL|inTable|0":"Input table 1","UI_PROP_PORT_DESCRIPTION|inTable|0":"Input table for the \"Calculate columns\" step.","UI_PROP_PORT_ID|outTable|0":"210269b0-adae-450c-8213-3ee74d9aba07","UI_PROP_PORT_LABEL|outTable|0":"Output table 1","UI_PROP_PORT_DESCRIPTION|outTable|0":"Output table for the \"Calculate columns\" step."},"stepUri":"/dataFlows/steps/32925769-6fac-4ce6-b2d9-7278526fccfd","arguments":{"calculateColumns":[{"operation":"put","inColumn":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"ACCOUNT_NO","inputPort":"inTable","inputPortIndex":0},"outColumn":{"referenceType":"columnDefinition","columnDefinition":{"name":"ACCOUNT_NO","label":"Account Number","type":"Character","rawLength":32,"formattedLength":0,"version":2},"outputPort":"outTable","outputPortIndex":0,"impactedColumns":[{"columnReference":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"ACCOUNT_NO","inputPort":"inTable","inputPortIndex":0},"replaced":false}]},"format":"BEST12."},{"operation":"ksubstr","inColumn":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"OPEN_DATE","inputPort":"inTable","inputPortIndex":0},"outColumn":{"referenceType":"columnDefinition","columnDefinition":{"name":"OPEN_DATE","label":"Loan Start Date","type":"Character","rawLength":25,"formattedLength":0,"version":2},"outputPort":"outTable","outputPortIndex":0,"impactedColumns":[{"columnReference":{"referenceType":"column","version":1,"port":"inTable","portIndex":0,"columnName":"OPEN_DATE","inputPort":"inTable","inputPortIndex":0},"replaced":false}]},"start":1,"length":9}],"inTable":{"referenceType":"inputPort","portName":"inTable","portIndex":0},"outTable":{"referenceType":"outputPort","portName":"outTable","portIndex":0}}},"id-1670613746882-48767":{"nodeType":"outputTable","version":1,"id":"id-1670613746882-48767","name":"AUTO","note":{"version":1,"id":"id-1670613746883-48771","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":13,"properties":{"UI_PROP_TABLE_URI":"SASData://WORK?AUTO","UI_PROP_XPOS":"993","UI_PROP_YPOS":"393","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_USE_PERSISTED_TABLE_STRUCTURE":"false","UI_PROP_OUTPUT_PORT|outTable|0":"93b79b7c-9fa9-4a20-a30c-8934d09cbcab|undefined 1|","UI_PROP_NODE_DATA_ID":"table","UI_PROP_PORT_ID|inTable|0":"57148c1d-18b1-4b2d-871e-12d2fcc41875","UI_PROP_PORT_LABEL|inTable|0":"undefined 1","UI_PROP_PORT_DESCRIPTION|inTable|0":""},"tableReference":{"referenceType":"parameter","parameterId":"id-1670613746882-48767"},"outputTableArguments":{"advancedOptions":[],"arguments":{}}},"id-1670613611645-40797":{"nodeType":"outputTable","version":1,"id":"id-1670613611645-40797","name":"LOAN_CUSTOMERS_FINAL","note":{"version":1,"id":"id-1670613611645-40801","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":14,"properties":{"UI_PROP_TABLE_URI":"SASData://WORK?LOAN_CUSTOMERS_FINAL","UI_PROP_XPOS":"720","UI_PROP_YPOS":"399","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_USE_PERSISTED_TABLE_STRUCTURE":"false","UI_PROP_NODE_DATA_ID":"table","UI_PROP_PORT_ID|inTable|0":"2a9ec3d4-2bd1-41f0-8b9b-944362524a03","UI_PROP_PORT_LABEL|inTable|0":"undefined 1","UI_PROP_PORT_DESCRIPTION|inTable|0":"","UI_PROP_PORT_ID|outTable|0":"724fc97b-87ee-4b3d-bbb0-99852e9239aa","UI_PROP_PORT_LABEL|outTable|0":"undefined 1","UI_PROP_PORT_DESCRIPTION|outTable|0":""},"tableReference":{"referenceType":"parameter","parameterId":"id-1670613611645-40797"},"outputTableArguments":{"advancedOptions":[],"arguments":{}}},"id-1670613525229-32971":{"nodeType":"step","version":1,"id":"id-1670613525229-32971","name":"Add County, X, Y","note":{"version":1,"id":"id-1670613525230-32975","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":15,"properties":{"UI_PROP_XPOS":"580","UI_PROP_YPOS":"400","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_NODE_DATA_ID":"c072ab75-0a02-4aa1-acf3-63fe9c17a711","UI_PROP_NODE_DATA_MODIFIED_DATE":"1667578317545","UI_PROP_PORT_ID|inTables|0":"de739b61-9261-4c2a-b8ce-6d79166e212e","UI_PROP_PORT_LABEL|inTables|0":"Input tables 1","UI_PROP_PORT_DESCRIPTION|inTables|0":"Query input tables","UI_PROP_PORT_ID|inTables|1":"08e3f387-3f76-42a3-ac04-94e1b56f3efc","UI_PROP_PORT_LABEL|inTables|1":"Input tables 2","UI_PROP_PORT_DESCRIPTION|inTables|1":"Query input tables","UI_PROP_PORT_ID|outTable|0":"c53e5e42-136e-4dc4-b6aa-dde193beaea2","UI_PROP_PORT_LABEL|outTable|0":"Output table 1","UI_PROP_PORT_DESCRIPTION|outTable|0":"Query output table"},"stepUri":"/dataFlows/steps/c072ab75-0a02-4aa1-acf3-63fe9c17a711","arguments":{"fedSQL":false,"outputMode":"TABLE","useOutObs":false,"useInObs":false,"inObs":"","outObs":"","dataSetOptions":"","outputTable":{"referenceType":"outputPort","portName":"outTable","portIndex":0},"joinFormattedFilter":"","queryTables":[{"table":{"referenceType":"inputPort","portName":"inTables","portIndex":0},"alias":"t1"},{"table":{"referenceType":"inputPort","portName":"inTables","portIndex":1},"alias":"t2"}],"queryJoins":{"leftTable":{"table":{"referenceType":"inputPort","portName":"inTables","portIndex":0},"alias":"t1"},"joins":[{"joinType":"LEFT JOIN","rightTable":{"table":{"referenceType":"inputPort","portName":"inTables","portIndex":1},"alias":"t2"},"conditions":[{"leftColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"POSTAL_CODE","inputPort":"inTables","inputPortIndex":0},"leftAlias":"t1","operator":"=","rightColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":1,"columnName":"ZIP","inputPort":"inTables","inputPortIndex":1}}]}]},"selectedColumns":[{"aggregate":null,"member":"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"CUST_NAME","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"ADDRESS","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"CITY","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"STATE","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"POSTAL_CODE","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"EMAIL","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"ACCOUNT_NO","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"ACCT_TYPE","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"OPEN_DATE","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"STATUS","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)","tableAlias":"t1","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":0,"columnName":"ID","inputPort":"inTables","inputPortIndex":0},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670613525229-32971.inTables.2(08e3f387-3f76-42a3-ac04-94e1b56f3efc)","tableAlias":"t2","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":1,"columnName":"X","inputPort":"inTables","inputPortIndex":1},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670613525229-32971.inTables.2(08e3f387-3f76-42a3-ac04-94e1b56f3efc)","tableAlias":"t2","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":1,"columnName":"Y","inputPort":"inTables","inputPortIndex":1},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null},{"aggregate":null,"member":"id-1670613525229-32971.inTables.2(08e3f387-3f76-42a3-ac04-94e1b56f3efc)","tableAlias":"t2","isCalculated":false,"isModified":false,"inColumn":{"referenceType":"column","version":1,"port":"inTables","portIndex":1,"columnName":"COUNTYNM","inputPort":"inTables","inputPortIndex":1},"calculatedColumn":null,"modifiedColumn":null,"expressionText":null}],"sessionId":"","selectDistinct":false,"whereFormattedFilter":"","whereQuickFilters":[],"havingFormattedFilter":"","havingQuickFilters":[],"orderByColumns":[],"groupByColumns":[]}},"id-1670613789875-52956":{"nodeType":"step","version":1,"id":"id-1670613789875-52956","name":"Export to Excel","note":{"version":1,"id":"id-1670613789876-52960","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":16,"properties":{"UI_PROP_XPOS":"863","UI_PROP_YPOS":"479","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_NODE_DATA_ID":"da1549ad-a598-4600-9459-97a9f26d07fc","UI_PROP_NODE_DATA_MODIFIED_DATE":"1667578316017","UI_PROP_PORT_ID|inTable|0":"0eaf838d-4e5d-474a-a27a-ad9d168b90ea","UI_PROP_PORT_LABEL|inTable|0":"Input table 1","UI_PROP_PORT_DESCRIPTION|inTable|0":"Input table to export","UI_PROP_PORT_ID|outFile|0":"d396297e-ab6b-4d76-813f-fc5b1145e63c","UI_PROP_PORT_LABEL|outFile|0":"Output file 1","UI_PROP_PORT_DESCRIPTION|outFile|0":"Output file to export"},"portMappings":[{"mappingType":"tableStructure","portName":"outFile","portIndex":0,"tableStructure":{"columnDefinitions":[]}}],"stepUri":"/dataFlows/steps/da1549ad-a598-4600-9459-97a9f26d07fc","arguments":{"exportOption":{},"createColumnMetadataFile":false,"inTable":{"referenceType":"inputPort","portName":"inTable","portIndex":0},"outFile":{"referenceType":"outputPort","portName":"outFile","portIndex":0}}},"id-1670613794129-53225":{"nodeType":"outputFile","version":1,"id":"id-1670613794129-53225","name":"loan_customers.xlsx","note":{"version":1,"id":"id-1670613794130-53229","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":17,"properties":{"UI_PROP_XPOS":"996","UI_PROP_YPOS":"480","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_NODE_DATA_ID":"GENERIC_FILE_TRANSFORMATION","UI_PROP_PORT_ID|inFile|0":"48e0d68a-190d-460e-8844-b325884f53bd","UI_PROP_PORT_LABEL|inFile|0":"undefined 1","UI_PROP_PORT_DESCRIPTION|inFile|0":""},"fileReference":{"referenceType":"parameter","parameterId":"id-1670613794129-53225"}},"id-1670613543767-34895":{"nodeType":"table","version":1,"id":"id-1670613543767-34895","name":"ZIPCODE","note":{"version":1,"id":"id-1670613543767-34899","name":null,"description":null,"properties":{"UI_NOTE_PROP_IS_EXPANDED":"false","UI_NOTE_PROP_HEIGHT":"0","UI_NOTE_PROP_WIDTH":"0","UI_NOTE_PROP_IS_STICKYNOTE":"false"}},"priority":18,"properties":{"UI_PROP_TABLE_URI":"SASData://SASHELP?ZIPCODE","UI_PROP_XPOS":"442","UI_PROP_YPOS":"503","UI_PROP_COLORGRP":"0","UI_PROP_IS_INPUT_EXPANDED":"false","UI_PROP_IS_OUTPUT_EXPANDED":"false","UI_PROP_USE_PERSISTED_TABLE_STRUCTURE":"false","UI_PROP_NODE_DATA_ID":"table","UI_PROP_PORT_ID|outTable|0":"7ad8b243-a036-4f7a-a7c0-6c9e98d74e48","UI_PROP_PORT_LABEL|outTable|0":"undefined 1","UI_PROP_PORT_DESCRIPTION|outTable|0":""},"tableReference":{"referenceType":"parameter","parameterId":"id-1670613543767-34895"}}},"parameters":{"id-1670613729251-48180":{"parameterType":"table","version":1,"id":"id-1670613729251-48180","name":"MORTGAGE","parameterUsage":"OUTPUT","defaultValue":{"table":{"name":"MORTGAGE","version":1},"source":{"id":"WORK","name":"WORK","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":true,"hasEngines":false,"creationTimeStamp":"0001-01-01T00:00:00.000Z","modifiedTimeStamp":"0001-01-01T00:00:00.000Z","attributes":{"concatenationCount":0,"engineName":"V9","fileFormat":"7","flags":34848,"options":"","physicalName":"/opt/sas/viya/config/var/tmp/compsrv/default/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c/SAS_workA8690000010D_sas-compute-server-ae207f4e-d59a-4753-8068-8e89dde8abb2-zs7dt","readOnly":false,"version":2},"version":1,"links":[{"method":"GET","rel":"self","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"alternate","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source.summary"},{"method":"GET","rel":"up","href":"/dataSources/providers/Compute/sources","uri":"/dataSources/providers/Compute/sources","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"parent","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"tables","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"sessionScoped","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"}]}}},"id-1670613742827-48467":{"parameterType":"table","version":1,"id":"id-1670613742827-48467","name":"PERSONAL","parameterUsage":"OUTPUT","defaultValue":{"table":{"name":"PERSONAL","version":1},"source":{"id":"WORK","name":"WORK","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":true,"hasEngines":false,"creationTimeStamp":"0001-01-01T00:00:00.000Z","modifiedTimeStamp":"0001-01-01T00:00:00.000Z","attributes":{"concatenationCount":0,"engineName":"V9","fileFormat":"7","flags":34848,"options":"","physicalName":"/opt/sas/viya/config/var/tmp/compsrv/default/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c/SAS_workA8690000010D_sas-compute-server-ae207f4e-d59a-4753-8068-8e89dde8abb2-zs7dt","readOnly":false,"version":2},"version":1,"links":[{"method":"GET","rel":"self","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"alternate","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source.summary"},{"method":"GET","rel":"up","href":"/dataSources/providers/Compute/sources","uri":"/dataSources/providers/Compute/sources","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"parent","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"tables","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"sessionScoped","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"}]}}},"id-1670613347795-21356":{"parameterType":"table","version":1,"id":"id-1670613347795-21356","name":"LOAN_CUSTOMERS","parameterUsage":"INPUT_OUTPUT","defaultValue":{"table":{"name":"LOAN_CUSTOMERS","version":1},"source":{"id":"WORK","name":"WORK","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":true,"hasEngines":false,"creationTimeStamp":"0001-01-01T00:00:00.000Z","modifiedTimeStamp":"0001-01-01T00:00:00.000Z","attributes":{"concatenationCount":0,"engineName":"V9","fileFormat":"7","flags":34848,"options":"","physicalName":"/opt/sas/viya/config/var/tmp/compsrv/default/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c/SAS_workA8690000010D_sas-compute-server-ae207f4e-d59a-4753-8068-8e89dde8abb2-zs7dt","readOnly":false,"version":2},"version":1,"links":[{"method":"GET","rel":"self","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"alternate","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source.summary"},{"method":"GET","rel":"up","href":"/dataSources/providers/Compute/sources","uri":"/dataSources/providers/Compute/sources","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"parent","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"tables","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"sessionScoped","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"}]}}},"id-1670613746882-48767":{"parameterType":"table","version":1,"id":"id-1670613746882-48767","name":"AUTO","parameterUsage":"OUTPUT","defaultValue":{"table":{"name":"AUTO","version":1},"source":{"id":"WORK","name":"WORK","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":true,"hasEngines":false,"creationTimeStamp":"0001-01-01T00:00:00.000Z","modifiedTimeStamp":"0001-01-01T00:00:00.000Z","attributes":{"concatenationCount":0,"engineName":"V9","fileFormat":"7","flags":34848,"options":"","physicalName":"/opt/sas/viya/config/var/tmp/compsrv/default/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c/SAS_workA8690000010D_sas-compute-server-ae207f4e-d59a-4753-8068-8e89dde8abb2-zs7dt","readOnly":false,"version":2},"version":1,"links":[{"method":"GET","rel":"self","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"alternate","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source.summary"},{"method":"GET","rel":"up","href":"/dataSources/providers/Compute/sources","uri":"/dataSources/providers/Compute/sources","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"parent","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"tables","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"sessionScoped","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"}]}}},"id-1670613611645-40797":{"parameterType":"table","version":1,"id":"id-1670613611645-40797","name":"LOAN_CUSTOMERS_FINAL","parameterUsage":"INPUT_OUTPUT","defaultValue":{"table":{"name":"LOAN_CUSTOMERS_FINAL","version":1},"source":{"id":"WORK","name":"WORK","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":true,"hasEngines":false,"creationTimeStamp":"0001-01-01T00:00:00.000Z","modifiedTimeStamp":"0001-01-01T00:00:00.000Z","attributes":{"concatenationCount":0,"engineName":"V9","fileFormat":"7","flags":34848,"options":"","physicalName":"/opt/sas/viya/config/var/tmp/compsrv/default/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c/SAS_workA8690000010D_sas-compute-server-ae207f4e-d59a-4753-8068-8e89dde8abb2-zs7dt","readOnly":false,"version":2},"version":1,"links":[{"method":"GET","rel":"self","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"alternate","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source.summary"},{"method":"GET","rel":"up","href":"/dataSources/providers/Compute/sources","uri":"/dataSources/providers/Compute/sources","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"parent","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"tables","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"sessionScoped","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"}]}}},"id-1670613794129-53225":{"parameterType":"file","version":1,"id":"id-1670613794129-53225","name":"outputFile","parameterUsage":"OUTPUT","defaultValue":{"arguments":{"dataType":"XLSX","delimiter":",","encoding":"UTF-8","hasColumnHeaders":true},"fileType":"EXCEL_XLSX","sourceType":"localFile","value":"/export/sas-viya/data/quick-start/loan_customers.xlsx"}},"id-1670613543767-34895":{"parameterType":"tableStructure","version":2,"id":"id-1670613543767-34895","name":"ZIPCODE","parameterUsage":"INPUT","defaultValue":{"table":{"name":"ZIPCODE","providerId":"Compute","dataSourceId":"Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","type":"dataTable","label":"US Zipcodes; Source: zipcodedownload.com August 2022","creationTimeStamp":"2022-09-09T15:46:46.467Z","modifiedTimeStamp":"2022-09-09T15:46:46.467Z","attributes":{"bookmarkLength":12,"columnCount":21,"compressionRoutine":"NO","encoding":"us-ascii ASCII (ANSI)","engine":"V9","logicalRecordCount":41030,"physicalRecordCount":41030,"recordLength":872,"rowCount":41030,"version":2},"version":2,"links":[{"method":"GET","rel":"self","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/ZIPCODE","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/ZIPCODE","type":"application/vnd.sas.data.table"},{"method":"GET","rel":"alternate","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/ZIPCODE","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/ZIPCODE","type":"application/vnd.sas.data.table.summary"},{"method":"GET","rel":"provider","href":"/dataSources/providers/Compute","uri":"/dataSources/providers/Compute","type":"application/vnd.sas.data.provider"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"},{"method":"GET","rel":"sessionScoped","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/ZIPCODE?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/ZIPCODE?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"up","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"columns","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/ZIPCODE/columns?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/ZIPCODE/columns?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.column.summary"},{"method":"GET","rel":"rows","href":"/rowSets/tables/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP~fs~ZIPCODE/rows?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/rowSets/tables/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP~fs~ZIPCODE/rows?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.row"},{"method":"GET","rel":"dataSource","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.source"}]},"source":{"id":"SASHELP","name":"SASHELP","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":true,"hasEngines":false,"creationTimeStamp":"0001-01-01T00:00:00.000Z","modifiedTimeStamp":"0001-01-01T00:00:00.000Z","attributes":{"concatenationCount":4,"engineName":"V9","fileFormat":"7","flags":1057,"options":"","physicalName":"","readOnly":true,"version":2},"version":1,"links":[{"method":"GET","rel":"self","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"alternate","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","type":"application/vnd.sas.data.source.summary"},{"method":"GET","rel":"up","href":"/dataSources/providers/Compute/sources","uri":"/dataSources/providers/Compute/sources","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"parent","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"tables","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"sessionScoped","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"}]},"columns":[{"name":"ZIP","label":"The 5-digit ZIP Code","index":0,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"Z","length":5,"decimals":0},"attributes":{"format":"Z5."}},{"name":"X","label":"Longitude (degrees) of the center (centroid) of ZIP Code.","index":1,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"","length":8,"decimals":3},"attributes":{"format":"8.3"}},{"name":"Y","label":"Latitude (degrees) of the center (centroid) of ZIP Code.","index":2,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"","length":8,"decimals":3},"attributes":{"format":"8.3"}},{"name":"ZIP_CLASS","label":"ZIP Code Classification:P=PO Box U=Unique zip used for large orgs/businesses/bldgs Blank=Standard/non-unique","index":3,"type":"Char","rawLength":1,"formattedLength":0,"version":2},{"name":"CITY","label":"Name of city/org","index":4,"type":"Char","rawLength":35,"formattedLength":0,"version":2},{"name":"STATE","label":"Two-digit number (FIPS code) for state/territory","index":5,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"STATECODE","label":"Two-letter abbrev. for state name.","index":6,"type":"Char","rawLength":2,"formattedLength":0,"version":2},{"name":"STATENAME","label":"Full name of state/territory","index":7,"type":"Char","rawLength":25,"formattedLength":0,"version":2},{"name":"COUNTY","label":"FIPS county code.","index":8,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"COUNTYNM","label":"Name of county/parish.","index":9,"type":"Char","rawLength":25,"formattedLength":0,"version":2},{"name":"MSA","label":"Metro Statistical Area code by common pop-pre 2003; no MSA for rural","index":10,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"AREACODE","label":"Single Area Code for ZIP Code.","index":11,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"AREACODES","label":"Multiple Area Codes for ZIP Code.","index":12,"type":"Char","rawLength":12,"formattedLength":0,"version":2},{"name":"TIMEZONE","label":"Time Zone for ZIP Code.","index":13,"type":"Char","rawLength":9,"formattedLength":0,"version":2},{"name":"GMTOFFSET","label":"Diff (hrs) between GMT and time zone for ZIP Code","index":14,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"DST","label":"ZIP Code obeys Daylight Savings: Y-Yes N-No","index":15,"type":"Char","rawLength":1,"formattedLength":0,"version":2},{"name":"PONAME","label":"USPS Post Office Name: same as City","index":16,"type":"Char","rawLength":35,"formattedLength":0,"version":2},{"name":"ALIAS_CITY","label":"USPS - alternate names of city separated by ||","index":17,"type":"Char","rawLength":300,"formattedLength":0,"version":2},{"name":"ALIAS_CITYN","label":"Local - alternate names of city separated by ||","index":18,"type":"Char","rawLength":300,"formattedLength":0,"version":2},{"name":"CITY2","label":"Clean CITY name for geocoding","index":19,"type":"Char","rawLength":35,"formattedLength":0,"version":2},{"name":"STATENAME2","label":"Clean STATENAME for geocoding","index":20,"type":"Char","rawLength":25,"formattedLength":0,"version":2}]},"columns":[{"name":"ZIP","label":"The 5-digit ZIP Code","index":0,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"Z","length":5,"decimals":0},"attributes":{"format":"Z5."}},{"name":"X","label":"Longitude (degrees) of the center (centroid) of ZIP Code.","index":1,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"","length":8,"decimals":3},"attributes":{"format":"8.3"}},{"name":"Y","label":"Latitude (degrees) of the center (centroid) of ZIP Code.","index":2,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"","length":8,"decimals":3},"attributes":{"format":"8.3"}},{"name":"ZIP_CLASS","label":"ZIP Code Classification:P=PO Box U=Unique zip used for large orgs/businesses/bldgs Blank=Standard/non-unique","index":3,"type":"Char","rawLength":1,"formattedLength":0,"version":2},{"name":"CITY","label":"Name of city/org","index":4,"type":"Char","rawLength":35,"formattedLength":0,"version":2},{"name":"STATE","label":"Two-digit number (FIPS code) for state/territory","index":5,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"STATECODE","label":"Two-letter abbrev. for state name.","index":6,"type":"Char","rawLength":2,"formattedLength":0,"version":2},{"name":"STATENAME","label":"Full name of state/territory","index":7,"type":"Char","rawLength":25,"formattedLength":0,"version":2},{"name":"COUNTY","label":"FIPS county code.","index":8,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"COUNTYNM","label":"Name of county/parish.","index":9,"type":"Char","rawLength":25,"formattedLength":0,"version":2},{"name":"MSA","label":"Metro Statistical Area code by common pop-pre 2003; no MSA for rural","index":10,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"AREACODE","label":"Single Area Code for ZIP Code.","index":11,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"AREACODES","label":"Multiple Area Codes for ZIP Code.","index":12,"type":"Char","rawLength":12,"formattedLength":0,"version":2},{"name":"TIMEZONE","label":"Time Zone for ZIP Code.","index":13,"type":"Char","rawLength":9,"formattedLength":0,"version":2},{"name":"GMTOFFSET","label":"Diff (hrs) between GMT and time zone for ZIP Code","index":14,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"DST","label":"ZIP Code obeys Daylight Savings: Y-Yes N-No","index":15,"type":"Char","rawLength":1,"formattedLength":0,"version":2},{"name":"PONAME","label":"USPS Post Office Name: same as City","index":16,"type":"Char","rawLength":35,"formattedLength":0,"version":2},{"name":"ALIAS_CITY","label":"USPS - alternate names of city separated by ||","index":17,"type":"Char","rawLength":300,"formattedLength":0,"version":2},{"name":"ALIAS_CITYN","label":"Local - alternate names of city separated by ||","index":18,"type":"Char","rawLength":300,"formattedLength":0,"version":2},{"name":"CITY2","label":"Clean CITY name for geocoding","index":19,"type":"Char","rawLength":35,"formattedLength":0,"version":2},{"name":"STATENAME2","label":"Clean STATENAME for geocoding","index":20,"type":"Char","rawLength":25,"formattedLength":0,"version":2}]}},"connections":[{"sourcePort":{"node":"id-1670613347795-21356","portName":"outTable","index":0},"targetPort":{"node":"id-1670613367513-22990","portName":"inTable","index":0}},{"sourcePort":{"node":"id-1670613367513-22990","portName":"outTable","index":0},"targetPort":{"node":"id-1670613483377-30551","portName":"inTable","index":0}},{"sourcePort":{"node":"id-1670613483377-30551","portName":"outTable","index":0},"targetPort":{"node":"id-1670613525229-32971","portName":"inTables","index":0}},{"sourcePort":{"node":"id-1670613543767-34895","portName":"outTable","index":0},"targetPort":{"node":"id-1670613525229-32971","portName":"inTables","index":1}},{"sourcePort":{"node":"id-1670613525229-32971","portName":"outTable","index":0},"targetPort":{"node":"id-1670613611645-40797","portName":"inTable","index":0}},{"sourcePort":{"node":"id-1670613611645-40797","portName":"outTable","index":0},"targetPort":{"node":"id-1670613627479-41311","portName":"inTable","index":0}},{"sourcePort":{"node":"id-1670613627479-41311","portName":"outTables","index":0},"targetPort":{"node":"id-1670613729251-48180","portName":"inTable","index":0}},{"sourcePort":{"node":"id-1670613627479-41311","portName":"outTables","index":1},"targetPort":{"node":"id-1670613742827-48467","portName":"inTable","index":0}},{"sourcePort":{"node":"id-1670613627479-41311","portName":"outTables","index":2},"targetPort":{"node":"id-1670613746882-48767","portName":"inTable","index":0}},{"sourcePort":{"node":"id-1670613611645-40797","portName":"outTable","index":0},"targetPort":{"node":"id-1670613789875-52956","portName":"inTable","index":0}},{"sourcePort":{"node":"id-1670613789875-52956","portName":"outFile","index":0},"targetPort":{"node":"id-1670613794129-53225","portName":"inFile","index":0}},{"sourcePort":{"node":"id-1675982915805-16044","portName":"outTables","index":0},"targetPort":{"node":"id-1670613347795-21356","portName":"inTable","index":0}}],"extendedProperties":{"UI_OPERATION0|id-1670613483377-30551":"convertcharacter","UI_MODEL|id-1670613525229-32971":"{\"queryOption\":{\"autoSelectGroups\":true,\"selectDistinct\":false,\"selectStar\":false,\"initialized\":false,\"useExplicitPassthrough\":false,\"fedSQL\":false,\"sessionId\":\"\",\"notes\":\"\",\"fromLibraries\":false,\"dataSetOptions\":\"\",\"useInObs\":false,\"useOutObs\":false,\"inObs\":\"\",\"outObs\":\"\",\"migrating\":false,\"outputMode\":\"TABLE\",\"outputLibname\":\"WORK\",\"outputMember\":\"QUERY\",\"queryTables\":[{\"member\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"data\":{\"columns\":[{\"name\":\"CUST_NAME\",\"format\":null,\"informat\":null,\"label\":\"Customer Name\",\"length\":48,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=0\",\"type\":\"Char\"},{\"name\":\"ADDRESS\",\"format\":null,\"informat\":null,\"label\":\"Address\",\"length\":27,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=1\",\"type\":\"Char\"},{\"name\":\"CITY\",\"format\":null,\"informat\":null,\"label\":\"City\",\"length\":16,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=2\",\"type\":\"Char\"},{\"name\":\"STATE\",\"format\":null,\"informat\":null,\"label\":\"State\",\"length\":20,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=3\",\"type\":\"Char\"},{\"name\":\"POSTAL_CODE\",\"format\":null,\"informat\":null,\"label\":\"Postal Code\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=4\",\"type\":\"Numeric\"},{\"name\":\"EMAIL\",\"format\":null,\"informat\":null,\"label\":\"Email\",\"length\":22,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=5\",\"type\":\"Char\"},{\"name\":\"ACCOUNT_NO\",\"format\":null,\"informat\":null,\"label\":\"Account Number\",\"length\":32,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=6\",\"type\":\"Character\"},{\"name\":\"ACCT_TYPE\",\"format\":null,\"informat\":null,\"label\":\"Account Type\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=7\",\"type\":\"Char\"},{\"name\":\"OPEN_DATE\",\"format\":null,\"informat\":null,\"label\":\"Loan Start Date\",\"length\":25,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=8\",\"type\":\"Character\"},{\"name\":\"STATUS\",\"format\":null,\"informat\":null,\"label\":\"Status\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=9\",\"type\":\"Numeric\"},{\"name\":\"ID\",\"format\":null,\"informat\":null,\"label\":\"Customer ID\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=10\",\"type\":\"Numeric\"}],\"dataType\":\"DATA/workTableName:_flw0071670613483377305510000\"},\"sortOrder\":\"NONE\",\"selectTableStar\":false,\"libname\":\"Calculate Columns\",\"alias\":\"t1\",\"workTableName\":\"_flw0071670613483377305510000\",\"tableSourceLibrary\":\"WORK\",\"engine\":null},{\"member\":\"id-1670613525229-32971.inTables.2(08e3f387-3f76-42a3-ac04-94e1b56f3efc)\",\"data\":{\"columns\":[{\"name\":\"ZIP\",\"format\":\"Z5.\",\"informat\":null,\"label\":\"The 5-digit ZIP Code\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=0\",\"type\":\"Numeric\"},{\"name\":\"X\",\"format\":\"8.3\",\"informat\":null,\"label\":\"Longitude (degrees) of the center (centroid) of ZIP Code.\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=1\",\"type\":\"Numeric\"},{\"name\":\"Y\",\"format\":\"8.3\",\"informat\":null,\"label\":\"Latitude (degrees) of the center (centroid) of ZIP Code.\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=2\",\"type\":\"Numeric\"},{\"name\":\"ZIP_CLASS\",\"format\":null,\"informat\":null,\"label\":\"ZIP Code Classification:P=PO Box U=Unique zip used for large orgs/businesses/bldgs Blank=Standard/non-unique\",\"length\":1,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=3\",\"type\":\"Char\"},{\"name\":\"CITY\",\"format\":null,\"informat\":null,\"label\":\"Name of city/org\",\"length\":35,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=4\",\"type\":\"Char\"},{\"name\":\"STATE\",\"format\":null,\"informat\":null,\"label\":\"Two-digit number (FIPS code) for state/territory\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=5\",\"type\":\"Numeric\"},{\"name\":\"STATECODE\",\"format\":null,\"informat\":null,\"label\":\"Two-letter abbrev. for state name.\",\"length\":2,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=6\",\"type\":\"Char\"},{\"name\":\"STATENAME\",\"format\":null,\"informat\":null,\"label\":\"Full name of state/territory\",\"length\":25,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=7\",\"type\":\"Char\"},{\"name\":\"COUNTY\",\"format\":null,\"informat\":null,\"label\":\"FIPS county code.\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=8\",\"type\":\"Numeric\"},{\"name\":\"COUNTYNM\",\"format\":null,\"informat\":null,\"label\":\"Name of county/parish.\",\"length\":25,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=9\",\"type\":\"Char\"},{\"name\":\"MSA\",\"format\":null,\"informat\":null,\"label\":\"Metro Statistical Area code by common pop-pre 2003; no MSA for rural\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=10\",\"type\":\"Numeric\"},{\"name\":\"AREACODE\",\"format\":null,\"informat\":null,\"label\":\"Single Area Code for ZIP Code.\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=11\",\"type\":\"Numeric\"},{\"name\":\"AREACODES\",\"format\":null,\"informat\":null,\"label\":\"Multiple Area Codes for ZIP Code.\",\"length\":12,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=12\",\"type\":\"Char\"},{\"name\":\"TIMEZONE\",\"format\":null,\"informat\":null,\"label\":\"Time Zone for ZIP Code.\",\"length\":9,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=13\",\"type\":\"Char\"},{\"name\":\"GMTOFFSET\",\"format\":null,\"informat\":null,\"label\":\"Diff (hrs) between GMT and time zone for ZIP Code\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=14\",\"type\":\"Numeric\"},{\"name\":\"DST\",\"format\":null,\"informat\":null,\"label\":\"ZIP Code obeys Daylight Savings: Y-Yes N-No\",\"length\":1,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=15\",\"type\":\"Char\"},{\"name\":\"PONAME\",\"format\":null,\"informat\":null,\"label\":\"USPS Post Office Name: same as City\",\"length\":35,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=16\",\"type\":\"Char\"},{\"name\":\"ALIAS_CITY\",\"format\":null,\"informat\":null,\"label\":\"USPS - alternate names of city separated by ||\",\"length\":300,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=17\",\"type\":\"Char\"},{\"name\":\"ALIAS_CITYN\",\"format\":null,\"informat\":null,\"label\":\"Local - alternate names of city separated by ||\",\"length\":300,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=18\",\"type\":\"Char\"},{\"name\":\"CITY2\",\"format\":null,\"informat\":null,\"label\":\"Clean CITY name for geocoding\",\"length\":35,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=19\",\"type\":\"Char\"},{\"name\":\"STATENAME2\",\"format\":null,\"informat\":null,\"label\":\"Clean STATENAME for geocoding\",\"length\":25,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=20\",\"type\":\"Char\"}],\"dataType\":\"DATA/tableSourceLibrary:SASHELP\",\"type\":\"DATA\"},\"sortOrder\":\"NONE\",\"selectTableStar\":false,\"libname\":\"ZIPCODE\",\"alias\":\"t2\",\"tableSourceLibrary\":\"SASHELP\",\"workTableName\":\"ZIPCODE\",\"engine\":\"v9\"}],\"queryJoins\":[{\"id\":\"99fc1d22-6e82-34c6-b36f-f58b8cc1e396\",\"leftTable\":{\"member\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"data\":{\"columns\":[{\"name\":\"CUST_NAME\",\"format\":null,\"informat\":null,\"label\":\"Customer Name\",\"length\":48,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=0\",\"type\":\"Char\"},{\"name\":\"ADDRESS\",\"format\":null,\"informat\":null,\"label\":\"Address\",\"length\":27,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=1\",\"type\":\"Char\"},{\"name\":\"CITY\",\"format\":null,\"informat\":null,\"label\":\"City\",\"length\":16,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=2\",\"type\":\"Char\"},{\"name\":\"STATE\",\"format\":null,\"informat\":null,\"label\":\"State\",\"length\":20,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=3\",\"type\":\"Char\"},{\"name\":\"POSTAL_CODE\",\"format\":null,\"informat\":null,\"label\":\"Postal Code\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=4\",\"type\":\"Numeric\"},{\"name\":\"EMAIL\",\"format\":null,\"informat\":null,\"label\":\"Email\",\"length\":22,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=5\",\"type\":\"Char\"},{\"name\":\"ACCOUNT_NO\",\"format\":null,\"informat\":null,\"label\":\"Account Number\",\"length\":32,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=6\",\"type\":\"Character\"},{\"name\":\"ACCT_TYPE\",\"format\":null,\"informat\":null,\"label\":\"Account Type\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=7\",\"type\":\"Char\"},{\"name\":\"OPEN_DATE\",\"format\":null,\"informat\":null,\"label\":\"Loan Start Date\",\"length\":25,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=8\",\"type\":\"Character\"},{\"name\":\"STATUS\",\"format\":null,\"informat\":null,\"label\":\"Status\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=9\",\"type\":\"Numeric\"},{\"name\":\"ID\",\"format\":null,\"informat\":null,\"label\":\"Customer ID\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=10\",\"type\":\"Numeric\"}],\"dataType\":\"DATA/workTableName:_flw0071670613483377305510000\"},\"sortOrder\":\"NONE\",\"selectTableStar\":false,\"libname\":\"Calculate Columns\",\"alias\":\"t1\",\"workTableName\":\"_flw0071670613483377305510000\",\"tableSourceLibrary\":\"WORK\",\"engine\":null},\"joinType\":\"LEFT JOIN\",\"rightTable\":{\"member\":\"id-1670613525229-32971.inTables.2(08e3f387-3f76-42a3-ac04-94e1b56f3efc)\",\"data\":{\"columns\":[{\"name\":\"ZIP\",\"format\":\"Z5.\",\"informat\":null,\"label\":\"The 5-digit ZIP Code\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=0\",\"type\":\"Numeric\"},{\"name\":\"X\",\"format\":\"8.3\",\"informat\":null,\"label\":\"Longitude (degrees) of the center (centroid) of ZIP Code.\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=1\",\"type\":\"Numeric\"},{\"name\":\"Y\",\"format\":\"8.3\",\"informat\":null,\"label\":\"Latitude (degrees) of the center (centroid) of ZIP Code.\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=2\",\"type\":\"Numeric\"},{\"name\":\"ZIP_CLASS\",\"format\":null,\"informat\":null,\"label\":\"ZIP Code Classification:P=PO Box U=Unique zip used for large orgs/businesses/bldgs Blank=Standard/non-unique\",\"length\":1,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=3\",\"type\":\"Char\"},{\"name\":\"CITY\",\"format\":null,\"informat\":null,\"label\":\"Name of city/org\",\"length\":35,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=4\",\"type\":\"Char\"},{\"name\":\"STATE\",\"format\":null,\"informat\":null,\"label\":\"Two-digit number (FIPS code) for state/territory\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=5\",\"type\":\"Numeric\"},{\"name\":\"STATECODE\",\"format\":null,\"informat\":null,\"label\":\"Two-letter abbrev. for state name.\",\"length\":2,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=6\",\"type\":\"Char\"},{\"name\":\"STATENAME\",\"format\":null,\"informat\":null,\"label\":\"Full name of state/territory\",\"length\":25,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=7\",\"type\":\"Char\"},{\"name\":\"COUNTY\",\"format\":null,\"informat\":null,\"label\":\"FIPS county code.\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=8\",\"type\":\"Numeric\"},{\"name\":\"COUNTYNM\",\"format\":null,\"informat\":null,\"label\":\"Name of county/parish.\",\"length\":25,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=9\",\"type\":\"Char\"},{\"name\":\"MSA\",\"format\":null,\"informat\":null,\"label\":\"Metro Statistical Area code by common pop-pre 2003; no MSA for rural\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=10\",\"type\":\"Numeric\"},{\"name\":\"AREACODE\",\"format\":null,\"informat\":null,\"label\":\"Single Area Code for ZIP Code.\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=11\",\"type\":\"Numeric\"},{\"name\":\"AREACODES\",\"format\":null,\"informat\":null,\"label\":\"Multiple Area Codes for ZIP Code.\",\"length\":12,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=12\",\"type\":\"Char\"},{\"name\":\"TIMEZONE\",\"format\":null,\"informat\":null,\"label\":\"Time Zone for ZIP Code.\",\"length\":9,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=13\",\"type\":\"Char\"},{\"name\":\"GMTOFFSET\",\"format\":null,\"informat\":null,\"label\":\"Diff (hrs) between GMT and time zone for ZIP Code\",\"length\":8,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=14\",\"type\":\"Numeric\"},{\"name\":\"DST\",\"format\":null,\"informat\":null,\"label\":\"ZIP Code obeys Daylight Savings: Y-Yes N-No\",\"length\":1,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=15\",\"type\":\"Char\"},{\"name\":\"PONAME\",\"format\":null,\"informat\":null,\"label\":\"USPS Post Office Name: same as City\",\"length\":35,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=16\",\"type\":\"Char\"},{\"name\":\"ALIAS_CITY\",\"format\":null,\"informat\":null,\"label\":\"USPS - alternate names of city separated by ||\",\"length\":300,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=17\",\"type\":\"Char\"},{\"name\":\"ALIAS_CITYN\",\"format\":null,\"informat\":null,\"label\":\"Local - alternate names of city separated by ||\",\"length\":300,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=18\",\"type\":\"Char\"},{\"name\":\"CITY2\",\"format\":null,\"informat\":null,\"label\":\"Clean CITY name for geocoding\",\"length\":35,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=19\",\"type\":\"Char\"},{\"name\":\"STATENAME2\",\"format\":null,\"informat\":null,\"label\":\"Clean STATENAME for geocoding\",\"length\":25,\"icon\":\"sap-icon://hc/characterType\",\"dataOrder\":\"order=20\",\"type\":\"Char\"}],\"dataType\":\"DATA/tableSourceLibrary:SASHELP\",\"type\":\"DATA\"},\"sortOrder\":\"NONE\",\"selectTableStar\":false,\"libname\":\"ZIPCODE\",\"alias\":\"t2\",\"tableSourceLibrary\":\"SASHELP\",\"workTableName\":\"ZIPCODE\",\"engine\":\"v9\"},\"conditions\":[{\"id\":\"daa71ea0-069d-82db-e006-4b5903e920a6\",\"leftTableAlias\":\"t1\",\"leftColumn\":\"POSTAL_CODE\",\"operator\":\"=\",\"rightTableAlias\":\"t2\",\"rightColumn\":\"ZIP\"}]}],\"selectedColumns\":[{\"libname\":\"Calculate Columns\",\"member\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object1266\",\"mProperties\":{\"name\":\"CUST_NAME\",\"columnType\":\"Char\",\"length\":48,\"format\":\"\",\"informat\":\"\",\"label\":\"Customer Name\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Calculate Columns\",\"tableName\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\"},\"name\":\"CUST_NAME\",\"alias\":\"CUST_NAME\",\"format\":\"\",\"informat\":\"\",\"label\":\"Customer Name\",\"length\":48,\"type\":\"Char\"},{\"libname\":\"Calculate Columns\",\"member\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object1267\",\"mProperties\":{\"name\":\"ADDRESS\",\"columnType\":\"Char\",\"length\":27,\"format\":\"\",\"informat\":\"\",\"label\":\"Address\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Calculate Columns\",\"tableName\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\"},\"name\":\"ADDRESS\",\"alias\":\"ADDRESS\",\"format\":\"\",\"informat\":\"\",\"label\":\"Address\",\"length\":27,\"type\":\"Char\"},{\"libname\":\"Calculate Columns\",\"member\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object1268\",\"mProperties\":{\"name\":\"CITY\",\"columnType\":\"Char\",\"length\":16,\"format\":\"\",\"informat\":\"\",\"label\":\"City\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Calculate Columns\",\"tableName\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\"},\"name\":\"CITY\",\"alias\":\"CITY\",\"format\":\"\",\"informat\":\"\",\"label\":\"City\",\"length\":16,\"type\":\"Char\"},{\"libname\":\"Calculate Columns\",\"member\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object1269\",\"mProperties\":{\"name\":\"STATE\",\"columnType\":\"Char\",\"length\":20,\"format\":\"\",\"informat\":\"\",\"label\":\"State\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Calculate Columns\",\"tableName\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\"},\"name\":\"STATE\",\"alias\":\"STATE\",\"format\":\"\",\"informat\":\"\",\"label\":\"State\",\"length\":20,\"type\":\"Char\"},{\"libname\":\"Calculate Columns\",\"member\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object1270\",\"mProperties\":{\"name\":\"POSTAL_CODE\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"\",\"informat\":\"\",\"label\":\"Postal Code\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Calculate Columns\",\"tableName\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\"},\"name\":\"POSTAL_CODE\",\"alias\":\"POSTAL_CODE\",\"format\":\"\",\"informat\":\"\",\"label\":\"Postal Code\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"Calculate Columns\",\"member\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object1271\",\"mProperties\":{\"name\":\"EMAIL\",\"columnType\":\"Char\",\"length\":22,\"format\":\"\",\"informat\":\"\",\"label\":\"Email\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Calculate Columns\",\"tableName\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\"},\"name\":\"EMAIL\",\"alias\":\"EMAIL\",\"format\":\"\",\"informat\":\"\",\"label\":\"Email\",\"length\":22,\"type\":\"Char\"},{\"libname\":\"Calculate Columns\",\"member\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object1272\",\"mProperties\":{\"name\":\"ACCOUNT_NO\",\"columnType\":\"Character\",\"length\":32,\"format\":\"\",\"informat\":\"\",\"label\":\"Account Number\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Calculate Columns\",\"tableName\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\"},\"name\":\"ACCOUNT_NO\",\"alias\":\"ACCOUNT_NO\",\"format\":\"\",\"informat\":\"\",\"label\":\"Account Number\",\"length\":32,\"type\":\"Character\"},{\"libname\":\"Calculate Columns\",\"member\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object1273\",\"mProperties\":{\"name\":\"ACCT_TYPE\",\"columnType\":\"Char\",\"length\":8,\"format\":\"\",\"informat\":\"\",\"label\":\"Account Type\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Calculate Columns\",\"tableName\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\"},\"name\":\"ACCT_TYPE\",\"alias\":\"ACCT_TYPE\",\"format\":\"\",\"informat\":\"\",\"label\":\"Account Type\",\"length\":8,\"type\":\"Char\"},{\"libname\":\"Calculate Columns\",\"member\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object1274\",\"mProperties\":{\"name\":\"OPEN_DATE\",\"columnType\":\"Character\",\"length\":25,\"format\":\"\",\"informat\":\"\",\"label\":\"Loan Start Date\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Calculate Columns\",\"tableName\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\"},\"name\":\"OPEN_DATE\",\"alias\":\"OPEN_DATE\",\"format\":\"\",\"informat\":\"\",\"label\":\"Loan Start Date\",\"length\":25,\"type\":\"Character\"},{\"libname\":\"Calculate Columns\",\"member\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object1275\",\"mProperties\":{\"name\":\"STATUS\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"\",\"informat\":\"\",\"label\":\"Status\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Calculate Columns\",\"tableName\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\"},\"name\":\"STATUS\",\"alias\":\"STATUS\",\"format\":\"\",\"informat\":\"\",\"label\":\"Status\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"Calculate Columns\",\"member\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object1276\",\"mProperties\":{\"name\":\"ID\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"\",\"informat\":\"\",\"label\":\"Customer ID\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"Calculate Columns\",\"tableName\":\"id-1670613525229-32971.inTables.1(de739b61-9261-4c2a-b8ce-6d79166e212e)\",\"tableAlias\":\"t1\"},\"name\":\"ID\",\"alias\":\"ID\",\"format\":\"\",\"informat\":\"\",\"label\":\"Customer ID\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"ZIPCODE\",\"member\":\"id-1670613525229-32971.inTables.2(08e3f387-3f76-42a3-ac04-94e1b56f3efc)\",\"tableAlias\":\"t2\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object1278\",\"mProperties\":{\"name\":\"X\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"8.3\",\"informat\":\"\",\"label\":\"Longitude (degrees) of the center (centroid) of ZIP Code.\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"ZIPCODE\",\"tableName\":\"id-1670613525229-32971.inTables.2(08e3f387-3f76-42a3-ac04-94e1b56f3efc)\",\"tableAlias\":\"t2\"},\"name\":\"X\",\"alias\":\"X\",\"format\":\"8.3\",\"informat\":\"\",\"label\":\"Longitude (degrees) of the center (centroid) of ZIP Code.\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"ZIPCODE\",\"member\":\"id-1670613525229-32971.inTables.2(08e3f387-3f76-42a3-ac04-94e1b56f3efc)\",\"tableAlias\":\"t2\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object1279\",\"mProperties\":{\"name\":\"Y\",\"columnType\":\"Numeric\",\"length\":8,\"format\":\"8.3\",\"informat\":\"\",\"label\":\"Latitude (degrees) of the center (centroid) of ZIP Code.\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"ZIPCODE\",\"tableName\":\"id-1670613525229-32971.inTables.2(08e3f387-3f76-42a3-ac04-94e1b56f3efc)\",\"tableAlias\":\"t2\"},\"name\":\"Y\",\"alias\":\"Y\",\"format\":\"8.3\",\"informat\":\"\",\"label\":\"Latitude (degrees) of the center (centroid) of ZIP Code.\",\"length\":8,\"type\":\"Numeric\"},{\"libname\":\"ZIPCODE\",\"member\":\"id-1670613525229-32971.inTables.2(08e3f387-3f76-42a3-ac04-94e1b56f3efc)\",\"tableAlias\":\"t2\",\"sourceColumn\":{\"mEventRegistry\":{},\"sId\":\"__object1286\",\"mProperties\":{\"name\":\"COUNTYNM\",\"columnType\":\"Char\",\"length\":25,\"format\":\"\",\"informat\":\"\",\"label\":\"Name of county/parish.\",\"extendedColumnAttr\":[],\"extendedAttrInfo\":null},\"mAggregations\":{},\"mAssociations\":{},\"oParent\":null,\"aDelegates\":[],\"aBeforeDelegates\":[],\"iSuppressInvalidate\":0,\"oPropagatedProperties\":{\"oModels\":{},\"oBindingContexts\":{},\"aPropagationListeners\":[]},\"mSkipPropagation\":{},\"oModels\":{},\"aPropagationListeners\":[],\"oBindingContexts\":{},\"mElementBindingContexts\":{},\"mBindingInfos\":{},\"mObjectBindingInfos\":{},\"_oContextualSettings\":{},\"library\":\"ZIPCODE\",\"tableName\":\"id-1670613525229-32971.inTables.2(08e3f387-3f76-42a3-ac04-94e1b56f3efc)\",\"tableAlias\":\"t2\"},\"name\":\"COUNTYNM\",\"alias\":\"COUNTYNM\",\"format\":\"\",\"informat\":\"\",\"label\":\"Name of county/parish.\",\"length\":25,\"type\":\"Char\"}],\"whereFilter\":\"\",\"whereFormattedFilter\":\"\",\"useWhereAdvancedExpression\":false,\"whereQuickFilters\":[],\"groupByColumns\":[],\"havingFilter\":\"\",\"havingFormattedFilter\":\"\",\"useHavingAdvancedExpression\":false,\"havingQuickFilters\":[],\"joinFilter\":\"\",\"joinFormattedFilter\":\"\",\"useJoinAdvancedExpression\":false,\"orderByColumns\":[],\"calculatedColumns\":[],\"flowmode\":true,\"codeGenerationOption\":\"\",\"applyFormatsFedSQL\":false}}"},"stickyNotes":[]},"executionBindings":{"sessionId":"a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","contextId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","environmentId":"Compute","tempTablePrefix":null,"arguments":{"id-1670613347795-21356":{"argumentType":"table","version":1,"value":{"table":{"name":"LOAN_CUSTOMERS","version":1},"source":{"id":"WORK","name":"WORK","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":true,"hasEngines":false,"creationTimeStamp":"0001-01-01T00:00:00.000Z","modifiedTimeStamp":"0001-01-01T00:00:00.000Z","attributes":{"concatenationCount":0,"engineName":"V9","fileFormat":"7","flags":34848,"options":"","physicalName":"/opt/sas/viya/config/var/tmp/compsrv/default/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c/SAS_workA8690000010D_sas-compute-server-ae207f4e-d59a-4753-8068-8e89dde8abb2-zs7dt","readOnly":false,"version":2},"version":1,"links":[{"method":"GET","rel":"self","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"alternate","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source.summary"},{"method":"GET","rel":"up","href":"/dataSources/providers/Compute/sources","uri":"/dataSources/providers/Compute/sources","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"parent","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"tables","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"sessionScoped","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"}]}}},"__NO_OPTIMIZE":{"argumentType":"string","version":1,"value":"true"},"id-1670613746882-48767":{"argumentType":"table","version":1,"value":{"table":{"name":"AUTO","version":1},"source":{"id":"WORK","name":"WORK","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":true,"hasEngines":false,"creationTimeStamp":"0001-01-01T00:00:00.000Z","modifiedTimeStamp":"0001-01-01T00:00:00.000Z","attributes":{"concatenationCount":0,"engineName":"V9","fileFormat":"7","flags":34848,"options":"","physicalName":"/opt/sas/viya/config/var/tmp/compsrv/default/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c/SAS_workA8690000010D_sas-compute-server-ae207f4e-d59a-4753-8068-8e89dde8abb2-zs7dt","readOnly":false,"version":2},"version":1,"links":[{"method":"GET","rel":"self","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"alternate","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source.summary"},{"method":"GET","rel":"up","href":"/dataSources/providers/Compute/sources","uri":"/dataSources/providers/Compute/sources","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"parent","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"tables","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"sessionScoped","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"}]}}},"id-1670613543767-34895":{"argumentType":"tableStructure","version":1,"value":{"table":{"table":{"name":"ZIPCODE","providerId":"Compute","dataSourceId":"Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","type":"dataTable","label":"US Zipcodes; Source: zipcodedownload.com August 2022","creationTimeStamp":"2022-09-09T15:46:46.467Z","modifiedTimeStamp":"2022-09-09T15:46:46.467Z","attributes":{"bookmarkLength":12,"columnCount":21,"compressionRoutine":"NO","encoding":"us-ascii ASCII (ANSI)","engine":"V9","logicalRecordCount":41030,"physicalRecordCount":41030,"recordLength":872,"rowCount":41030,"version":2},"version":2,"links":[{"method":"GET","rel":"self","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/ZIPCODE","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/ZIPCODE","type":"application/vnd.sas.data.table"},{"method":"GET","rel":"alternate","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/ZIPCODE","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/ZIPCODE","type":"application/vnd.sas.data.table.summary"},{"method":"GET","rel":"provider","href":"/dataSources/providers/Compute","uri":"/dataSources/providers/Compute","type":"application/vnd.sas.data.provider"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"},{"method":"GET","rel":"sessionScoped","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/ZIPCODE?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/ZIPCODE?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"up","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"columns","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/ZIPCODE/columns?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables/ZIPCODE/columns?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.column.summary"},{"method":"GET","rel":"rows","href":"/rowSets/tables/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP~fs~ZIPCODE/rows?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/rowSets/tables/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP~fs~ZIPCODE/rows?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.row"},{"method":"GET","rel":"dataSource","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.source"}]},"source":{"id":"SASHELP","name":"SASHELP","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":true,"hasEngines":false,"creationTimeStamp":"0001-01-01T00:00:00.000Z","modifiedTimeStamp":"0001-01-01T00:00:00.000Z","attributes":{"concatenationCount":4,"engineName":"V9","fileFormat":"7","flags":1057,"options":"","physicalName":"","readOnly":true,"version":2},"version":1,"links":[{"method":"GET","rel":"self","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"alternate","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP","type":"application/vnd.sas.data.source.summary"},{"method":"GET","rel":"up","href":"/dataSources/providers/Compute/sources","uri":"/dataSources/providers/Compute/sources","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"parent","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"tables","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~SASHELP/tables","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"sessionScoped","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"}]},"columns":[{"name":"ZIP","label":"The 5-digit ZIP Code","index":0,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"Z","length":5,"decimals":0},"attributes":{"format":"Z5."}},{"name":"X","label":"Longitude (degrees) of the center (centroid) of ZIP Code.","index":1,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"","length":8,"decimals":3},"attributes":{"format":"8.3"}},{"name":"Y","label":"Latitude (degrees) of the center (centroid) of ZIP Code.","index":2,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2,"format":{"name":"","length":8,"decimals":3},"attributes":{"format":"8.3"}},{"name":"ZIP_CLASS","label":"ZIP Code Classification:P=PO Box U=Unique zip used for large orgs/businesses/bldgs Blank=Standard/non-unique","index":3,"type":"Char","rawLength":1,"formattedLength":0,"version":2},{"name":"CITY","label":"Name of city/org","index":4,"type":"Char","rawLength":35,"formattedLength":0,"version":2},{"name":"STATE","label":"Two-digit number (FIPS code) for state/territory","index":5,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"STATECODE","label":"Two-letter abbrev. for state name.","index":6,"type":"Char","rawLength":2,"formattedLength":0,"version":2},{"name":"STATENAME","label":"Full name of state/territory","index":7,"type":"Char","rawLength":25,"formattedLength":0,"version":2},{"name":"COUNTY","label":"FIPS county code.","index":8,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"COUNTYNM","label":"Name of county/parish.","index":9,"type":"Char","rawLength":25,"formattedLength":0,"version":2},{"name":"MSA","label":"Metro Statistical Area code by common pop-pre 2003; no MSA for rural","index":10,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"AREACODE","label":"Single Area Code for ZIP Code.","index":11,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"AREACODES","label":"Multiple Area Codes for ZIP Code.","index":12,"type":"Char","rawLength":12,"formattedLength":0,"version":2},{"name":"TIMEZONE","label":"Time Zone for ZIP Code.","index":13,"type":"Char","rawLength":9,"formattedLength":0,"version":2},{"name":"GMTOFFSET","label":"Diff (hrs) between GMT and time zone for ZIP Code","index":14,"type":"Numeric","rawLength":8,"formattedLength":0,"version":2},{"name":"DST","label":"ZIP Code obeys Daylight Savings: Y-Yes N-No","index":15,"type":"Char","rawLength":1,"formattedLength":0,"version":2},{"name":"PONAME","label":"USPS Post Office Name: same as City","index":16,"type":"Char","rawLength":35,"formattedLength":0,"version":2},{"name":"ALIAS_CITY","label":"USPS - alternate names of city separated by ||","index":17,"type":"Char","rawLength":300,"formattedLength":0,"version":2},{"name":"ALIAS_CITYN","label":"Local - alternate names of city separated by ||","index":18,"type":"Char","rawLength":300,"formattedLength":0,"version":2},{"name":"CITY2","label":"Clean CITY name for geocoding","index":19,"type":"Char","rawLength":35,"formattedLength":0,"version":2},{"name":"STATENAME2","label":"Clean STATENAME for geocoding","index":20,"type":"Char","rawLength":25,"formattedLength":0,"version":2}]},"columnMappings":{}}},"id-1670613742827-48467":{"argumentType":"table","version":1,"value":{"table":{"name":"PERSONAL","version":1},"source":{"id":"WORK","name":"WORK","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":true,"hasEngines":false,"creationTimeStamp":"0001-01-01T00:00:00.000Z","modifiedTimeStamp":"0001-01-01T00:00:00.000Z","attributes":{"concatenationCount":0,"engineName":"V9","fileFormat":"7","flags":34848,"options":"","physicalName":"/opt/sas/viya/config/var/tmp/compsrv/default/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c/SAS_workA8690000010D_sas-compute-server-ae207f4e-d59a-4753-8068-8e89dde8abb2-zs7dt","readOnly":false,"version":2},"version":1,"links":[{"method":"GET","rel":"self","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"alternate","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source.summary"},{"method":"GET","rel":"up","href":"/dataSources/providers/Compute/sources","uri":"/dataSources/providers/Compute/sources","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"parent","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"tables","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"sessionScoped","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"}]}}},"id-1670613611645-40797":{"argumentType":"table","version":1,"value":{"table":{"name":"LOAN_CUSTOMERS_FINAL","version":1},"source":{"id":"WORK","name":"WORK","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":true,"hasEngines":false,"creationTimeStamp":"0001-01-01T00:00:00.000Z","modifiedTimeStamp":"0001-01-01T00:00:00.000Z","attributes":{"concatenationCount":0,"engineName":"V9","fileFormat":"7","flags":34848,"options":"","physicalName":"/opt/sas/viya/config/var/tmp/compsrv/default/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c/SAS_workA8690000010D_sas-compute-server-ae207f4e-d59a-4753-8068-8e89dde8abb2-zs7dt","readOnly":false,"version":2},"version":1,"links":[{"method":"GET","rel":"self","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"alternate","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source.summary"},{"method":"GET","rel":"up","href":"/dataSources/providers/Compute/sources","uri":"/dataSources/providers/Compute/sources","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"parent","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"tables","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"sessionScoped","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"}]}}},"id-1670613729251-48180":{"argumentType":"table","version":1,"value":{"table":{"name":"MORTGAGE","version":1},"source":{"id":"WORK","name":"WORK","providerId":"Compute","parentId":"871256d0-dcfc-49c6-bad2-2182ee908b4d","hasTables":true,"hasEngines":false,"creationTimeStamp":"0001-01-01T00:00:00.000Z","modifiedTimeStamp":"0001-01-01T00:00:00.000Z","attributes":{"concatenationCount":0,"engineName":"V9","fileFormat":"7","flags":34848,"options":"","physicalName":"/opt/sas/viya/config/var/tmp/compsrv/default/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c/SAS_workA8690000010D_sas-compute-server-ae207f4e-d59a-4753-8068-8e89dde8abb2-zs7dt","readOnly":false,"version":2},"version":1,"links":[{"method":"GET","rel":"self","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"alternate","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK","type":"application/vnd.sas.data.source.summary"},{"method":"GET","rel":"up","href":"/dataSources/providers/Compute/sources","uri":"/dataSources/providers/Compute/sources","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"parent","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d","type":"application/vnd.sas.data.source"},{"method":"GET","rel":"tables","href":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","uri":"/dataTables/dataSources/Compute~fs~871256d0-dcfc-49c6-bad2-2182ee908b4d~fs~WORK/tables","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.table"},{"method":"GET","rel":"sessionScoped","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/children?sessionId=a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.collection","itemType":"application/vnd.sas.data.source"},{"method":"GET","rel":"session","href":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","uri":"/dataSources/providers/Compute/sources/871256d0-dcfc-49c6-bad2-2182ee908b4d/sessions/a665dcb2-0eba-42e8-8c3f-23a62a7bca6c-ses0000","type":"application/vnd.sas.data.session"}]}}}}}}}},"parameters":{},"connections":[],"extendedProperties":{},"stickyNotes":[]}