Microsoft Purview · Schema

EdiscoveryCustodian

A custodian in an eDiscovery case

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
id string
displayName string
email string
status string
createdDateTime string
lastModifiedDateTime string
holdStatus string
acknowledgedDateTime string
View JSON Schema on GitHub

JSON Schema

microsoft-purview-ediscoverycustodian-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EdiscoveryCustodian",
  "title": "EdiscoveryCustodian",
  "type": "object",
  "description": "A custodian in an eDiscovery case",
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true
    },
    "displayName": {
      "type": "string",
      "readOnly": true
    },
    "email": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "released"
      ]
    },
    "createdDateTime": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "lastModifiedDateTime": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "holdStatus": {
      "type": "string",
      "enum": [
        "notApplied",
        "applied",
        "applying",
        "removing",
        "partial"
      ]
    },
    "acknowledgedDateTime": {
      "type": "string",
      "format": "date-time"
    }
  }
}