Hi Cate Reilly,
Hope the below information will you.
In Azure Purview eDiscovery, RefinableString
properties are crawled properties that can be used in search queries and filters to refine the search results. They represent metadata or custom properties that have been explicitly configured as refinable strings and are mapped to a corresponding managed property in the SharePoint search schema.
Refinable strings
Refinable strings are a specific type of managed property that allows you to create faceted navigation or advanced filters within your search experience.
In eDiscovery, RefinableString properties help filter and refine search results based on their assigned values. This allows you to narrow the scope of a search and focus on locating specific content more efficiently.
According to Microsoft's official documentation on event-driven retention:
This includes Content search, Microsoft Purview eDiscovery (Standard), and Microsoft Purview eDiscovery (Premium) (eDiscovery searches in eDiscovery (Premium) are called collections). You can also use the *-ComplianceSearch cmdlets in Security & Compliance PowerShell to search for these properties.
When creating an event-based retention policy in Microsoft Purview, you can specify keywords or asset IDs to target the content the event applies to. The Asset ID used must be a managed property, such as ComplianceAssetId, and it must have the appropriate value assigned.
The following types of properties are explicitly or implicitly supported for use in event-driven retention:
- ComplianceAssetId — Explicitly supported and widely used.
- RefinableStringXX — Supported if configured properly as refinable managed properties.
- Other Managed Properties — Custom or automatically generated managed properties (e.g.,
EventStartDateOWSTDATE
, EventCSIOWSCHCS
) are supported, provided they are mapped in the SharePoint Online search schema.
- System Properties (e.g., Created) — Usable only if they are promoted to managed properties, which they typically are by default.
Important: For auto-labeling and event triggers to work, the property containing the identifier must be a managed property in the SharePoint Online search schema
Syntax for Property:Value Queries
As documented in Event-driven retention in Microsoft Purview, use the following format for queries:
Format:
ManagedProperty:"value"
- String values must be enclosed in quotes.
- Dates must use YYYY-MM-DD (ISO 8601) format.
- Boolean operators (
AND
, OR
) are supported.
- Case sensitivity: Yes — Managed property names are case-sensitive.
Examples of Valid Syntax
`ComplianceAssetId:"ProjectABC"
RefinableString00:"ContractXYZ"
Created>=2024-01-01 AND Created<=2024-12-31
EventStartDateOWSTDATE<2022-01-01
ComplianceAssetId:"asset 123" AND RefinableString00:"string value"`
You can combine queries using AND, OR, and NOT, following Keyword Query Language (KQL), which is the basis for these searches.
Further References