Error Returned Trying to Download New Document Versions From Unified Compliance Integration.Issue Having a UCF integration and trying to update the latest controls from UCF returns the following error on UI screen: "The selected Shared List does not match the existing Authority Document list. Select a different Shared List or update the existing Shared List." CauseOne possible cause for this issue, other than the specified in ServiceNow documentation, is having set system property 'glide.attachment.extensions' and not including the extension .json in the list. The 'UCFDownloaderBase' Script Includes is trying to save the contents downloaded from UCF as an attachment before processing. This document's extension is .json (*). If the extension is not in the list of allowed attachment extensions, the document will fail to be attached. (*) Starting from GRC:Compliance UCF - v11.0.0 (Paris Q4).Resolution1. List all system properties ( sys_properties table). 2. Find property named: 'glide.attachment.extensions' 3. In the property value, add to the list the file extension 'json': For example: xls,xlsx,doc,docx,pdf,ppt,pptxadd json: xls,xlsx,doc,docx,pdf,ppt,pptx,json 4. Save the property. This will allows the download if the cause was the missing extension.