List Built-In Identifiers
Note
In previous documentation, identifier is referred to as classifier. The language is being updated to identifier to be more accurate and not conflate meaning with the Immuta data classification and frameworks feature.
Attributes
Attributes of identifiers and templates are provided on the Sensitive data discovery API page. However, attributes specific to listing identifiers are outlined in the table below.
Attribute | Description |
---|---|
sortField | string The field by which to sort the search results: id , name , displayName , type , createdAt , or updatedAt . |
sortOrder | string Denotes whether to sort the results in ascending (asc ) or descending (desc ) order. Default is asc . |
offSet | integer Use in combination with limit to fetch pages. |
limit | integer Limits the number of results displayed per page. |
type | array[string] Searches for identifiers based on identifier type: builtIn . |
searchText | string A partial, case-insensitive search on name. |
Response details
The response lists all built-in identifiers that are currently supported in Immuta SDD and their details, including their name and description. For example,
{
"count": 67,
"hits": [
{
"createdBy": {
"id": 21,
"name": "Immuta System Account",
"email": "immuta_system@immuta.com"
},
"name": "AGE",
"displayName": "Age",
"description": "Detects numeric strings between 10 and 199, provided the column header contains text such as `age`, `year`, `years`, `yr`, or `yrs`.",
"type": "builtIn",
"config": {
"minConfidence": 0.7,
"tags": [
"Discovered.PII",
"Discovered.Identifier Indirect",
"Discovered.PHI",
"Discovered.Entity.Age"
],
"conditionalTags": {}
},
"id": 3,
"createdAt": "2021-10-28T07:34:58.761Z",
"updatedAt": "2021-10-28T07:34:58.761Z"
}
]
}
List built-in identifiers
-
Generate your API key on the API Keys tab on your profile page and save the API key somewhere secure. You will include this API key in the authorization header when you make a request to the Immuta API or use it to configure your instance with the Immuta CLI.
-
List built-in identifiers using one of these methods:
Immuta CLI
immuta api sdd/classifier?sortField=name&sortOrder=asc&limit=100&type=builtIn
HTTP API
curl \ --request GET \ --header "Content-Type: application/json" \ --header "Authorization: 12345678900000" \ https://your-immuta-url.immuta.com/sdd/classifier?sortField=name&sortOrder=asc&limit=100&type=builtIn
If the request was successful, you will receive a list of built-in identifiers.
What's next
- Run sensitive data discovery on data sources: Trigger SDD to run on specified data sources.
- Create a template: Although only data governors can create identifiers, data owners can
add identifiers to templates, which they then apply to their data sources to override
minConfidence
or tags for identifiers within the template. - Create a custom identifier: Data governors can create custom identifiers to define their own regular expressions, dictionaries, and tags that SDD will use to discover and tag data.