-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsemantic-type.json
45 lines (45 loc) · 1.18 KB
/
semantic-type.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "bb.workspace.semantic-types",
"value": {
"semanticTypeSettingValue": {
"types": [
{
"id": "bb.default",
"title": "Default",
"description": "Default semantic type for full masking"
},
{
"id": "bb.default-partial",
"title": "Default Partial",
"description": "Default semantic for partial masking"
},
{
"id": "e8d3fd41-eba0-4afd-ae0f-32c91a4ee710",
"title": "Personal sensitive data",
"description": "Custom semantic type with full masking for personal sensitive data",
"algorithm": {
"fullMask": {
"substitution": "***"
}
}
},
{
"id": "38b31ac4-b90d-44ac-b42a-19d9c76c83ea",
"title": "Location",
"description": "Custom semantic type with range masking for location",
"algorithm": {
"rangeMask": {
"slices": [
{
"start": 0,
"end": 4,
"substitution": "*"
}
]
}
}
}
]
}
}
}