{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/dlp_CustomProfileUpdate", "title": "dlp_CustomProfileUpdate", "properties": { "allowed_match_count": { "format": "int32", "nullable": true, "type": "integer" }, "context_awareness": { "$ref": "#/components/schemas/dlp_ContextAwareness" }, "description": { "description": "The description of the profile", "nullable": true, "type": "string" }, "entries": { "description": "Custom entries from this profile", "items": { "$ref": "#/components/schemas/dlp_EntryUpdate" }, "type": "array" }, "name": { "type": "string" }, "ocr_enabled": { "type": "boolean" }, "shared_entries": { "description": "Other entries, e.g. predefined or integration.", "items": { "$ref": "#/components/schemas/dlp_SharedEntryUpdate" }, "type": "array" } }, "required": [ "name", "entries" ], "type": "object" }