Microsoft Graph · Schema

chatMessagePolicyViolationPolicyTip

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
complianceUrl string The URL a user can visit to read about the data loss prevention policies for the organization. (ie, policies about what users shouldn't say in chats)
generalText string Explanatory text shown to the sender of the message.
matchedConditionDescriptions array The list of improper data in the message that was detected by the data loss prevention app. Each DLP app defines its own conditions, examples include 'Credit Card Number' and 'Social Security Number'.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphchatmessagepolicyviolationpolicytip-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip",
  "title": "chatMessagePolicyViolationPolicyTip",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "complianceUrl": {
      "type": "string",
      "description": "The URL a user can visit to read about the data loss prevention policies for the organization. (ie, policies about what users shouldn't say in chats)",
      "nullable": true
    },
    "generalText": {
      "type": "string",
      "description": "Explanatory text shown to the sender of the message.",
      "nullable": true
    },
    "matchedConditionDescriptions": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "The list of improper data in the message that was detected by the data loss prevention app. Each DLP app defines its own conditions, examples include 'Credit Card Number' and 'Social Security Number'."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}