Microsoft Purview · Schema

DecisionRule

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
kind string
effect string
dnfCondition array
View JSON Schema on GitHub

JSON Schema

microsoft-purview-decisionrule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DecisionRule",
  "title": "DecisionRule",
  "type": "object",
  "properties": {
    "kind": {
      "type": "string",
      "enum": [
        "decisionrule"
      ]
    },
    "effect": {
      "type": "string",
      "enum": [
        "Permit",
        "Deny"
      ]
    },
    "dnfCondition": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "$ref": "#/components/schemas/AttributeMatcher"
        }
      }
    }
  }
}