AI-generated Key Takeaways
-
Offline data address identifiers include hashed first and last names, city, state, country code, postal code, and hashed street address.
-
hashed_first_name
andhashed_last_name
are SHA-256 hashed strings after normalization. -
city
andstate
are accepted only for Store Sales and ConversionAdjustmentUploadService. -
country_code
is a 2-letter ISO-3166-1 alpha-2 code. -
hashed_street_address
is a SHA-256 hashed string after normalization and is only accepted for ConversionAdjustmentUploadService.
Address identifier of offline data.
Fields | |
---|---|
|
First name of the user, which is hashed as SHA-256 after normalized (Lowercase all characters; Remove any extra spaces before, after, and in between). |
|
Last name of the user, which is hashed as SHA-256 after normalized (lower case only and no punctuation). |
|
City of the address. Only accepted for Store Sales and ConversionAdjustmentUploadService. |
|
State code of the address. Only accepted for Store Sales and ConversionAdjustmentUploadService. |
|
2-letter country code in ISO-3166-1 alpha-2 of the user's address. |
|
Postal code of the user's address. |
|
The street address of the user hashed using SHA-256 hash function after normalization (lower case only). Only accepted for ConversionAdjustmentUploadService. |