Microsoft Purview · Schema

ProfilingResult

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
assetId string
status string
profiledAt string
rowCount integer
columnProfiles array
View JSON Schema on GitHub

JSON Schema

microsoft-purview-profilingresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProfilingResult",
  "title": "ProfilingResult",
  "type": "object",
  "properties": {
    "assetId": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "InProgress",
        "Completed",
        "Failed"
      ]
    },
    "profiledAt": {
      "type": "string",
      "format": "date-time"
    },
    "rowCount": {
      "type": "integer",
      "format": "int64"
    },
    "columnProfiles": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ColumnProfile"
      }
    }
  }
}