Registry schema reference

Your account's registry view exposes the following columns:

ColumnTypeDescription
idSTRINGUnique identifier of the registry entry
identifier_typeSTRINGWhat the hashed identifier was derived from — for example email, DROP_email, DROP_phone, DROP_NDZ, DROP_vin
identifier_hashSTRINGSHA-256 hash of the normalized identifier (see hashing convention below)
deletedBOOLDeletion requested or applied for this user
opt_out_saleBOOLOpted out of the sale of personal data
opt_out_targeted_adsBOOLOpted out of targeted advertising / cross-context sharing
opt_out_marketingBOOLOpted out of direct marketing
opt_out_automated_decisionsBOOLOpted out of automated decision-making and profiling
opt_out_ai_trainingBOOLOpted out of the use of their data for AI model training
limit_spiBOOLRequested to limit the use of sensitive personal information
extra_signalsJSONAdditional choice signals beyond the standard set
last_request_idSTRINGThe most recent request that touched this entry
last_sourceSTRINGChannel of the most recent update: dsr, drop, api, import, cmp, gpc, or manual
resolutionSTRINGProcessing outcome: DELETED, NOT_FOUND, OPT_OUT_APPLIED, PARTIALLY_DELETED, or SUPPRESSED
audit_noteSTRINGHuman-readable context for the entry, for audit and review
created_atTIMESTAMPWhen the entry was first created
updated_atTIMESTAMPWhen the entry was last updated

Hashing convention. Identifiers are hashed with SHA-256 after normalization — email addresses are lowercased and trimmed, phone numbers are formatted to E.164 — and stored as lowercase hex. To match registry entries against identifiers in your own systems, apply the same normalization and hashing on your side.

Resolution values. DELETED — the identifier was matched and the data erased. NOT_FOUND — no match existed at processing time; the entry is retained to match future data. OPT_OUT_APPLIED — opt-out choices were applied with no deletion involved. PARTIALLY_DELETED — deletion completed in some systems and is pending in others. SUPPRESSED — proactively added to prevent future collection or processing.