Microsoft Purview · Schema

AttributeMatcher

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
attributeName string
attributeValueIncludes string
attributeValueIncludedIn array
attributeValueExcludes string
attributeValueExcludedIn array
View JSON Schema on GitHub

JSON Schema

microsoft-purview-attributematcher-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttributeMatcher",
  "title": "AttributeMatcher",
  "type": "object",
  "properties": {
    "attributeName": {
      "type": "string"
    },
    "attributeValueIncludes": {
      "type": "string"
    },
    "attributeValueIncludedIn": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "attributeValueExcludes": {
      "type": "string"
    },
    "attributeValueExcludedIn": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}