dlp_CustomEntry

APIs.ioEngineeringPlatform

Properties

Name Type Description
created_at string
enabled boolean
id string
name string
pattern object
profile_id string
updated_at string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-dlp-customentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dlp_CustomEntry",
  "title": "dlp_CustomEntry",
  "properties": {
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "enabled": {
      "type": "boolean"
    },
    "id": {
      "format": "uuid",
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "pattern": {
      "$ref": "#/components/schemas/dlp_Pattern"
    },
    "profile_id": {
      "format": "uuid",
      "nullable": true,
      "type": "string"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "required": [
    "id",
    "name",
    "created_at",
    "updated_at",
    "pattern",
    "enabled"
  ],
  "type": "object"
}