dlp_CustomProfileUpdate

APIs.ioEngineeringPlatform

Properties

Name Type Description
allowed_match_count integer
context_awareness object
description string The description of the profile
entries array Custom entries from this profile
name string
ocr_enabled boolean
shared_entries array Other entries, e.g. predefined or integration.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-dlp-customprofileupdate-schema.json Raw ↑
{
  "$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"
}