dlp_RiskEvents

APIs.ioEngineeringPlatform

Properties

Name Type Description
email string
events array
last_reset_time string
name string
risk_level object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-dlp-riskevents-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dlp_RiskEvents",
  "title": "dlp_RiskEvents",
  "properties": {
    "email": {
      "type": "string"
    },
    "events": {
      "items": {
        "$ref": "#/components/schemas/dlp_RiskEvent"
      },
      "type": "array"
    },
    "last_reset_time": {
      "format": "date-time",
      "nullable": true,
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "risk_level": {
      "allOf": [
        {
          "$ref": "#/components/schemas/dlp_RiskLevel"
        }
      ]
    }
  },
  "required": [
    "name",
    "email",
    "events"
  ],
  "type": "object"
}