Is there a way to implement Data Loss Prevention scan for Chat?Description<!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Description This document explains how to implement Data Loss Prevention scan for Chat to protect sensitive user information like SSN, Credit Card numbers etc. Procedure The closest solution ServiceNow can suggest is Edge encryption plugin that ServiceNow provides. All the chat messages are stored in Additional Comments or Worknotes fields in chat_queue_entry table. So if the user enables pattern base edge encryption on these fields, they might be able to achieve the results. Once an encryption pattern is stored and activated, the Edge Encryption proxy server identifies strings that match the pattern in requests. Once located, the clear text string is stored in the customer's proxy database and replaced on the instance with a token. Use encryption patterns to tokenize strings that match regular patterns such as social security and credit card numbers. While we recommend that encryption configurations be the primary method of encryption, use encryption patterns as a supplement to locate and secure sensitive information found outside of encrypted fields. Please refer ServiceNow docs for more information on edge encryption. https://docs.servicenow.com/csh?topicname=c_EdgeEncryptionOverview.html&version=latest https://docs.servicenow.com/csh?topicname=c_EncryptionTypes.html&version=latest Applicable Versions All the available versions Additional Information Since this is a customization, ServiceNow Support will not be able to help the customer with implementing the same as ServiceNow does not offer support for implementations.