Microsoft Graph · Schema

onPremisesAccidentalDeletionPrevention

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
alertThreshold number Threshold value which triggers accidental deletion prevention. The threshold is either an absolute number of objects or a percentage number of objects.
synchronizationPreventionType object The status of the accidental deletion prevention feature. The possible values are: disabled, enabledForCount, enabledForPercentage, unknownFutureValue.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphonpremisesaccidentaldeletionprevention-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.onPremisesAccidentalDeletionPrevention",
  "title": "onPremisesAccidentalDeletionPrevention",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "alertThreshold": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "Threshold value which triggers accidental deletion prevention. The threshold is either an absolute number of objects or a percentage number of objects.",
      "format": "int32",
      "nullable": true
    },
    "synchronizationPreventionType": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.onPremisesDirectorySynchronizationDeletionPreventionType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The status of the accidental deletion prevention feature. The possible values are: disabled, enabledForCount, enabledForPercentage, unknownFutureValue."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}