Microsoft Graph · Schema

dlpActionInfo

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
action object The type of DLP action. Possible value is restrictAccessAction.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphdlpactioninfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.dlpActionInfo",
  "title": "dlpActionInfo",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "action": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.dlpAction"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The type of DLP action. Possible value is restrictAccessAction."
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "discriminator": {
    "propertyName": "@odata.type",
    "mapping": {
      "#microsoft.graph.restrictAccessActionBase": "#/components/schemas/microsoft.graph.restrictAccessActionBase",
      "#microsoft.graph.restrictAccessAction": "#/components/schemas/microsoft.graph.restrictAccessAction"
    }
  }
}