{ "$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" }