Perform Verify Operation - Precisely Data Integrity Suite

Data Integrity Suite APIs

Product
Data_Integrity
Spatial_Analytics
Data_Enrichment
geo_addressing_1
Services
Spatial Analytics
Data Enrichment
Geo Addressing
ft:title
Data Integrity Suite APIs
ft:locale
en-US
PublicationType
pt_developer
copyrightfirst
2023
copyrightlast
2026

Below is an example showing use of Verify operation in Snowflake environment:
create or replace table all_data_result as 
                        select ID,addressline1,city,state,zip,  
                        object_construct( 
                        'addressId', iff(ID is not null, ID,'')
                        ,'addressLines', array_construct(iff(ADDRESSLINE1 is not null, ADDRESSLINE1,''))
                        ,'country',country
                        ,'city',iff(city is not null, city,'')
                        ,'admin1',iff(state  is not  null, state,'')
                        ,'postalCode',iff(zip  is not  null, zip,'')
                        ) as sentObject
                        , verify(sentObject) as address,country from all_data;