Microsoft Purview · Schema

AttributeRule

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

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

JSON Schema

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