Microsoft Purview · Schema

RuleResult

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
ruleId string
ruleName string
status string
score number
details string
View JSON Schema on GitHub

JSON Schema

microsoft-purview-ruleresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RuleResult",
  "title": "RuleResult",
  "type": "object",
  "properties": {
    "ruleId": {
      "type": "string"
    },
    "ruleName": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Passed",
        "Failed",
        "Error",
        "NotApplicable"
      ]
    },
    "score": {
      "type": "number",
      "format": "float"
    },
    "details": {
      "type": "string"
    }
  }
}