Properties
| Name | Type | Description |
|---|---|---|
| allowed_match_count | integer | |
| context_awareness | object | |
| entries | array | |
| id | string | The id of the predefined profile (uuid) |
| name | string | The name of the predefined profile |
| ocr_enabled | boolean | |
| open_access | boolean | Whether this profile can be accessed by anyone |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/dlp_PredefinedProfile",
"title": "dlp_PredefinedProfile",
"properties": {
"allowed_match_count": {
"format": "int32",
"type": "integer"
},
"context_awareness": {
"$ref": "#/components/schemas/dlp_ContextAwareness"
},
"entries": {
"items": {
"$ref": "#/components/schemas/dlp_Entry"
},
"type": "array"
},
"id": {
"description": "The id of the predefined profile (uuid)",
"format": "uuid",
"type": "string"
},
"name": {
"description": "The name of the predefined profile",
"type": "string"
},
"ocr_enabled": {
"type": "boolean"
},
"open_access": {
"description": "Whether this profile can be accessed by anyone",
"type": "boolean"
}
},
"required": [
"id",
"name",
"entries",
"allowed_match_count"
],
"type": "object"
}