Microsoft Purview · Schema

Identity

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
principalId string
tenantId string
type string
userAssignedIdentities object
View JSON Schema on GitHub

JSON Schema

microsoft-purview-identity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Identity",
  "title": "Identity",
  "type": "object",
  "properties": {
    "principalId": {
      "type": "string",
      "readOnly": true
    },
    "tenantId": {
      "type": "string",
      "readOnly": true
    },
    "type": {
      "type": "string",
      "enum": [
        "None",
        "SystemAssigned",
        "UserAssigned"
      ]
    },
    "userAssignedIdentities": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "clientId": {
            "type": "string"
          },
          "principalId": {
            "type": "string"
          }
        }
      }
    }
  }
}