Skip to main content

Integration Overview

Javelin provides a flexible framework for managing sensitive data. Its configuration options cater to a wide range of data privacy needs, from simple inspections to more complex data transformation tasks.

Template Object

When represented as json, the template object has the following structure:

  {
"name": "name of the template",
"description": "Template for Inspecting PII data",
"type": "this could be `inspect`, `de-identify` etc.,",
"enabled": true,
"models": [
{
"name": "name of the model to use, like LlamaGuard",
"provider": "name of the provider - Google Sensitive Protection, Meta etc.",
"suffix": "",
"weight": 0
}
],
"config": {
"infoTypes": [{"name": "PASSWORD"}, {"name": "ENCRYPTION_KEY"}],
"likelihood": "Likely"
}
}

Template Fields

These configuration settings are all defined per template, they are not global and are applied individually on each route.

FieldDescription
nameThe name of the template as it will appear on the gateway, specifically designed for data-sensitive protection. This should be a unique and descriptive title that clearly indicates the template's purpose, scope, or specific data protection capabilities it provides. The name facilitates easy identification and selection of the template for administrators and users navigating the system.
descriptionContain a brief but comprehensive description of the template, including its intended use case, primary features, and any unique characteristics
typeSpecifies the operational purpose of the template within the gateway's data protection framework. The type can be either inspect, indicating the template is designed to identify and report sensitive information without altering the data, or de-identify, which means the template is configured to remove, mask, or replace sensitive information to protect privacy. This distinction helps in selecting the appropriate template based on the data handling requirements of a specific task or workflow.
enabledThis field indicates whether the template is currently enabled and should be considered active for use. It typically accepts a boolean value: true for enabled, indicating the template and its configurations are in use, or false for disabled, meaning the template is not in use and should be ignored by any processes or applications relying on these configurations.

Model

FieldDescription
nameSpecifies the name of the model to be utilized for a given task or operation. This name should uniquely identify the model within the system, facilitating easy selection and ensuring that the correct model is applied to the appropriate data processing scenario. The name aids in managing multiple models within the system, enabling users to quickly deploy, evaluate, or update models as needed based on their specific requirements or objectives.
providerNumber of provider, google, meta, huggingface etc.,
suffixCustomize model URL endpoint, useful for custom models on huggingface

Config

FieldDescription
infoTypesDefines the categories or types of sensitive information the system should identify and act upon. This could include personal identifiers (e.g., Social Security numbers, credit card numbers), health information, financial information, or any other data types considered sensitive within a particular context. Specifying infoTypes allows the system to target its scanning and protection mechanisms more effectively, ensuring that only relevant data is flagged for further action.
likelihoodSpecifies the confidence threshold or probability that identified information matches the defined infoTypes. This setting helps in tuning the sensitivity of the detection process, allowing for a balance between identifying true positives and minimizing false positives. Likelihood values might range from very low to very high, indicating the system's level of certainty required to flag data as sensitive. Adjusting this parameter can help organizations tailor the system's behavior to their risk tolerance and regulatory requirements, ensuring that data protection efforts are both effective and efficient.