Skip to content

AIQu VEIL

AIQu VEIL encodes raw feature data into latent vectors transparently via column-level policies. Non-privileged users see encoded vectors. Raw data is never exposed.

Admin Analyst Raw Features Column Policy Raw values Encoder Latent Vector

Encoders are deterministic autoencoders trained on your data inside your environment. Training and inference happen in-account. No data leaves.

PlatformEnforcementCompute
SnowflakeMasking policiesSPCS containers
DatabricksColumn masks (Unity Catalog)Serverless / cluster UDF
AWSColumn-level access controlSageMaker endpoint
  1. An administrator trains an encoder on specified feature columns
  2. The encoder learns a compressed, non-invertible representation
  3. A column policy intercepts queries and replaces raw features with encoded vectors
  4. Privileged roles (e.g. account admin) bypass the policy and see raw data
  5. All other roles see latent vectors suitable for ML but not reversible to raw values

Non-invertible. The encoder discards the decoder after training. You cannot reconstruct exact input from the latent vector.

Non-invertible is not non-informative. If the latent vector is useful for ML, it contains task-relevant information. When sensitive attributes correlate with the task, partial information leaks. Defense in depth (role management, monitoring, access controls) is essential.

Deterministic. The same input always produces the same output. This preserves joins, aggregations, and downstream pipeline reproducibility.

Schema protection. Feature views hide column names behind a single features array. Queries reference features, not individual columns.

RoleAccess
app_userQuery views, call encode function
app_adminAll procedures: train, protect, start/stop, schedule, delete

app_admin inherits app_user.