Microsoft Purview · Schema

DlpMatchedRule

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
ruleId string
ruleName string
policyId string
policyName string
severity string
actions array
View JSON Schema on GitHub

JSON Schema

microsoft-purview-dlpmatchedrule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DlpMatchedRule",
  "title": "DlpMatchedRule",
  "type": "object",
  "properties": {
    "ruleId": {
      "type": "string"
    },
    "ruleName": {
      "type": "string"
    },
    "policyId": {
      "type": "string"
    },
    "policyName": {
      "type": "string"
    },
    "severity": {
      "type": "string",
      "enum": [
        "low",
        "medium",
        "high"
      ]
    },
    "actions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DlpAction"
      }
    }
  }
}