Microsoft Purview · Schema

EdiscoveryHoldPolicy

A legal hold policy

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
id string
displayName string
description string
isEnabled boolean
status string
contentQuery string
createdDateTime string
lastModifiedDateTime string
createdBy object
View JSON Schema on GitHub

JSON Schema

microsoft-purview-ediscoveryholdpolicy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EdiscoveryHoldPolicy",
  "title": "EdiscoveryHoldPolicy",
  "type": "object",
  "description": "A legal hold policy",
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true
    },
    "displayName": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "isEnabled": {
      "type": "boolean"
    },
    "status": {
      "type": "string",
      "enum": [
        "pending",
        "error",
        "success",
        "unknownFutureValue"
      ],
      "readOnly": true
    },
    "contentQuery": {
      "type": "string"
    },
    "createdDateTime": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "lastModifiedDateTime": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "createdBy": {
      "$ref": "#/components/schemas/IdentitySet"
    }
  }
}